diff --git a/README.md b/README.md
index ff000371..2eba9d91 100644
--- a/README.md
+++ b/README.md
@@ -1,54 +1,97 @@
-## Teste para Desenvolvedor PHP/Laravel
-
-Bem-vindo ao teste de desenvolvimento para a posição de Desenvolvedor PHP/Laravel.
-
-O objetivo deste teste é desenvolver uma API Rest para o cadastro de fornecedores, permitindo a busca por CNPJ ou CPF, utilizando Laravel no backend.
-
-## Descrição do Projeto
-
-### Backend (API Laravel):
-
-#### CRUD de Fornecedores:
-- **Criar Fornecedor:**
- - Permita o cadastro de fornecedores usando CNPJ ou CPF, incluindo informações como nome/nome da empresa, contato, endereço, etc.
- - Valide a integridade e o formato dos dados, como o formato correto de CNPJ/CPF e a obrigatoriedade de campos.
-
-- **Editar Fornecedor:**
- - Facilite a atualização das informações de fornecedores, mantendo a validação dos dados.
-
-- **Excluir Fornecedor:**
- - Possibilite a remoção segura de fornecedores.
-
-- **Listar Fornecedores:**
- - Apresente uma lista paginada de fornecedores, com filtragem e ordenação.
-
-#### Migrations:
-- Utilize migrations do Laravel para definir a estrutura do banco de dados, garantindo uma boa organização e facilidade de manutenção.
-
-## Requisitos
-
-### Backend:
-- Implementar busca por CNPJ na [BrasilAPI](https://brasilapi.com.br/docs#tag/CNPJ/paths/~1cnpj~1v1~1{cnpj}/get) ou qualquer outro endpoint público.
-
-## Tecnologias a serem utilizadas
-- Framework Laravel (PHP) 9.x ou superior
-- MySQL ou Postgres
-
-## Critérios de Avaliação
-- Adesão aos requisitos funcionais e técnicos.
-- Qualidade do código, incluindo organização, padrões de desenvolvimento e segurança.
-- Documentação do projeto, incluindo um README detalhado com instruções de instalação e operação.
-
-## Bônus
-- Implementação de Repository Pattern.
-- Implementação de testes automatizados.
-- Dockerização do ambiente de desenvolvimento.
-- Implementação de cache para otimizar o desempenho.
-
-## Entrega
-- Para iniciar o teste, faça um fork deste repositório; Se você apenas clonar o repositório não vai conseguir fazer push.
-- Crie uma branch com o nome que desejar;
-- Altere o arquivo README.md com as informações necessárias para executar o seu teste (comandos, migrations, seeds, etc);
-- Depois de finalizado, envie-nos o pull request;
-
-
+### Teste Revenda Mais
+
+API Restful desenvolvida em Laravel 12 para gerenciamento de fornecedores.
+
+#### Tecnologias utilizadas.
+
+- Docker
+- caddy(web server)
+- PHP 8.4
+- PostgreSQL
+- Redis
+
+### Como rodar o projeto:
+
+Para rodar o projeto pode-se usar 2 metodos:
+1. rodar o comando `docker compose up -d --build`
+2. ou o `./run.sh` que além de rodar o docker compose irá executar o compose install e as migrations.
+
+Caso tenha optado pelo 1 os demais comandos serão necessários para continuar a execução:
+
+- Instala as dependencias: `docker exec -it app_php sh -c "composer install --working-dir=/var/www/revendamais"`
+- Copia o .env a partir do exemplo: `docker exec -it app_php sh -c "cp revendamais/.env.example revendamais/.env"`
+- Gera a app key: `docker exec -it app_php sh -c "php revendamais/artisan key:generate"`
+- Executa os migrations: `docker exec -it app_php sh -c "php revendamais/artisan migrate:fresh --seed"`
+
+
+Para ambos os casos para a execução dos testes os seguintes comandos terão que ser executados:
+
+- Gerar a key do env de testes: `docker exec -it app_php sh -c "php revendamais/artisan key:generate --env=testing"`
+- Executar os testes: `docker exec -it app_php sh -c "cd revendamais; php artisan test"`
+
+
+## Endpoints
+
+Há um arquivo chamado [httpie-collection-revendamais.json](httpie-collection-revendamais.json) na raiz do projeto que pode ser importado usando o HTTPie ou o arquivo [Revendamais.postman_collection.json](Revendamais.postman_collection.json) para o Postman que pode ser utilizado com as requests prontas para uso ou pode-se usar também os métodos abaixo.
+
+Listagem de fornecedores:
+
+Os parametros abaixo são opcionais e oferecem paginação e filtros para a listagem:
+- `order` (asc ou desc)
+- `order_by` (name ou email)
+- `per_page` (numero inteiro)
+- `page` (numero inteiro)
+
+GET /api/suppliers
+```
+curl -k --request GET --url 'https://revendamais.localhost/api/suppliers?order=asc&order_by=name&per_page=5&page=1'
+```
+
+Criação de Fornecedor:
+
+O corpo da request segue o exemplo abaixo e é compartilhado com a atualização de um fornecedor:
+
+```
+ -d "name=Fornecedor Teste" \ # Nome do fornecedor
+ -d "type=CNPJ" \ # Tipo de documento (CPF ou CNPJ)
+ -d "document=12345678000199" \ # Número do documento
+ -d "email=teste@fornecedor.com" \ # Email
+ -d "phone=11999999999" \ # Telefone
+ -d "street=Rua Exemplo 123" \ # Dados de endereço
+ -d "post_code=01001000" \ # CEP
+ -d "city=São Paulo" \ # Cidade
+ -d "country=BR" \ # País
+ -d "state=SP" # Estado
+```
+
+POST /api/suppliers
+```
+curl -k --request POST --url https://revendamais.localhost/api/suppliers -H "Content-Type: application/x-www-form-urlencoded" -d "name=Fornecedor 1" -d "type=CNPJ" -d "document=41724783000133" -d "email=fornecedor@teste.com" -d "phone=99999999999" -d "street=Rua TesteA Lote 5" -d "post_code=69099480" -d "city=Maringá" -d "country=BR" -d "state=Paraná"
+```
+
+Listagem Idividual de Fornecedor:
+GET /api/suppliers/{id}
+```
+curl -k --request GET \
+ --url https://revendamais.localhost/api/suppliers/1
+```
+
+Update:
+PATCH /api/suppliers/{id}
+```
+curl -k --request PATCH --url https://revendamais.localhost/api/suppliers/1 -H "Content-Type: application/x-www-form-urlencoded" -d "name=Fornecedor 2" -d "type=CNPJ" -d "document=41724783000133" -d "email=fornecedor@teste.com" -d "phone=99999999999" -d "street=Rua TesteA Lote 5" -d "post_code=69099480" -d "city=Maringá" -d "country=BR" -d "state=Paraná"
+```
+
+Delete:
+DELETE /api/suppliers/{id}
+```
+curl -k --request DELETE \
+ --url https://revendamais.localhost/api/suppliers/1
+```
+
+Busca de CNPJ:
+GET /api/externalsearch/{cnpj}
+```
+curl -k --request GET \
+ --url https://revendamais.localhost/api/externalsearch/41724783000133
+```
\ No newline at end of file
diff --git a/Revendamais.postman_collection.json b/Revendamais.postman_collection.json
new file mode 100644
index 00000000..641a5951
--- /dev/null
+++ b/Revendamais.postman_collection.json
@@ -0,0 +1,282 @@
+{
+ "info": {
+ "_postman_id": "bad8d930-e7cc-4dce-a43f-d1d8727cb71a",
+ "name": "Revendamais",
+ "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
+ "_exporter_id": "5414316"
+ },
+ "item": [
+ {
+ "name": "Listagem",
+ "request": {
+ "auth": {
+ "type": "noauth"
+ },
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://revendamais.localhost/api/suppliers?order=asc&order_by=name&per_page=5&page=1",
+ "protocol": "https",
+ "host": [
+ "revendamais",
+ "localhost"
+ ],
+ "path": [
+ "api",
+ "suppliers"
+ ],
+ "query": [
+ {
+ "key": "order",
+ "value": "asc"
+ },
+ {
+ "key": "order_by",
+ "value": "name"
+ },
+ {
+ "key": "per_page",
+ "value": "5"
+ },
+ {
+ "key": "page",
+ "value": "1"
+ }
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "Create",
+ "request": {
+ "auth": {
+ "type": "noauth"
+ },
+ "method": "POST",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "name",
+ "value": "FFPL2",
+ "description": "\n",
+ "type": "text"
+ },
+ {
+ "key": "type",
+ "value": "CPF",
+ "type": "text"
+ },
+ {
+ "key": "document",
+ "value": "96082186249",
+ "type": "text"
+ },
+ {
+ "key": "email",
+ "value": "mail.ffpl@gmail.com",
+ "type": "text"
+ },
+ {
+ "key": "phone",
+ "value": "92984046888",
+ "type": "text"
+ },
+ {
+ "key": "street",
+ "value": "Rua D, 5",
+ "type": "text"
+ },
+ {
+ "key": "post_code",
+ "value": "69094750",
+ "type": "text"
+ },
+ {
+ "key": "city",
+ "value": "Manaus",
+ "type": "text"
+ },
+ {
+ "key": "country",
+ "value": "BR",
+ "type": "text"
+ },
+ {
+ "key": "state",
+ "value": "Amazonas",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://revendamais.localhost/api/suppliers",
+ "protocol": "https",
+ "host": [
+ "revendamais",
+ "localhost"
+ ],
+ "path": [
+ "api",
+ "suppliers"
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "Update",
+ "request": {
+ "auth": {
+ "type": "noauth"
+ },
+ "method": "PATCH",
+ "header": [],
+ "body": {
+ "mode": "urlencoded",
+ "urlencoded": [
+ {
+ "key": "name",
+ "value": "FFPL2",
+ "description": "\n",
+ "type": "text"
+ },
+ {
+ "key": "type",
+ "value": "CPF",
+ "type": "text"
+ },
+ {
+ "key": "document",
+ "value": "96082186249",
+ "type": "text"
+ },
+ {
+ "key": "email",
+ "value": "mail.ffpl@gmail.com",
+ "type": "text"
+ },
+ {
+ "key": "phone",
+ "value": "92984046888",
+ "type": "text"
+ },
+ {
+ "key": "street",
+ "value": "Rua D, 5",
+ "type": "text"
+ },
+ {
+ "key": "post_code",
+ "value": "69094750",
+ "type": "text"
+ },
+ {
+ "key": "city",
+ "value": "Manaus",
+ "type": "text"
+ },
+ {
+ "key": "country",
+ "value": "BR",
+ "type": "text"
+ },
+ {
+ "key": "state",
+ "value": "Amazonas",
+ "type": "text"
+ }
+ ]
+ },
+ "url": {
+ "raw": "https://revendamais.localhost/api/suppliers/3",
+ "protocol": "https",
+ "host": [
+ "revendamais",
+ "localhost"
+ ],
+ "path": [
+ "api",
+ "suppliers",
+ "3"
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "GET fornecedor",
+ "request": {
+ "auth": {
+ "type": "noauth"
+ },
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://revendamais.localhost/api/suppliers/3",
+ "protocol": "https",
+ "host": [
+ "revendamais",
+ "localhost"
+ ],
+ "path": [
+ "api",
+ "suppliers",
+ "3"
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "Delete",
+ "request": {
+ "auth": {
+ "type": "noauth"
+ },
+ "method": "DELETE",
+ "header": [],
+ "url": {
+ "raw": "https://revendamais.localhost/api/suppliers/3",
+ "protocol": "https",
+ "host": [
+ "revendamais",
+ "localhost"
+ ],
+ "path": [
+ "api",
+ "suppliers",
+ "3"
+ ]
+ }
+ },
+ "response": []
+ },
+ {
+ "name": "Busca CNPJ",
+ "request": {
+ "auth": {
+ "type": "noauth"
+ },
+ "method": "GET",
+ "header": [],
+ "url": {
+ "raw": "https://revendamais.localhost/api/externalsearch/41724783000133",
+ "protocol": "https",
+ "host": [
+ "revendamais",
+ "localhost"
+ ],
+ "path": [
+ "api",
+ "externalsearch",
+ "41724783000133"
+ ]
+ }
+ },
+ "response": []
+ }
+ ]
+}
\ No newline at end of file
diff --git a/app/.config/psysh/psysh_history b/app/.config/psysh/psysh_history
new file mode 100644
index 00000000..e1f52c8a
--- /dev/null
+++ b/app/.config/psysh/psysh_history
@@ -0,0 +1,4 @@
+?
+dump
+dump $supplier
+exit
diff --git a/app/.gitignore b/app/.gitignore
new file mode 100644
index 00000000..25052792
--- /dev/null
+++ b/app/.gitignore
@@ -0,0 +1,7 @@
+.cache
+.vscode-server
+html
+.gitconfig
+.composer
+.psql_history
+.bash_history
\ No newline at end of file
diff --git a/app/revendamais/.editorconfig b/app/revendamais/.editorconfig
new file mode 100644
index 00000000..8f0de65c
--- /dev/null
+++ b/app/revendamais/.editorconfig
@@ -0,0 +1,18 @@
+root = true
+
+[*]
+charset = utf-8
+end_of_line = lf
+indent_size = 4
+indent_style = space
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[*.md]
+trim_trailing_whitespace = false
+
+[*.{yml,yaml}]
+indent_size = 2
+
+[docker-compose.yml]
+indent_size = 4
diff --git a/app/revendamais/.env.example b/app/revendamais/.env.example
new file mode 100644
index 00000000..98b16ffd
--- /dev/null
+++ b/app/revendamais/.env.example
@@ -0,0 +1,65 @@
+APP_NAME=RevendaMais
+APP_ENV=local
+APP_KEY=
+APP_DEBUG=true
+APP_URL=https://revendamais.localhost
+
+APP_LOCALE=en
+APP_FALLBACK_LOCALE=en
+APP_FAKER_LOCALE=pt_BR
+
+APP_MAINTENANCE_DRIVER=file
+# APP_MAINTENANCE_STORE=database
+
+PHP_CLI_SERVER_WORKERS=4
+
+BCRYPT_ROUNDS=12
+
+LOG_CHANNEL=stack
+LOG_STACK=single
+LOG_DEPRECATIONS_CHANNEL=null
+LOG_LEVEL=debug
+
+DB_CONNECTION=pgsql
+DB_HOST=db
+DB_PORT=5432
+DB_DATABASE=app
+DB_USERNAME=postgres
+DB_PASSWORD=secret
+
+SESSION_DRIVER=database
+SESSION_LIFETIME=120
+SESSION_ENCRYPT=false
+SESSION_PATH=/
+SESSION_DOMAIN=null
+
+BROADCAST_CONNECTION=log
+FILESYSTEM_DISK=local
+QUEUE_CONNECTION=database
+
+CACHE_STORE=database
+# CACHE_PREFIX=
+
+MEMCACHED_HOST=127.0.0.1
+
+REDIS_CLIENT=predis
+REDIS_HOST=redis
+REDIS_PASSWORD=null
+REDIS_PORT=6379
+
+MAIL_MAILER=log
+MAIL_SCHEME=null
+MAIL_HOST=127.0.0.1
+MAIL_PORT=2525
+MAIL_USERNAME=null
+MAIL_PASSWORD=null
+MAIL_FROM_ADDRESS="hello@example.com"
+MAIL_FROM_NAME="${APP_NAME}"
+
+AWS_ACCESS_KEY_ID=
+AWS_SECRET_ACCESS_KEY=
+AWS_DEFAULT_REGION=us-east-1
+AWS_BUCKET=
+AWS_USE_PATH_STYLE_ENDPOINT=false
+
+VITE_APP_NAME="${APP_NAME}"
diff --git a/app/revendamais/.env.testing b/app/revendamais/.env.testing
new file mode 100644
index 00000000..6e8159b3
--- /dev/null
+++ b/app/revendamais/.env.testing
@@ -0,0 +1,65 @@
+APP_NAME=RevendaMais
+APP_ENV=testing
+APP_KEY=base64:dCy0J+VK1Kqrpw+w5MXFg4k06VUPq+BhgPwppMRtmwA=
+APP_DEBUG=true
+APP_URL=https://revendamais.localhost
+
+APP_LOCALE=en
+APP_FALLBACK_LOCALE=en
+APP_FAKER_LOCALE=pt_BR
+
+APP_MAINTENANCE_DRIVER=file
+# APP_MAINTENANCE_STORE=database
+
+PHP_CLI_SERVER_WORKERS=4
+
+BCRYPT_ROUNDS=12
+
+LOG_CHANNEL=stack
+LOG_STACK=single
+LOG_DEPRECATIONS_CHANNEL=null
+LOG_LEVEL=debug
+
+DB_CONNECTION=pgsql
+DB_HOST=db
+DB_PORT=5432
+DB_DATABASE=app
+DB_USERNAME=postgres
+DB_PASSWORD=secret
+
+SESSION_DRIVER=database
+SESSION_LIFETIME=120
+SESSION_ENCRYPT=false
+SESSION_PATH=/
+SESSION_DOMAIN=null
+
+BROADCAST_CONNECTION=log
+FILESYSTEM_DISK=local
+QUEUE_CONNECTION=database
+
+CACHE_STORE=database
+# CACHE_PREFIX=
+
+MEMCACHED_HOST=127.0.0.1
+
+REDIS_CLIENT=predis
+REDIS_HOST=redis
+REDIS_PASSWORD=null
+REDIS_PORT=6379
+
+MAIL_MAILER=log
+MAIL_SCHEME=null
+MAIL_HOST=127.0.0.1
+MAIL_PORT=2525
+MAIL_USERNAME=null
+MAIL_PASSWORD=null
+MAIL_FROM_ADDRESS="hello@example.com"
+MAIL_FROM_NAME="${APP_NAME}"
+
+AWS_ACCESS_KEY_ID=
+AWS_SECRET_ACCESS_KEY=
+AWS_DEFAULT_REGION=us-east-1
+AWS_BUCKET=
+AWS_USE_PATH_STYLE_ENDPOINT=false
+
+VITE_APP_NAME="${APP_NAME}"
diff --git a/app/revendamais/.gitattributes b/app/revendamais/.gitattributes
new file mode 100644
index 00000000..fcb21d39
--- /dev/null
+++ b/app/revendamais/.gitattributes
@@ -0,0 +1,11 @@
+* text=auto eol=lf
+
+*.blade.php diff=html
+*.css diff=css
+*.html diff=html
+*.md diff=markdown
+*.php diff=php
+
+/.github export-ignore
+CHANGELOG.md export-ignore
+.styleci.yml export-ignore
diff --git a/app/revendamais/.gitignore b/app/revendamais/.gitignore
new file mode 100644
index 00000000..b71b1ea3
--- /dev/null
+++ b/app/revendamais/.gitignore
@@ -0,0 +1,24 @@
+*.log
+.DS_Store
+.env
+.env.backup
+.env.production
+.phpactor.json
+.phpunit.result.cache
+/.fleet
+/.idea
+/.nova
+/.phpunit.cache
+/.vscode
+/.zed
+/auth.json
+/node_modules
+/public/build
+/public/hot
+/public/storage
+/storage/*.key
+/storage/pail
+/vendor
+Homestead.json
+Homestead.yaml
+Thumbs.db
diff --git a/app/revendamais/.php-cs-fixer.cache b/app/revendamais/.php-cs-fixer.cache
new file mode 100644
index 00000000..55105329
--- /dev/null
+++ b/app/revendamais/.php-cs-fixer.cache
@@ -0,0 +1 @@
+{"php":"8.4.8","version":"3.76.0:v3.76.0#0e3c484cef0ae9314b0f85986a36296087432c40","indent":" ","lineEnding":"\n","rules":{"binary_operator_spaces":{"default":"align_single_space"},"blank_line_after_opening_tag":true,"blank_line_between_import_groups":true,"blank_lines_before_namespace":true,"braces_position":{"allow_single_line_empty_anonymous_classes":true},"class_definition":{"inline_constructor_arguments":false,"space_before_parenthesis":true},"compact_nullable_type_declaration":true,"declare_equal_normalize":true,"lowercase_cast":true,"lowercase_static_reference":true,"new_with_parentheses":true,"no_blank_lines_after_class_opening":true,"no_extra_blank_lines":{"tokens":["use"]},"no_leading_import_slash":true,"no_whitespace_in_blank_line":true,"ordered_class_elements":{"order":["use_trait"]},"ordered_imports":{"sort_algorithm":"alpha"},"return_type_declaration":true,"short_scalar_cast":true,"single_import_per_statement":{"group_to_single_imports":false},"single_space_around_construct":{"constructs_followed_by_a_single_space":["abstract","as","case","catch","class","const_import","do","else","elseif","final","finally","for","foreach","function","function_import","if","insteadof","interface","namespace","new","private","protected","public","static","switch","trait","try","use","use_lambda","while"],"constructs_preceded_by_a_single_space":["as","else","elseif","use_lambda"]},"single_trait_insert_per_statement":true,"ternary_operator_spaces":true,"unary_operator_spaces":{"only_dec_inc":true},"visibility_required":true,"blank_line_after_namespace":true,"constant_case":true,"control_structure_braces":true,"control_structure_continuation_position":true,"elseif":true,"function_declaration":true,"indentation_type":true,"line_ending":true,"lowercase_keywords":true,"method_argument_space":{"on_multiline":"ensure_fully_multiline"},"no_break_comment":true,"no_closing_tag":true,"no_multiple_statements_per_line":true,"no_space_around_double_colon":true,"no_spaces_after_function_name":true,"no_trailing_whitespace":true,"no_trailing_whitespace_in_comment":true,"single_blank_line_at_eof":true,"single_class_element_per_statement":{"elements":["property"]},"single_line_after_imports":true,"spaces_inside_parentheses":true,"statement_indentation":true,"switch_case_semicolon_to_colon":true,"switch_case_space":true,"encoding":true,"full_opening_tag":true,"array_syntax":{"syntax":"short"},"cast_spaces":{"space":"single"},"concat_space":{"spacing":"one"},"native_function_invocation":{"include":["@internal"]},"phpdoc_align":{"align":"left"},"phpdoc_order":true,"single_quote":true,"trailing_comma_in_multiline":{"elements":["arrays"]},"types_spaces":{"space":"single"}},"hashes":{"app\/Models\/Country.php":"5510320439b4ac38ad19d512032b30c4","app\/Models\/User.php":"654e05ef9639cfd616039e07fdc6f14c","app\/Models\/Supplier.php":"26d3b4df3b0b7d9736468da04404badb","app\/Repositories\/Interfaces\/SupplierRepositoryInterface.php":"e0365d5cd38fc9d7ca2edab8f2e4a1b5","app\/Repositories\/SupplierRepository.php":"3ed9941066dbb39d5ddcf1bf02cfcd13","app\/Providers\/AppServiceProvider.php":"c34ce3597c3ad04d52147607e594c837","app\/Helpers\/Cacher.php":"9773418f957ab760f6d1678908c65d6a","app\/Classes\/ApiResponseClass.php":"e979f9bddcddeafbba1ba4e236ca1175","app\/Services\/SupplierService.php":"921b7747802c639dbb4379d6f7f68d8e","app\/Services\/ExternalSearchService.php":"d4ac5d74aba074cd4ea19fe4cb3604fe","app\/Services\/Contracts\/ExternalSearchServiceInterface.php":"fe3b31b9f26b6fa0508e7679575a9908","app\/Services\/DTO\/SupplierDTO.php":"e95e39c10103de913100c832ed1294c1","app\/Http\/Requests\/SupplierUpdateRequest.php":"3f8a17811b3eeeb628994b4c2e413836","app\/Http\/Requests\/SupplierIndexRequest.php":"905153d4b43bdb2fe9a7b27353cf389d","app\/Http\/Requests\/ExternalSearchRequest.php":"ee12e255dc677d71aa2f25cd88806f4d","app\/Http\/Requests\/SupplierCreateRequest.php":"e4368eba23b7e5fe00eb532ebce6dc04","app\/Http\/Controllers\/Api\/SupplierController.php":"e18bd4c92d0b04d788cb1dae9f5073a6","app\/Http\/Controllers\/Api\/ExternalSearchController.php":"1f77aa20b07e1c704a7f59faffd0fd99","app\/Http\/Controllers\/Controller.php":"7399a2c6c6c4bdd71ccd9f835eef6802","app\/Http\/Resources\/SupplierResource.php":"978939736a1c503c1acfbb4367b0dedb","app\/Http\/Resources\/SupplierCollection.php":"149b0a0e2f2a54f068716b87b0d526ba","config\/services.php":"b1f5d72416e27f456238391537f78516","config\/tinker.php":"f0b31ab77aa680c6b5028801ae2ad5ca","config\/lecturize.php":"74aff61a1a387130eafe2181d73836ee","config\/logging.php":"eff52107a558515d5b16ef997581158e","config\/mail.php":"7517b8747007b283b1a9038a6545638e","config\/app.php":"f21ed13f94e3d50d485467b4a2c39ee7","config\/filesystems.php":"45eb77ce0ee898f3ab4e4758a08781d7","config\/queue.php":"ee6e2edb205ea0fb323c67c70626f57d","config\/database.php":"b85f24f6a53d10f7ac72cc961e6c9d07","config\/cache.php":"99ec4eb70f5410caa09167fbd223d517","config\/brasil-api.php":"67b6087b796b228ff932ad7c5b9330ea","config\/sanctum.php":"2c90264820e73b59a8837778d3187dfb","config\/session.php":"4d11c9b404cf3eaa8f8d90940f214066","config\/auth.php":"4d3f7e409175396e5c75ac2cdc6a0dab","database\/seeders\/DatabaseSeeder.php":"41409bede156648160e8f75d51655d15","database\/seeders\/CountriesTableSeeder.php":"cc190c0fb880f854dbc3f439f17ae381","database\/migrations\/2025_07_03_225510_add_email_invoice_to_contacts_table.php":"8ee574f006cdbb1c6bc01adef8c2b444","database\/migrations\/2025_07_03_225509_add_vat_id_to_contacts_table.php":"2141a72c2848de23c72d97f9d09ced5e","database\/migrations\/0001_01_01_000002_create_jobs_table.php":"7bbbebf3d39cb93b626add5711a74c64","database\/migrations\/2025_07_04_022642_create_countries_table.php":"20109b3723cad474ab5078a3a7378313","database\/migrations\/2025_07_03_225507_add_user_id_to_addresses_table.php":"235888fcecaa25053956e615092e3321","database\/migrations\/2025_07_03_225502_add_street_extra_to_addresses_table.php":"72b41d78cd1895754a0bde9deddae41d","database\/migrations\/2025_07_03_225511_add_contact_fields_to_addresses_table.php":"2941c470ed70f00eaa500dca26d62613","database\/migrations\/2025_07_03_095324_create_suppliers_table.php":"ec3c298031bffd039f56782f041cd814","database\/migrations\/2025_07_03_225500_create_addresses_table.php":"2674f25516c5a9a0924757c79999d87c","database\/migrations\/2025_07_03_225503_add_gender_to_contacts_table.php":"d62ad0a981e5947ca7be9d921283940c","database\/migrations\/2025_07_03_225501_create_contacts_table.php":"7aae5d1dbcee3cae5f5fccc87c6a62b5","database\/migrations\/0001_01_01_000000_create_users_table.php":"3b865a81867e34aea9f7b1cc22c68fe3","database\/migrations\/2025_07_03_225506_add_properties_to_contacts_table.php":"67b3e7c8e722607f5889cf4f2a27d6f1","database\/migrations\/0001_01_01_000001_create_cache_table.php":"e5174f6d2f3bdcd4b8fdb176d96c3887","database\/migrations\/2025_07_03_225504_add_title_to_contacts_table.php":"24caf8e8f39e18662b3b281f3ea05ce3","database\/migrations\/2025_07_03_230627_create_personal_access_tokens_table.php":"bb375bdc11759de60d2baa1867568b4e","database\/migrations\/2025_07_03_225508_add_uuid_to_addresses_and_contacts_table.php":"25146f6c15822c86aaa3b64ff6e9c264","database\/migrations\/2025_07_03_225505_add_properties_to_addresses_table.php":"6f565b8f600aa8d3ac9a9fb02b74ca90","database\/factories\/SupplierFactory.php":"d4f197c810ac0549dcb594000ebaebfe","database\/factories\/UserFactory.php":"e2ee22a958e6194d9aff3f4dacf998d7","routes\/api.php":"a86cd0443e94d2fdcddb9d3cbabb085e","routes\/web.php":"f9d1123314bf02444fa1d1866b9f227d","routes\/console.php":"d17e574e9a60863343c0be9723e82578","tests\/Feature\/ExampleTest.php":"ce05c77f159133b4f3430b02ea061696","tests\/Unit\/ExternalSearchServiceTest.php":"4e9eff0168c7248b16ea01a7fc7ef42d","tests\/Unit\/SupplierTest.php":"4ed5d1961e0ba5c12d6a7793f9000b47","tests\/TestCase.php":"fbe0f94d7f10f8f1e33626c56c9c0608"}}
\ No newline at end of file
diff --git a/app/revendamais/.php-cs-fixer.php b/app/revendamais/.php-cs-fixer.php
new file mode 100644
index 00000000..bbfe6cdb
--- /dev/null
+++ b/app/revendamais/.php-cs-fixer.php
@@ -0,0 +1,38 @@
+in(__DIR__ . '/app')
+ ->in(__DIR__ . '/config')
+ ->in(__DIR__ . '/database')
+ ->in(__DIR__ . '/routes')
+ ->in(__DIR__ . '/tests')
+ ->name('*.php')
+ ->ignoreDotFiles(true)
+ ->ignoreVCS(true);
+
+return (new Config())
+ ->setRiskyAllowed(true)
+ ->setUnsupportedPhpVersionAllowed(true) // ✅ now correctly used as instance method
+ ->setUsingCache(true)
+ ->setRules([
+ '@PSR12' => true,
+ 'array_syntax' => ['syntax' => 'short'],
+ 'binary_operator_spaces' => ['default' => 'align_single_space'],
+ 'blank_line_after_namespace' => true,
+ 'blank_line_after_opening_tag' => true,
+ 'cast_spaces' => ['space' => 'single'],
+ 'concat_space' => ['spacing' => 'one'],
+ 'method_argument_space' => ['on_multiline' => 'ensure_fully_multiline'],
+ 'native_function_invocation' => ['include' => ['@internal']],
+ 'ordered_imports' => ['sort_algorithm' => 'alpha'],
+ 'phpdoc_align' => ['align' => 'left'],
+ 'phpdoc_order' => true,
+ 'phpdoc_to_comment' => false,
+ 'single_quote' => true,
+ 'trailing_comma_in_multiline' => ['elements' => ['arrays']],
+ 'types_spaces' => ['space' => 'single'],
+ ])
+ ->setFinder($finder);
diff --git a/app/revendamais/README.md b/app/revendamais/README.md
new file mode 100644
index 00000000..75c347a8
--- /dev/null
+++ b/app/revendamais/README.md
@@ -0,0 +1,61 @@
+
+
+
+
+
+
+
+
+
+## About Laravel
+
+Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
+
+- [Simple, fast routing engine](https://laravel.com/docs/routing).
+- [Powerful dependency injection container](https://laravel.com/docs/container).
+- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
+- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
+- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
+- [Robust background job processing](https://laravel.com/docs/queues).
+- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
+
+Laravel is accessible, powerful, and provides tools required for large, robust applications.
+
+## Learning Laravel
+
+Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
+
+You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch.
+
+If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
+
+## Laravel Sponsors
+
+We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the [Laravel Partners program](https://partners.laravel.com).
+
+### Premium Partners
+
+- **[Vehikl](https://vehikl.com)**
+- **[Tighten Co.](https://tighten.co)**
+- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
+- **[64 Robots](https://64robots.com)**
+- **[Curotec](https://www.curotec.com/services/technologies/laravel)**
+- **[DevSquad](https://devsquad.com/hire-laravel-developers)**
+- **[Redberry](https://redberry.international/laravel-development)**
+- **[Active Logic](https://activelogic.com)**
+
+## Contributing
+
+Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
+
+## Code of Conduct
+
+In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).
+
+## Security Vulnerabilities
+
+If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.
+
+## License
+
+The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
diff --git a/app/revendamais/app/Classes/ApiResponseClass.php b/app/revendamais/app/Classes/ApiResponseClass.php
new file mode 100644
index 00000000..031b6621
--- /dev/null
+++ b/app/revendamais/app/Classes/ApiResponseClass.php
@@ -0,0 +1,35 @@
+json(['message' => $message], 500));
+ }
+
+ public static function sendResponse($result, $message, $code = 200)
+ {
+ $response = [
+ 'success' => true,
+ 'data' => $result,
+ ];
+ if (!empty($message)) {
+ $response['message'] = $message;
+ }
+ return response()->json($response, $code);
+ }
+
+}
diff --git a/app/revendamais/app/Helpers/Cacher.php b/app/revendamais/app/Helpers/Cacher.php
new file mode 100644
index 00000000..ae54aa8a
--- /dev/null
+++ b/app/revendamais/app/Helpers/Cacher.php
@@ -0,0 +1,28 @@
+store)->put($key, $value);
+ }
+
+ public function getCached($key)
+ {
+ $cachedData = Cache::store($this->store)->get($key);
+ return $cachedData ? \json_decode($cachedData) : null;
+ }
+
+ public function removeCached($key)
+ {
+ Cache::store($this->store)->forget($key);
+ }
+}
diff --git a/app/revendamais/app/Http/Controllers/Api/ExternalSearchController.php b/app/revendamais/app/Http/Controllers/Api/ExternalSearchController.php
new file mode 100644
index 00000000..957c5aaf
--- /dev/null
+++ b/app/revendamais/app/Http/Controllers/Api/ExternalSearchController.php
@@ -0,0 +1,30 @@
+externalSearch = $search;
+ }
+
+ public function search(ExternalSearchRequest $request)
+ {
+ $data = $request->validated();
+ try {
+ $data = $this->externalSearch->searchCNPJ($data['cnpj']);
+ } catch (InvalidArgumentException $e) {
+ return response()->json(['message' => 'CNPJ Invalido!'], 400);
+ }
+ return response()->json($data);
+ }
+}
diff --git a/app/revendamais/app/Http/Controllers/Api/SupplierController.php b/app/revendamais/app/Http/Controllers/Api/SupplierController.php
new file mode 100644
index 00000000..538c262a
--- /dev/null
+++ b/app/revendamais/app/Http/Controllers/Api/SupplierController.php
@@ -0,0 +1,92 @@
+supplierService = $supplierService;
+ }
+ /**
+ * Display a listing of the resource.
+ */
+ public function index(SupplierIndexRequest $request)
+ {
+ $data = $request->validated();
+ $data = $this->supplierService->getAll($data);
+ return ApiResponseClass::sendResponse(new SupplierCollection($data), '', 200);
+ }
+
+ /**
+ * Store a newly created resource in storage.
+ */
+ public function store(SupplierCreateRequest $request): JsonResponse
+ {
+ $data = $request->validated();
+ $create = $this->supplierService->create(SupplierDTO::fromArray($data));
+ return ApiResponseClass::sendResponse(
+ new SupplierResource(SupplierDTO::fromArray($create)),
+ '',
+ 201
+ );
+ }
+
+ /**
+ * Display the specified resource.
+ */
+ public function show(int $id): JsonResponse
+ {
+ try {
+ $data = $this->supplierService->getById($id);
+ } catch (RecordNotFoundException $e) {
+ return ApiResponseClass::sendResponse('', 'Supplier Not found', 404);
+ }
+ return ApiResponseClass::sendResponse(new SupplierResource(SupplierDTO::fromArray($data)), '', 200);
+ }
+
+ /**
+ * Update the specified resource in storage.
+ */
+ public function update(SupplierUpdateRequest $request, $id): JsonResponse
+ {
+ try {
+ $data = $request->validated();
+ $action = $this->supplierService->update(SupplierDTO::fromArray($data), $id);
+ } catch (RecordNotFoundException $e) {
+ return ApiResponseClass::sendResponse('', 'Supplier Not found', 404);
+ }
+ return ApiResponseClass::sendResponse(new SupplierResource(SupplierDTO::fromArray($action)), '', 200);
+ }
+
+ /**
+ * Delete the specified resource.
+ */
+ public function destroy(int $id): JsonResponse
+ {
+ try {
+ $delete = $this->supplierService->delete($id);
+ if ($delete) {
+ return ApiResponseClass::sendResponse('', '', 204);
+ } else {
+ return ApiResponseClass::sendResponse('', 'The DELETE operation was not successful', 400);
+ }
+ } catch (RecordNotFoundException $e) {
+ return ApiResponseClass::sendResponse('', 'Supplier Not found', 404);
+ }
+ }
+}
diff --git a/app/revendamais/app/Http/Controllers/Controller.php b/app/revendamais/app/Http/Controllers/Controller.php
new file mode 100644
index 00000000..8677cd5c
--- /dev/null
+++ b/app/revendamais/app/Http/Controllers/Controller.php
@@ -0,0 +1,8 @@
+route()->parameters() + $this->all();
+ }
+
+ /**
+ * Get the validation rules that apply to the request.
+ *
+ * @return array|string>
+ */
+ public function rules(): array
+ {
+ return [
+ 'cnpj' => 'string|cnpj',
+ ];
+ }
+
+ public function failedValidation(Validator $validator)
+ {
+ throw new HttpResponseException(response()->json([
+ 'success' => false,
+ 'message' => 'Validation errors',
+ 'data' => $validator->errors(),
+ ]));
+ }
+}
diff --git a/app/revendamais/app/Http/Requests/SupplierCreateRequest.php b/app/revendamais/app/Http/Requests/SupplierCreateRequest.php
new file mode 100644
index 00000000..92353f06
--- /dev/null
+++ b/app/revendamais/app/Http/Requests/SupplierCreateRequest.php
@@ -0,0 +1,48 @@
+|string>
+ */
+ public function rules(): array
+ {
+ return [
+ 'name' => 'required|string',
+ 'type' => 'required|in:CPF,CNPJ',
+ 'document' => 'required|string|cpf_ou_cnpj|unique:suppliers',
+ 'email' => 'required|string|email',
+ 'phone' => 'required|string',
+ 'street' => 'required|string|max:255',
+ 'post_code' => 'required|string|max:20',
+ 'state' => 'required|string|max:255',
+ 'city' => 'required|string|max:100',
+ 'country' => 'required',
+ ];
+ }
+
+ public function failedValidation(Validator $validator)
+ {
+ throw new HttpResponseException(response()->json([
+ 'success' => false,
+ 'message' => 'Validation errors',
+ 'data' => $validator->errors(),
+ ], 400));
+ }
+}
diff --git a/app/revendamais/app/Http/Requests/SupplierIndexRequest.php b/app/revendamais/app/Http/Requests/SupplierIndexRequest.php
new file mode 100644
index 00000000..19c787bf
--- /dev/null
+++ b/app/revendamais/app/Http/Requests/SupplierIndexRequest.php
@@ -0,0 +1,42 @@
+|string>
+ */
+ public function rules(): array
+ {
+ return [
+ 'order' => 'in:asc,desc',
+ 'per_page' => 'integer|min:1',
+ 'page' => 'integer|min:1',
+ 'order_by' => 'in:name,email',
+ ];
+ }
+
+ public function failedValidation(Validator $validator)
+ {
+ throw new HttpResponseException(response()->json([
+ 'success' => false,
+ 'message' => 'Validation errors',
+ 'data' => $validator->errors(),
+ ], 400));
+ }
+}
diff --git a/app/revendamais/app/Http/Requests/SupplierUpdateRequest.php b/app/revendamais/app/Http/Requests/SupplierUpdateRequest.php
new file mode 100644
index 00000000..ccf6f656
--- /dev/null
+++ b/app/revendamais/app/Http/Requests/SupplierUpdateRequest.php
@@ -0,0 +1,48 @@
+|string>
+ */
+ public function rules(): array
+ {
+ return [
+ 'name' => 'sometimes|string',
+ 'type' => 'sometimes|in:CPF,CNPJ',
+ 'document' => 'sometimes|string|cpf_ou_cnpj',
+ 'email' => 'sometimes|string|email',
+ 'phone' => 'sometimes|string',
+ 'street' => 'sometimes|string|max:255',
+ 'post_code' => 'sometimes|string|max:20',
+ 'state' => 'sometimes|string|max:100',
+ 'city' => 'sometimes|string|max:100',
+ 'country' => 'sometimes|string',
+ ];
+ }
+
+ public function failedValidation(Validator $validator)
+ {
+ throw new HttpResponseException(response()->json([
+ 'success' => false,
+ 'message' => 'Validation errors',
+ 'data' => $validator->errors(),
+ ], 400));
+ }
+}
diff --git a/app/revendamais/app/Http/Resources/SupplierCollection.php b/app/revendamais/app/Http/Resources/SupplierCollection.php
new file mode 100644
index 00000000..ce63bbe4
--- /dev/null
+++ b/app/revendamais/app/Http/Resources/SupplierCollection.php
@@ -0,0 +1,26 @@
+ $this->collection,
+ 'current_page' => $this->currentPage(),
+ 'per_page' => $this->perPage(),
+ 'total' => $this->total(),
+ 'total_pages' => $this->lastPage(),
+ 'from' => $this->firstItem(),
+ 'to' => $this->lastItem(),
+ 'next_page_url' => $this->nextPageUrl(),
+ 'prev_page_url' => $this->previousPageUrl(),
+ 'path' => $this->path(),
+ 'links' => $this->linkCollection()->toArray(),
+ ];
+ }
+}
diff --git a/app/revendamais/app/Http/Resources/SupplierResource.php b/app/revendamais/app/Http/Resources/SupplierResource.php
new file mode 100644
index 00000000..91ec174e
--- /dev/null
+++ b/app/revendamais/app/Http/Resources/SupplierResource.php
@@ -0,0 +1,35 @@
+
+ */
+ public function toArray(Request $request): array
+ {
+ //return parent::toArray($request);
+ return [
+ 'id' => $this->id,
+ 'name' => $this->name,
+ 'type' => $this->type,
+ 'document' => $this->document,
+ 'email' => $this->email,
+ 'phone' => $this->phone,
+ 'street' => $this->street,
+ 'post_code' => $this->post_code ,
+ 'state' => $this->state,
+ 'city' => $this->city,
+ 'country' => $this->country,
+ // 'created_at' => Carbon::parse($this->created_at)->format('d/m/Y H:i:s'),
+ // 'updated_at' => Carbon::parse($this->updated_at)->format('d/m/Y H:i:s'),
+ ];
+ }
+}
diff --git a/app/revendamais/app/Models/Supplier.php b/app/revendamais/app/Models/Supplier.php
new file mode 100644
index 00000000..abdc4d8c
--- /dev/null
+++ b/app/revendamais/app/Models/Supplier.php
@@ -0,0 +1,40 @@
+
+ */
+ protected $fillable = ['name', 'type', 'document', 'email', 'phone'];
+}
diff --git a/app/revendamais/app/Models/User.php b/app/revendamais/app/Models/User.php
new file mode 100644
index 00000000..f6c816ae
--- /dev/null
+++ b/app/revendamais/app/Models/User.php
@@ -0,0 +1,49 @@
+ */
+ use HasFactory;
+ use Notifiable;
+
+ /**
+ * The attributes that are mass assignable.
+ *
+ * @var list
+ */
+ protected $fillable = [
+ 'name',
+ 'email',
+ 'password',
+ ];
+
+ /**
+ * The attributes that should be hidden for serialization.
+ *
+ * @var list
+ */
+ protected $hidden = [
+ 'password',
+ 'remember_token',
+ ];
+
+ /**
+ * Get the attributes that should be cast.
+ *
+ * @return array
+ */
+ protected function casts(): array
+ {
+ return [
+ 'email_verified_at' => 'datetime',
+ 'password' => 'hashed',
+ ];
+ }
+}
diff --git a/app/revendamais/app/Providers/AppServiceProvider.php b/app/revendamais/app/Providers/AppServiceProvider.php
new file mode 100644
index 00000000..b5614309
--- /dev/null
+++ b/app/revendamais/app/Providers/AppServiceProvider.php
@@ -0,0 +1,29 @@
+app->bind(SupplierRepositoryInterface::class, SupplierRepository::class);
+ $this->app->bind(ExternalSearchServiceInterface::class, ExternalSearchService::class);
+ }
+
+ /**
+ * Bootstrap any application services.
+ */
+ public function boot(): void
+ {
+ //
+ }
+}
diff --git a/app/revendamais/app/Repositories/Interfaces/SupplierRepositoryInterface.php b/app/revendamais/app/Repositories/Interfaces/SupplierRepositoryInterface.php
new file mode 100644
index 00000000..c2b3b2c0
--- /dev/null
+++ b/app/revendamais/app/Repositories/Interfaces/SupplierRepositoryInterface.php
@@ -0,0 +1,13 @@
+cacher = new Cacher('redis');
+ }
+
+ /**
+ * Merges data from a supplier object into its array representation.
+ *
+ * @param Supplier $supplier The supplier object to merge data from.
+ * @return array The merged data with added address information.
+ */
+ private function mergeData(Supplier $supplier): array
+ {
+ $addressData = $supplier->addresses()->first();
+ $addressArray = [
+ 'street' => $addressData->street,
+ 'post_code' => $addressData->post_code,
+ 'state' => $addressData->state,
+ 'city' => $addressData->city,
+ 'country' => $addressData->country->iso_3166_2,
+ ];
+ return \array_merge($supplier->toArray(), $addressArray);
+ }
+ /**
+ * Retrieves all suppliers.
+ *
+ * @param array $data The fields to filter by in the supplier data.
+ * @return LengthAwarePaginator A paginated list of suppliers.
+ */
+ public function all(array $data)
+ {
+ $supplierList = Supplier::orderBy($data['order_by'] ?? 'name', $data['order'] ?? 'asc')
+ ->paginate(page: $data['page'] ?? 1, perPage: $data['per_page'] ?? 20);
+
+ $supplierList->getCollection()->transform(function ($supplier) {
+ $address = $supplier->addresses()->first();
+ $supplier->street = $address->street;
+ $supplier->post_code = $address->post_code;
+ $supplier->city = $address->city;
+ $supplier->state = $address->state;
+ $supplier->country = $address->country->name;
+ return $supplier;
+ });
+ return $supplierList;
+ }
+
+ /**
+ * Finds a supplier by ID.
+ *
+ * @param int $id The ID of the supplier to find.
+ */
+ public function find(int $id): array
+ {
+ $cachedData = $this->cacher->getCached('supplier_' . $id);
+
+ if ($cachedData) {
+ return (array) $cachedData;
+ }
+ try {
+ $supplier = Supplier::findOrFail($id);
+ } catch (\Illuminate\Database\Eloquent\ModelNotFoundException $e) {
+ throw new RecordNotFoundException("Id:`$id` not found");
+ }
+ $supplierData = $this->mergeData($supplier);
+ $this->cacher->setCached('supplier_' . $supplier->id, \json_encode($supplierData));
+ return $supplierData;
+
+ }
+
+ /**
+ * Creates a new supplier.
+ *
+ * @param array $data The data to create the supplier with.
+ * @param array $address The address data for the supplier.
+ */
+ public function create(array $data, array $address): array
+ {
+ $supplier = Supplier::create($data);
+ $supplier->addAddress($address);
+ $supplier->save();
+ $supplier->refresh();
+ $supplierData = $this->mergeData($supplier);
+ $this->cacher->setCached('supplier_' . $supplier->id, \json_encode($supplierData));
+ return $supplierData;
+ }
+
+ /**
+ * Updates a supplier.
+ *
+ * @param int $id The ID of the supplier to update.
+ * @param array $data The data to update the supplier with.
+ * @param array $address The address data for the supplier.
+ */
+ public function update(int $id, array $data, array $address): array
+ {
+ try {
+ $supplier = Supplier::findOrFail($id);
+ $addressData = $supplier->addresses()->first();
+
+ } catch (\Illuminate\Database\Eloquent\ModelNotFoundException $e) {
+ throw new RecordNotFoundException("Id:`$id` not found");
+ }
+ $supplier->update($data);
+ $supplier->updateAddress($addressData, $address);
+ $supplier->refresh();
+ $supplierData = $this->mergeData($supplier);
+ if ($this->cacher->getCached('supplier_' . $supplier->id)) {
+ $this->cacher->removeCached('supplier_' . $supplier->id);
+ }
+ $this->cacher->setCached('supplier_' . $supplier->id, \json_encode($supplierData));
+ return $supplierData;
+ }
+
+ /**
+ * Deletes a supplier.
+ *
+ * @param int $id The ID of the supplier to delete.
+ */
+ public function delete(int $id): bool
+ {
+ try {
+ $supplier = Supplier::findOrFail($id);
+ } catch (\Illuminate\Database\Eloquent\ModelNotFoundException $e) {
+ throw new RecordNotFoundException("Id:`$id` not found");
+ }
+ $this->cacher->removeCached('supplier_' . $id);
+ return $supplier->forceDelete();
+ }
+}
diff --git a/app/revendamais/app/Services/Contracts/ExternalSearchServiceInterface.php b/app/revendamais/app/Services/Contracts/ExternalSearchServiceInterface.php
new file mode 100644
index 00000000..614d6cca
--- /dev/null
+++ b/app/revendamais/app/Services/Contracts/ExternalSearchServiceInterface.php
@@ -0,0 +1,18 @@
+id = $id;
+ $this->name = $name;
+ $this->type = $type;
+ $this->document = $document;
+ $this->email = $email;
+ $this->phone = $phone;
+ $this->street = $street;
+ $this->state = $state;
+ $this->post_code = $post_code;
+ $this->city = $city;
+ $this->country = $country;
+ }
+
+ public function getId()
+ {
+ return $this->id;
+ }
+
+ public function getBasicData(): array
+ {
+ return [
+ 'name' => $this->name,
+ 'type' => $this->type,
+ 'document' => $this->document,
+ 'email' => $this->email,
+ 'phone' => $this->phone,
+ ];
+ }
+
+ public function getAddress()
+ {
+ return [
+ 'street' => $this->street,
+ 'post_code' => $this->post_code,
+ 'state' => $this->state,
+ 'city' => $this->city,
+ 'country' => $this->country,
+ ];
+ }
+
+ public function toArray()
+ {
+ return \array_merge($this->getBasicData(), $this->getAddress());
+ }
+
+ public static function fromArray(array $data)
+ {
+ return new self(
+ $data['id'] ?? null,
+ $data['name'],
+ $data['type'],
+ $data['document'],
+ $data['email'],
+ $data['phone'],
+ $data['street'],
+ $data['post_code'],
+ $data['state'],
+ $data['city'],
+ $data['country'],
+ );
+ }
+
+ public static function fromRequest(Request $request)
+ {
+ return (new self(
+ $request->id,
+ $request->name,
+ $request->type,
+ $request->document,
+ $request->email,
+ $request->phone,
+ $request->street,
+ $request->post_code,
+ $request->state,
+ $request->city,
+ $request->country
+ ));
+ }
+
+}
diff --git a/app/revendamais/app/Services/ExternalSearchService.php b/app/revendamais/app/Services/ExternalSearchService.php
new file mode 100644
index 00000000..e278080a
--- /dev/null
+++ b/app/revendamais/app/Services/ExternalSearchService.php
@@ -0,0 +1,51 @@
+cacher = new Cacher('redis');
+ }
+
+ /**
+ * Searches for suppliers based on the provided CNPJ (Cadastro de Contribuintes).
+ *
+ * @param string $cnpj The CNPJ to search for.
+ */
+ public function searchCNPJ(string $cnpj): array
+ {
+ $cachedData = $this->cacher->getCached('search_' . $cnpj);
+ if ($cachedData) {
+ $data = $cachedData;
+ } else {
+ try {
+ $data = BrasilApiFacade::findCnpj($cnpj);
+ } catch (\Illuminate\Http\Client\RequestException $e) {
+ $response = $e->response;
+ $message = $e->getMessage();
+ if ($response->getStatusCode() == 400 && \str_contains($message, 'inválido')) {
+ throw new InvalidArgumentException('CNPJ Invalido!');
+ } else {
+ $this->cacher->setCached('search_' . $cnpj, \json_encode($data));
+ }
+ }
+ }
+ return $data;
+ }
+}
diff --git a/app/revendamais/app/Services/SupplierService.php b/app/revendamais/app/Services/SupplierService.php
new file mode 100644
index 00000000..8b81dcdd
--- /dev/null
+++ b/app/revendamais/app/Services/SupplierService.php
@@ -0,0 +1,92 @@
+supplierRepository = $supplierRepository;
+ }
+ /**
+ * Retrieves a paginated list of all suppliers based on the provided request fields.
+ *
+ * @param array $requestFields The fields to filter by in the supplier data.
+ * @return LengthAwarePaginator A paginated list of suppliers.
+ */
+ public function getAll(array $requestFields): LengthAwarePaginator
+ {
+ $suppliers = $this->supplierRepository->all($requestFields);
+ return $suppliers;
+ }
+ /**
+ * Creates a new supplier.
+ *
+ * @param SupplierDTO $data The data to create the supplier with.
+ * @return array The created supplier details.
+ */
+ public function create(SupplierDTO $data): array
+ {
+ $supplier = $this->supplierRepository->create($data->getBasicData(), $data->getAddress());
+ return $supplier;
+ }
+ /**
+ * Retrieves a supplier by ID.
+ *
+ * @param int $id The ID of the supplier to retrieve.
+ * @return array The supplier details with its address.
+ */
+ public function getById(int $id): array
+ {
+ try {
+ return $this->supplierRepository->find($id);
+ } catch (RecordNotFoundException $e) {
+ throw new RecordNotFoundException($e->getMessage());
+ }
+ }
+ /**
+ * Updates an existing supplier.
+ *
+ * @param SupplierDTO $data The data to update the supplier with.
+ * @param int $id The ID of the supplier to update.
+ * @return array The updated supplier details.
+ */
+ public function update(SupplierDTO $data, int $id): array
+ {
+ try {
+ $updatedData = $this->supplierRepository->update($id, $data->getBasicData(), $data->getAddress());
+ } catch (RecordNotFoundException $e) {
+ throw new RecordNotFoundException($e->getMessage());
+ }
+ return $updatedData;
+ }
+ /**
+ * Deletes a supplier by ID.
+ *
+ * @param int $id The ID of the supplier to delete.
+ */
+ public function delete(int $id): bool
+ {
+ try {
+ return $this->supplierRepository->delete($id);
+ } catch (RecordNotFoundException $e) {
+ throw new RecordNotFoundException($e->getMessage());
+ }
+ }
+}
diff --git a/app/revendamais/artisan b/app/revendamais/artisan
new file mode 100755
index 00000000..c35e31d6
--- /dev/null
+++ b/app/revendamais/artisan
@@ -0,0 +1,18 @@
+#!/usr/bin/env php
+handleCommand(new ArgvInput);
+
+exit($status);
diff --git a/app/revendamais/bootstrap/app.php b/app/revendamais/bootstrap/app.php
new file mode 100644
index 00000000..c3928c57
--- /dev/null
+++ b/app/revendamais/bootstrap/app.php
@@ -0,0 +1,19 @@
+withRouting(
+ web: __DIR__.'/../routes/web.php',
+ api: __DIR__.'/../routes/api.php',
+ commands: __DIR__.'/../routes/console.php',
+ health: '/up',
+ )
+ ->withMiddleware(function (Middleware $middleware): void {
+ //
+ })
+ ->withExceptions(function (Exceptions $exceptions): void {
+ //
+ })->create();
diff --git a/app/revendamais/bootstrap/cache/.gitignore b/app/revendamais/bootstrap/cache/.gitignore
new file mode 100644
index 00000000..d6b7ef32
--- /dev/null
+++ b/app/revendamais/bootstrap/cache/.gitignore
@@ -0,0 +1,2 @@
+*
+!.gitignore
diff --git a/app/revendamais/bootstrap/providers.php b/app/revendamais/bootstrap/providers.php
new file mode 100644
index 00000000..38b258d1
--- /dev/null
+++ b/app/revendamais/bootstrap/providers.php
@@ -0,0 +1,5 @@
+=5.0.0"
+ },
+ "require-dev": {
+ "doctrine/dbal": "^4.0.0",
+ "nesbot/carbon": "^2.71.0 || ^3.0.0",
+ "phpunit/phpunit": "^10.3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "KyleKatarn",
+ "email": "kylekatarnls@gmail.com"
+ }
+ ],
+ "description": "Types to use Carbon in Doctrine",
+ "keywords": [
+ "carbon",
+ "date",
+ "datetime",
+ "doctrine",
+ "time"
+ ],
+ "support": {
+ "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
+ "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/kylekatarnls",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/Carbon",
+ "type": "open_collective"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-02-09T16:56:22+00:00"
+ },
+ {
+ "name": "dflydev/dot-access-data",
+ "version": "v3.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
+ "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
+ "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^0.12.42",
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
+ "scrutinizer/ocular": "1.6.0",
+ "squizlabs/php_codesniffer": "^3.5",
+ "vimeo/psalm": "^4.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Dflydev\\DotAccessData\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Dragonfly Development Inc.",
+ "email": "info@dflydev.com",
+ "homepage": "http://dflydev.com"
+ },
+ {
+ "name": "Beau Simensen",
+ "email": "beau@dflydev.com",
+ "homepage": "http://beausimensen.com"
+ },
+ {
+ "name": "Carlos Frutos",
+ "email": "carlos@kiwing.it",
+ "homepage": "https://github.com/cfrutos"
+ },
+ {
+ "name": "Colin O'Dell",
+ "email": "colinodell@gmail.com",
+ "homepage": "https://www.colinodell.com"
+ }
+ ],
+ "description": "Given a deep data structure, access data by dot notation.",
+ "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
+ "keywords": [
+ "access",
+ "data",
+ "dot",
+ "notation"
+ ],
+ "support": {
+ "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
+ "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
+ },
+ "time": "2024-07-08T12:26:09+00:00"
+ },
+ {
+ "name": "doctrine/inflector",
+ "version": "2.0.10",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/inflector.git",
+ "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
+ "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^11.0",
+ "phpstan/phpstan": "^1.8",
+ "phpstan/phpstan-phpunit": "^1.1",
+ "phpstan/phpstan-strict-rules": "^1.3",
+ "phpunit/phpunit": "^8.5 || ^9.5",
+ "vimeo/psalm": "^4.25 || ^5.4"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
+ {
+ "name": "Roman Borschel",
+ "email": "roman@code-factory.org"
+ },
+ {
+ "name": "Benjamin Eberlei",
+ "email": "kontakt@beberlei.de"
+ },
+ {
+ "name": "Jonathan Wage",
+ "email": "jonwage@gmail.com"
+ },
+ {
+ "name": "Johannes Schmitt",
+ "email": "schmittjoh@gmail.com"
+ }
+ ],
+ "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
+ "homepage": "https://www.doctrine-project.org/projects/inflector.html",
+ "keywords": [
+ "inflection",
+ "inflector",
+ "lowercase",
+ "manipulation",
+ "php",
+ "plural",
+ "singular",
+ "strings",
+ "uppercase",
+ "words"
+ ],
+ "support": {
+ "issues": "https://github.com/doctrine/inflector/issues",
+ "source": "https://github.com/doctrine/inflector/tree/2.0.10"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-02-18T20:23:39+00:00"
+ },
+ {
+ "name": "doctrine/lexer",
+ "version": "3.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/lexer.git",
+ "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
+ "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^12",
+ "phpstan/phpstan": "^1.10",
+ "phpunit/phpunit": "^10.5",
+ "psalm/plugin-phpunit": "^0.18.3",
+ "vimeo/psalm": "^5.21"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Common\\Lexer\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
+ {
+ "name": "Roman Borschel",
+ "email": "roman@code-factory.org"
+ },
+ {
+ "name": "Johannes Schmitt",
+ "email": "schmittjoh@gmail.com"
+ }
+ ],
+ "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
+ "homepage": "https://www.doctrine-project.org/projects/lexer.html",
+ "keywords": [
+ "annotations",
+ "docblock",
+ "lexer",
+ "parser",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/doctrine/lexer/issues",
+ "source": "https://github.com/doctrine/lexer/tree/3.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-02-05T11:56:58+00:00"
+ },
+ {
+ "name": "dragonmantank/cron-expression",
+ "version": "v3.4.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/dragonmantank/cron-expression.git",
+ "reference": "8c784d071debd117328803d86b2097615b457500"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
+ "reference": "8c784d071debd117328803d86b2097615b457500",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2|^8.0",
+ "webmozart/assert": "^1.0"
+ },
+ "replace": {
+ "mtdowling/cron-expression": "^1.0"
+ },
+ "require-dev": {
+ "phpstan/extension-installer": "^1.0",
+ "phpstan/phpstan": "^1.0",
+ "phpunit/phpunit": "^7.0|^8.0|^9.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Cron\\": "src/Cron/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Chris Tankersley",
+ "email": "chris@ctankersley.com",
+ "homepage": "https://github.com/dragonmantank"
+ }
+ ],
+ "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
+ "keywords": [
+ "cron",
+ "schedule"
+ ],
+ "support": {
+ "issues": "https://github.com/dragonmantank/cron-expression/issues",
+ "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/dragonmantank",
+ "type": "github"
+ }
+ ],
+ "time": "2024-10-09T13:47:03+00:00"
+ },
+ {
+ "name": "egulias/email-validator",
+ "version": "4.0.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/egulias/EmailValidator.git",
+ "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
+ "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/lexer": "^2.0 || ^3.0",
+ "php": ">=8.1",
+ "symfony/polyfill-intl-idn": "^1.26"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^10.2",
+ "vimeo/psalm": "^5.12"
+ },
+ "suggest": {
+ "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Egulias\\EmailValidator\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Eduardo Gulias Davis"
+ }
+ ],
+ "description": "A library for validating emails against several RFCs",
+ "homepage": "https://github.com/egulias/EmailValidator",
+ "keywords": [
+ "email",
+ "emailvalidation",
+ "emailvalidator",
+ "validation",
+ "validator"
+ ],
+ "support": {
+ "issues": "https://github.com/egulias/EmailValidator/issues",
+ "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/egulias",
+ "type": "github"
+ }
+ ],
+ "time": "2025-03-06T22:45:56+00:00"
+ },
+ {
+ "name": "fruitcake/php-cors",
+ "version": "v1.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/fruitcake/php-cors.git",
+ "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
+ "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4|^8.0",
+ "symfony/http-foundation": "^4.4|^5.4|^6|^7"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.4",
+ "phpunit/phpunit": "^9",
+ "squizlabs/php_codesniffer": "^3.5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.2-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Fruitcake\\Cors\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fruitcake",
+ "homepage": "https://fruitcake.nl"
+ },
+ {
+ "name": "Barryvdh",
+ "email": "barryvdh@gmail.com"
+ }
+ ],
+ "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
+ "homepage": "https://github.com/fruitcake/php-cors",
+ "keywords": [
+ "cors",
+ "laravel",
+ "symfony"
+ ],
+ "support": {
+ "issues": "https://github.com/fruitcake/php-cors/issues",
+ "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://fruitcake.nl",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/barryvdh",
+ "type": "github"
+ }
+ ],
+ "time": "2023-10-12T05:21:21+00:00"
+ },
+ {
+ "name": "graham-campbell/result-type",
+ "version": "v1.1.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/GrahamCampbell/Result-Type.git",
+ "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
+ "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2.5 || ^8.0",
+ "phpoption/phpoption": "^1.9.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "GrahamCampbell\\ResultType\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ }
+ ],
+ "description": "An Implementation Of The Result Type",
+ "keywords": [
+ "Graham Campbell",
+ "GrahamCampbell",
+ "Result Type",
+ "Result-Type",
+ "result"
+ ],
+ "support": {
+ "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
+ "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-07-20T21:45:45+00:00"
+ },
+ {
+ "name": "guzzlehttp/guzzle",
+ "version": "7.9.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/guzzle/guzzle.git",
+ "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
+ "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
+ "guzzlehttp/psr7": "^2.7.0",
+ "php": "^7.2.5 || ^8.0",
+ "psr/http-client": "^1.0",
+ "symfony/deprecation-contracts": "^2.2 || ^3.0"
+ },
+ "provide": {
+ "psr/http-client-implementation": "1.0"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "ext-curl": "*",
+ "guzzle/client-integration-tests": "3.0.2",
+ "php-http/message-factory": "^1.1",
+ "phpunit/phpunit": "^8.5.39 || ^9.6.20",
+ "psr/log": "^1.1 || ^2.0 || ^3.0"
+ },
+ "suggest": {
+ "ext-curl": "Required for CURL handler support",
+ "ext-intl": "Required for Internationalized Domain Name (IDN) support",
+ "psr/log": "Required for using the Log middleware"
+ },
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/functions_include.php"
+ ],
+ "psr-4": {
+ "GuzzleHttp\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ },
+ {
+ "name": "Michael Dowling",
+ "email": "mtdowling@gmail.com",
+ "homepage": "https://github.com/mtdowling"
+ },
+ {
+ "name": "Jeremy Lindblom",
+ "email": "jeremeamia@gmail.com",
+ "homepage": "https://github.com/jeremeamia"
+ },
+ {
+ "name": "George Mponos",
+ "email": "gmponos@gmail.com",
+ "homepage": "https://github.com/gmponos"
+ },
+ {
+ "name": "Tobias Nyholm",
+ "email": "tobias.nyholm@gmail.com",
+ "homepage": "https://github.com/Nyholm"
+ },
+ {
+ "name": "Márk Sági-Kazár",
+ "email": "mark.sagikazar@gmail.com",
+ "homepage": "https://github.com/sagikazarmark"
+ },
+ {
+ "name": "Tobias Schultze",
+ "email": "webmaster@tubo-world.de",
+ "homepage": "https://github.com/Tobion"
+ }
+ ],
+ "description": "Guzzle is a PHP HTTP client library",
+ "keywords": [
+ "client",
+ "curl",
+ "framework",
+ "http",
+ "http client",
+ "psr-18",
+ "psr-7",
+ "rest",
+ "web service"
+ ],
+ "support": {
+ "issues": "https://github.com/guzzle/guzzle/issues",
+ "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/Nyholm",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-03-27T13:37:11+00:00"
+ },
+ {
+ "name": "guzzlehttp/promises",
+ "version": "2.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/guzzle/promises.git",
+ "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
+ "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2.5 || ^8.0"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "phpunit/phpunit": "^8.5.39 || ^9.6.20"
+ },
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "GuzzleHttp\\Promise\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ },
+ {
+ "name": "Michael Dowling",
+ "email": "mtdowling@gmail.com",
+ "homepage": "https://github.com/mtdowling"
+ },
+ {
+ "name": "Tobias Nyholm",
+ "email": "tobias.nyholm@gmail.com",
+ "homepage": "https://github.com/Nyholm"
+ },
+ {
+ "name": "Tobias Schultze",
+ "email": "webmaster@tubo-world.de",
+ "homepage": "https://github.com/Tobion"
+ }
+ ],
+ "description": "Guzzle promises library",
+ "keywords": [
+ "promise"
+ ],
+ "support": {
+ "issues": "https://github.com/guzzle/promises/issues",
+ "source": "https://github.com/guzzle/promises/tree/2.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/Nyholm",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-03-27T13:27:01+00:00"
+ },
+ {
+ "name": "guzzlehttp/psr7",
+ "version": "2.7.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/guzzle/psr7.git",
+ "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
+ "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2.5 || ^8.0",
+ "psr/http-factory": "^1.0",
+ "psr/http-message": "^1.1 || ^2.0",
+ "ralouphie/getallheaders": "^3.0"
+ },
+ "provide": {
+ "psr/http-factory-implementation": "1.0",
+ "psr/http-message-implementation": "1.0"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "http-interop/http-factory-tests": "0.9.0",
+ "phpunit/phpunit": "^8.5.39 || ^9.6.20"
+ },
+ "suggest": {
+ "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
+ },
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "GuzzleHttp\\Psr7\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ },
+ {
+ "name": "Michael Dowling",
+ "email": "mtdowling@gmail.com",
+ "homepage": "https://github.com/mtdowling"
+ },
+ {
+ "name": "George Mponos",
+ "email": "gmponos@gmail.com",
+ "homepage": "https://github.com/gmponos"
+ },
+ {
+ "name": "Tobias Nyholm",
+ "email": "tobias.nyholm@gmail.com",
+ "homepage": "https://github.com/Nyholm"
+ },
+ {
+ "name": "Márk Sági-Kazár",
+ "email": "mark.sagikazar@gmail.com",
+ "homepage": "https://github.com/sagikazarmark"
+ },
+ {
+ "name": "Tobias Schultze",
+ "email": "webmaster@tubo-world.de",
+ "homepage": "https://github.com/Tobion"
+ },
+ {
+ "name": "Márk Sági-Kazár",
+ "email": "mark.sagikazar@gmail.com",
+ "homepage": "https://sagikazarmark.hu"
+ }
+ ],
+ "description": "PSR-7 message implementation that also provides common utility methods",
+ "keywords": [
+ "http",
+ "message",
+ "psr-7",
+ "request",
+ "response",
+ "stream",
+ "uri",
+ "url"
+ ],
+ "support": {
+ "issues": "https://github.com/guzzle/psr7/issues",
+ "source": "https://github.com/guzzle/psr7/tree/2.7.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/Nyholm",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-03-27T12:30:47+00:00"
+ },
+ {
+ "name": "guzzlehttp/uri-template",
+ "version": "v1.0.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/guzzle/uri-template.git",
+ "reference": "30e286560c137526eccd4ce21b2de477ab0676d2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2",
+ "reference": "30e286560c137526eccd4ce21b2de477ab0676d2",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2.5 || ^8.0",
+ "symfony/polyfill-php80": "^1.24"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "phpunit/phpunit": "^8.5.36 || ^9.6.15",
+ "uri-template/tests": "1.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "GuzzleHttp\\UriTemplate\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ },
+ {
+ "name": "Michael Dowling",
+ "email": "mtdowling@gmail.com",
+ "homepage": "https://github.com/mtdowling"
+ },
+ {
+ "name": "George Mponos",
+ "email": "gmponos@gmail.com",
+ "homepage": "https://github.com/gmponos"
+ },
+ {
+ "name": "Tobias Nyholm",
+ "email": "tobias.nyholm@gmail.com",
+ "homepage": "https://github.com/Nyholm"
+ }
+ ],
+ "description": "A polyfill class for uri_template of PHP",
+ "keywords": [
+ "guzzlehttp",
+ "uri-template"
+ ],
+ "support": {
+ "issues": "https://github.com/guzzle/uri-template/issues",
+ "source": "https://github.com/guzzle/uri-template/tree/v1.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/Nyholm",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-02-03T10:55:03+00:00"
+ },
+ {
+ "name": "laravel/framework",
+ "version": "v12.19.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/framework.git",
+ "reference": "4e6ec689ef704bb4bd282f29d9dd658dfb4fb262"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/4e6ec689ef704bb4bd282f29d9dd658dfb4fb262",
+ "reference": "4e6ec689ef704bb4bd282f29d9dd658dfb4fb262",
+ "shasum": ""
+ },
+ "require": {
+ "brick/math": "^0.11|^0.12|^0.13",
+ "composer-runtime-api": "^2.2",
+ "doctrine/inflector": "^2.0.5",
+ "dragonmantank/cron-expression": "^3.4",
+ "egulias/email-validator": "^3.2.1|^4.0",
+ "ext-ctype": "*",
+ "ext-filter": "*",
+ "ext-hash": "*",
+ "ext-mbstring": "*",
+ "ext-openssl": "*",
+ "ext-session": "*",
+ "ext-tokenizer": "*",
+ "fruitcake/php-cors": "^1.3",
+ "guzzlehttp/guzzle": "^7.8.2",
+ "guzzlehttp/uri-template": "^1.0",
+ "laravel/prompts": "^0.3.0",
+ "laravel/serializable-closure": "^1.3|^2.0",
+ "league/commonmark": "^2.7",
+ "league/flysystem": "^3.25.1",
+ "league/flysystem-local": "^3.25.1",
+ "league/uri": "^7.5.1",
+ "monolog/monolog": "^3.0",
+ "nesbot/carbon": "^3.8.4",
+ "nunomaduro/termwind": "^2.0",
+ "php": "^8.2",
+ "psr/container": "^1.1.1|^2.0.1",
+ "psr/log": "^1.0|^2.0|^3.0",
+ "psr/simple-cache": "^1.0|^2.0|^3.0",
+ "ramsey/uuid": "^4.7",
+ "symfony/console": "^7.2.0",
+ "symfony/error-handler": "^7.2.0",
+ "symfony/finder": "^7.2.0",
+ "symfony/http-foundation": "^7.2.0",
+ "symfony/http-kernel": "^7.2.0",
+ "symfony/mailer": "^7.2.0",
+ "symfony/mime": "^7.2.0",
+ "symfony/polyfill-php83": "^1.31",
+ "symfony/process": "^7.2.0",
+ "symfony/routing": "^7.2.0",
+ "symfony/uid": "^7.2.0",
+ "symfony/var-dumper": "^7.2.0",
+ "tijsverkoyen/css-to-inline-styles": "^2.2.5",
+ "vlucas/phpdotenv": "^5.6.1",
+ "voku/portable-ascii": "^2.0.2"
+ },
+ "conflict": {
+ "tightenco/collect": "<5.5.33"
+ },
+ "provide": {
+ "psr/container-implementation": "1.1|2.0",
+ "psr/log-implementation": "1.0|2.0|3.0",
+ "psr/simple-cache-implementation": "1.0|2.0|3.0"
+ },
+ "replace": {
+ "illuminate/auth": "self.version",
+ "illuminate/broadcasting": "self.version",
+ "illuminate/bus": "self.version",
+ "illuminate/cache": "self.version",
+ "illuminate/collections": "self.version",
+ "illuminate/concurrency": "self.version",
+ "illuminate/conditionable": "self.version",
+ "illuminate/config": "self.version",
+ "illuminate/console": "self.version",
+ "illuminate/container": "self.version",
+ "illuminate/contracts": "self.version",
+ "illuminate/cookie": "self.version",
+ "illuminate/database": "self.version",
+ "illuminate/encryption": "self.version",
+ "illuminate/events": "self.version",
+ "illuminate/filesystem": "self.version",
+ "illuminate/hashing": "self.version",
+ "illuminate/http": "self.version",
+ "illuminate/log": "self.version",
+ "illuminate/macroable": "self.version",
+ "illuminate/mail": "self.version",
+ "illuminate/notifications": "self.version",
+ "illuminate/pagination": "self.version",
+ "illuminate/pipeline": "self.version",
+ "illuminate/process": "self.version",
+ "illuminate/queue": "self.version",
+ "illuminate/redis": "self.version",
+ "illuminate/routing": "self.version",
+ "illuminate/session": "self.version",
+ "illuminate/support": "self.version",
+ "illuminate/testing": "self.version",
+ "illuminate/translation": "self.version",
+ "illuminate/validation": "self.version",
+ "illuminate/view": "self.version",
+ "spatie/once": "*"
+ },
+ "require-dev": {
+ "ably/ably-php": "^1.0",
+ "aws/aws-sdk-php": "^3.322.9",
+ "ext-gmp": "*",
+ "fakerphp/faker": "^1.24",
+ "guzzlehttp/promises": "^2.0.3",
+ "guzzlehttp/psr7": "^2.4",
+ "laravel/pint": "^1.18",
+ "league/flysystem-aws-s3-v3": "^3.25.1",
+ "league/flysystem-ftp": "^3.25.1",
+ "league/flysystem-path-prefixing": "^3.25.1",
+ "league/flysystem-read-only": "^3.25.1",
+ "league/flysystem-sftp-v3": "^3.25.1",
+ "mockery/mockery": "^1.6.10",
+ "orchestra/testbench-core": "^10.0.0",
+ "pda/pheanstalk": "^5.0.6|^7.0.0",
+ "php-http/discovery": "^1.15",
+ "phpstan/phpstan": "^2.0",
+ "phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1",
+ "predis/predis": "^2.3|^3.0",
+ "resend/resend-php": "^0.10.0",
+ "symfony/cache": "^7.2.0",
+ "symfony/http-client": "^7.2.0",
+ "symfony/psr-http-message-bridge": "^7.2.0",
+ "symfony/translation": "^7.2.0"
+ },
+ "suggest": {
+ "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
+ "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
+ "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
+ "ext-apcu": "Required to use the APC cache driver.",
+ "ext-fileinfo": "Required to use the Filesystem class.",
+ "ext-ftp": "Required to use the Flysystem FTP driver.",
+ "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
+ "ext-memcached": "Required to use the memcache cache driver.",
+ "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
+ "ext-pdo": "Required to use all database features.",
+ "ext-posix": "Required to use all features of the queue worker.",
+ "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
+ "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
+ "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
+ "laravel/tinker": "Required to use the tinker console command (^2.0).",
+ "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
+ "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
+ "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
+ "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
+ "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
+ "mockery/mockery": "Required to use mocking (^1.6).",
+ "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
+ "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
+ "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.5.3|^12.0.1).",
+ "predis/predis": "Required to use the predis connector (^2.3|^3.0).",
+ "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
+ "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
+ "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
+ "symfony/cache": "Required to PSR-6 cache bridge (^7.2).",
+ "symfony/filesystem": "Required to enable support for relative symbolic links (^7.2).",
+ "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.2).",
+ "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.2).",
+ "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.2).",
+ "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.2)."
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "12.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/Illuminate/Collections/functions.php",
+ "src/Illuminate/Collections/helpers.php",
+ "src/Illuminate/Events/functions.php",
+ "src/Illuminate/Filesystem/functions.php",
+ "src/Illuminate/Foundation/helpers.php",
+ "src/Illuminate/Log/functions.php",
+ "src/Illuminate/Support/functions.php",
+ "src/Illuminate/Support/helpers.php"
+ ],
+ "psr-4": {
+ "Illuminate\\": "src/Illuminate/",
+ "Illuminate\\Support\\": [
+ "src/Illuminate/Macroable/",
+ "src/Illuminate/Collections/",
+ "src/Illuminate/Conditionable/"
+ ]
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
+ }
+ ],
+ "description": "The Laravel Framework.",
+ "homepage": "https://laravel.com",
+ "keywords": [
+ "framework",
+ "laravel"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/framework/issues",
+ "source": "https://github.com/laravel/framework"
+ },
+ "time": "2025-06-18T12:56:23+00:00"
+ },
+ {
+ "name": "laravel/prompts",
+ "version": "v0.3.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/prompts.git",
+ "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/prompts/zipball/57b8f7efe40333cdb925700891c7d7465325d3b1",
+ "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1",
+ "shasum": ""
+ },
+ "require": {
+ "composer-runtime-api": "^2.2",
+ "ext-mbstring": "*",
+ "php": "^8.1",
+ "symfony/console": "^6.2|^7.0"
+ },
+ "conflict": {
+ "illuminate/console": ">=10.17.0 <10.25.0",
+ "laravel/framework": ">=10.17.0 <10.25.0"
+ },
+ "require-dev": {
+ "illuminate/collections": "^10.0|^11.0|^12.0",
+ "mockery/mockery": "^1.5",
+ "pestphp/pest": "^2.3|^3.4",
+ "phpstan/phpstan": "^1.11",
+ "phpstan/phpstan-mockery": "^1.1"
+ },
+ "suggest": {
+ "ext-pcntl": "Required for the spinner to be animated."
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "0.3.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/helpers.php"
+ ],
+ "psr-4": {
+ "Laravel\\Prompts\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "Add beautiful and user-friendly forms to your command-line applications.",
+ "support": {
+ "issues": "https://github.com/laravel/prompts/issues",
+ "source": "https://github.com/laravel/prompts/tree/v0.3.5"
+ },
+ "time": "2025-02-11T13:34:40+00:00"
+ },
+ {
+ "name": "laravel/sanctum",
+ "version": "v4.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/sanctum.git",
+ "reference": "a360a6a1fd2400ead4eb9b6a9c1bb272939194f5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/sanctum/zipball/a360a6a1fd2400ead4eb9b6a9c1bb272939194f5",
+ "reference": "a360a6a1fd2400ead4eb9b6a9c1bb272939194f5",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "illuminate/console": "^11.0|^12.0",
+ "illuminate/contracts": "^11.0|^12.0",
+ "illuminate/database": "^11.0|^12.0",
+ "illuminate/support": "^11.0|^12.0",
+ "php": "^8.2",
+ "symfony/console": "^7.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.6",
+ "orchestra/testbench": "^9.0|^10.0",
+ "phpstan/phpstan": "^1.10",
+ "phpunit/phpunit": "^11.3"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Laravel\\Sanctum\\SanctumServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Laravel\\Sanctum\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
+ }
+ ],
+ "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
+ "keywords": [
+ "auth",
+ "laravel",
+ "sanctum"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/sanctum/issues",
+ "source": "https://github.com/laravel/sanctum"
+ },
+ "time": "2025-04-23T13:03:38+00:00"
+ },
+ {
+ "name": "laravel/serializable-closure",
+ "version": "v2.0.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/serializable-closure.git",
+ "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/b352cf0534aa1ae6b4d825d1e762e35d43f8a841",
+ "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1"
+ },
+ "require-dev": {
+ "illuminate/support": "^10.0|^11.0|^12.0",
+ "nesbot/carbon": "^2.67|^3.0",
+ "pestphp/pest": "^2.36|^3.0",
+ "phpstan/phpstan": "^2.0",
+ "symfony/var-dumper": "^6.2.0|^7.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Laravel\\SerializableClosure\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
+ },
+ {
+ "name": "Nuno Maduro",
+ "email": "nuno@laravel.com"
+ }
+ ],
+ "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
+ "keywords": [
+ "closure",
+ "laravel",
+ "serializable"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/serializable-closure/issues",
+ "source": "https://github.com/laravel/serializable-closure"
+ },
+ "time": "2025-03-19T13:51:03+00:00"
+ },
+ {
+ "name": "laravel/tinker",
+ "version": "v2.10.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/tinker.git",
+ "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3",
+ "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
+ "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
+ "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
+ "php": "^7.2.5|^8.0",
+ "psy/psysh": "^0.11.1|^0.12.0",
+ "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "~1.3.3|^1.4.2",
+ "phpstan/phpstan": "^1.10",
+ "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
+ },
+ "suggest": {
+ "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Laravel\\Tinker\\TinkerServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Laravel\\Tinker\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
+ }
+ ],
+ "description": "Powerful REPL for the Laravel framework.",
+ "keywords": [
+ "REPL",
+ "Tinker",
+ "laravel",
+ "psysh"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/tinker/issues",
+ "source": "https://github.com/laravel/tinker/tree/v2.10.1"
+ },
+ "time": "2025-01-27T14:24:01+00:00"
+ },
+ {
+ "name": "laravellegends/pt-br-validator",
+ "version": "12.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/LaravelLegends/pt-br-validator.git",
+ "reference": "9c04c518a99047edb1da4cbf82dabb124da6bc94"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/LaravelLegends/pt-br-validator/zipball/9c04c518a99047edb1da4cbf82dabb124da6bc94",
+ "reference": "9c04c518a99047edb1da4cbf82dabb124da6bc94",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0"
+ },
+ "require-dev": {
+ "orchestra/testbench": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^10.0",
+ "phpunit/phpunit": "^8.3 || ^9.0 || ^11.5.3"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "LaravelLegends\\PtBrValidator\\ValidatorProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "LaravelLegends\\PtBrValidator\\": "src/pt-br-validator"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Wallace de Souza Vizerra",
+ "email": "wallacemaxters@gmail.com"
+ }
+ ],
+ "description": "Uma biblioteca contendo validações de formatos Brasileiros, para o Laravel",
+ "support": {
+ "issues": "https://github.com/LaravelLegends/pt-br-validator/issues",
+ "source": "https://github.com/LaravelLegends/pt-br-validator/tree/12.2.0"
+ },
+ "time": "2025-06-21T21:37:01+00:00"
+ },
+ {
+ "name": "league/commonmark",
+ "version": "2.7.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/commonmark.git",
+ "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
+ "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
+ "shasum": ""
+ },
+ "require": {
+ "ext-mbstring": "*",
+ "league/config": "^1.1.1",
+ "php": "^7.4 || ^8.0",
+ "psr/event-dispatcher": "^1.0",
+ "symfony/deprecation-contracts": "^2.1 || ^3.0",
+ "symfony/polyfill-php80": "^1.16"
+ },
+ "require-dev": {
+ "cebe/markdown": "^1.0",
+ "commonmark/cmark": "0.31.1",
+ "commonmark/commonmark.js": "0.31.1",
+ "composer/package-versions-deprecated": "^1.8",
+ "embed/embed": "^4.4",
+ "erusev/parsedown": "^1.0",
+ "ext-json": "*",
+ "github/gfm": "0.29.0",
+ "michelf/php-markdown": "^1.4 || ^2.0",
+ "nyholm/psr7": "^1.5",
+ "phpstan/phpstan": "^1.8.2",
+ "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
+ "scrutinizer/ocular": "^1.8.1",
+ "symfony/finder": "^5.3 | ^6.0 | ^7.0",
+ "symfony/process": "^5.4 | ^6.0 | ^7.0",
+ "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
+ "unleashedtech/php-coding-standard": "^3.1.1",
+ "vimeo/psalm": "^4.24.0 || ^5.0.0"
+ },
+ "suggest": {
+ "symfony/yaml": "v2.3+ required if using the Front Matter extension"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "2.8-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "League\\CommonMark\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Colin O'Dell",
+ "email": "colinodell@gmail.com",
+ "homepage": "https://www.colinodell.com",
+ "role": "Lead Developer"
+ }
+ ],
+ "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
+ "homepage": "https://commonmark.thephpleague.com",
+ "keywords": [
+ "commonmark",
+ "flavored",
+ "gfm",
+ "github",
+ "github-flavored",
+ "markdown",
+ "md",
+ "parser"
+ ],
+ "support": {
+ "docs": "https://commonmark.thephpleague.com/",
+ "forum": "https://github.com/thephpleague/commonmark/discussions",
+ "issues": "https://github.com/thephpleague/commonmark/issues",
+ "rss": "https://github.com/thephpleague/commonmark/releases.atom",
+ "source": "https://github.com/thephpleague/commonmark"
+ },
+ "funding": [
+ {
+ "url": "https://www.colinodell.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.paypal.me/colinpodell/10.00",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/colinodell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-05-05T12:20:28+00:00"
+ },
+ {
+ "name": "league/config",
+ "version": "v1.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/config.git",
+ "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
+ "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
+ "shasum": ""
+ },
+ "require": {
+ "dflydev/dot-access-data": "^3.0.1",
+ "nette/schema": "^1.2",
+ "php": "^7.4 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.8.2",
+ "phpunit/phpunit": "^9.5.5",
+ "scrutinizer/ocular": "^1.8.1",
+ "unleashedtech/php-coding-standard": "^3.1",
+ "vimeo/psalm": "^4.7.3"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "1.2-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "League\\Config\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Colin O'Dell",
+ "email": "colinodell@gmail.com",
+ "homepage": "https://www.colinodell.com",
+ "role": "Lead Developer"
+ }
+ ],
+ "description": "Define configuration arrays with strict schemas and access values with dot notation",
+ "homepage": "https://config.thephpleague.com",
+ "keywords": [
+ "array",
+ "config",
+ "configuration",
+ "dot",
+ "dot-access",
+ "nested",
+ "schema"
+ ],
+ "support": {
+ "docs": "https://config.thephpleague.com/",
+ "issues": "https://github.com/thephpleague/config/issues",
+ "rss": "https://github.com/thephpleague/config/releases.atom",
+ "source": "https://github.com/thephpleague/config"
+ },
+ "funding": [
+ {
+ "url": "https://www.colinodell.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.paypal.me/colinpodell/10.00",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/colinodell",
+ "type": "github"
+ }
+ ],
+ "time": "2022-12-11T20:36:23+00:00"
+ },
+ {
+ "name": "league/flysystem",
+ "version": "3.30.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/flysystem.git",
+ "reference": "2203e3151755d874bb2943649dae1eb8533ac93e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/2203e3151755d874bb2943649dae1eb8533ac93e",
+ "reference": "2203e3151755d874bb2943649dae1eb8533ac93e",
+ "shasum": ""
+ },
+ "require": {
+ "league/flysystem-local": "^3.0.0",
+ "league/mime-type-detection": "^1.0.0",
+ "php": "^8.0.2"
+ },
+ "conflict": {
+ "async-aws/core": "<1.19.0",
+ "async-aws/s3": "<1.14.0",
+ "aws/aws-sdk-php": "3.209.31 || 3.210.0",
+ "guzzlehttp/guzzle": "<7.0",
+ "guzzlehttp/ringphp": "<1.1.1",
+ "phpseclib/phpseclib": "3.0.15",
+ "symfony/http-client": "<5.2"
+ },
+ "require-dev": {
+ "async-aws/s3": "^1.5 || ^2.0",
+ "async-aws/simple-s3": "^1.1 || ^2.0",
+ "aws/aws-sdk-php": "^3.295.10",
+ "composer/semver": "^3.0",
+ "ext-fileinfo": "*",
+ "ext-ftp": "*",
+ "ext-mongodb": "^1.3|^2",
+ "ext-zip": "*",
+ "friendsofphp/php-cs-fixer": "^3.5",
+ "google/cloud-storage": "^1.23",
+ "guzzlehttp/psr7": "^2.6",
+ "microsoft/azure-storage-blob": "^1.1",
+ "mongodb/mongodb": "^1.2|^2",
+ "phpseclib/phpseclib": "^3.0.36",
+ "phpstan/phpstan": "^1.10",
+ "phpunit/phpunit": "^9.5.11|^10.0",
+ "sabre/dav": "^4.6.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "League\\Flysystem\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Frank de Jonge",
+ "email": "info@frankdejonge.nl"
+ }
+ ],
+ "description": "File storage abstraction for PHP",
+ "keywords": [
+ "WebDAV",
+ "aws",
+ "cloud",
+ "file",
+ "files",
+ "filesystem",
+ "filesystems",
+ "ftp",
+ "s3",
+ "sftp",
+ "storage"
+ ],
+ "support": {
+ "issues": "https://github.com/thephpleague/flysystem/issues",
+ "source": "https://github.com/thephpleague/flysystem/tree/3.30.0"
+ },
+ "time": "2025-06-25T13:29:59+00:00"
+ },
+ {
+ "name": "league/flysystem-local",
+ "version": "3.30.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/flysystem-local.git",
+ "reference": "6691915f77c7fb69adfb87dcd550052dc184ee10"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/6691915f77c7fb69adfb87dcd550052dc184ee10",
+ "reference": "6691915f77c7fb69adfb87dcd550052dc184ee10",
+ "shasum": ""
+ },
+ "require": {
+ "ext-fileinfo": "*",
+ "league/flysystem": "^3.0.0",
+ "league/mime-type-detection": "^1.0.0",
+ "php": "^8.0.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "League\\Flysystem\\Local\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Frank de Jonge",
+ "email": "info@frankdejonge.nl"
+ }
+ ],
+ "description": "Local filesystem adapter for Flysystem.",
+ "keywords": [
+ "Flysystem",
+ "file",
+ "files",
+ "filesystem",
+ "local"
+ ],
+ "support": {
+ "source": "https://github.com/thephpleague/flysystem-local/tree/3.30.0"
+ },
+ "time": "2025-05-21T10:34:19+00:00"
+ },
+ {
+ "name": "league/mime-type-detection",
+ "version": "1.16.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/mime-type-detection.git",
+ "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
+ "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
+ "shasum": ""
+ },
+ "require": {
+ "ext-fileinfo": "*",
+ "php": "^7.4 || ^8.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.2",
+ "phpstan/phpstan": "^0.12.68",
+ "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "League\\MimeTypeDetection\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Frank de Jonge",
+ "email": "info@frankdejonge.nl"
+ }
+ ],
+ "description": "Mime-type detection for Flysystem",
+ "support": {
+ "issues": "https://github.com/thephpleague/mime-type-detection/issues",
+ "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/frankdejonge",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-21T08:32:55+00:00"
+ },
+ {
+ "name": "league/uri",
+ "version": "7.5.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/uri.git",
+ "reference": "81fb5145d2644324614cc532b28efd0215bda430"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430",
+ "reference": "81fb5145d2644324614cc532b28efd0215bda430",
+ "shasum": ""
+ },
+ "require": {
+ "league/uri-interfaces": "^7.5",
+ "php": "^8.1"
+ },
+ "conflict": {
+ "league/uri-schemes": "^1.0"
+ },
+ "suggest": {
+ "ext-bcmath": "to improve IPV4 host parsing",
+ "ext-fileinfo": "to create Data URI from file contennts",
+ "ext-gmp": "to improve IPV4 host parsing",
+ "ext-intl": "to handle IDN host with the best performance",
+ "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
+ "league/uri-components": "Needed to easily manipulate URI objects components",
+ "php-64bit": "to improve IPV4 host parsing",
+ "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "7.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "League\\Uri\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ignace Nyamagana Butera",
+ "email": "nyamsprod@gmail.com",
+ "homepage": "https://nyamsprod.com"
+ }
+ ],
+ "description": "URI manipulation library",
+ "homepage": "https://uri.thephpleague.com",
+ "keywords": [
+ "data-uri",
+ "file-uri",
+ "ftp",
+ "hostname",
+ "http",
+ "https",
+ "middleware",
+ "parse_str",
+ "parse_url",
+ "psr-7",
+ "query-string",
+ "querystring",
+ "rfc3986",
+ "rfc3987",
+ "rfc6570",
+ "uri",
+ "uri-template",
+ "url",
+ "ws"
+ ],
+ "support": {
+ "docs": "https://uri.thephpleague.com",
+ "forum": "https://thephpleague.slack.com",
+ "issues": "https://github.com/thephpleague/uri-src/issues",
+ "source": "https://github.com/thephpleague/uri/tree/7.5.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/nyamsprod",
+ "type": "github"
+ }
+ ],
+ "time": "2024-12-08T08:40:02+00:00"
+ },
+ {
+ "name": "league/uri-interfaces",
+ "version": "7.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/thephpleague/uri-interfaces.git",
+ "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
+ "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
+ "shasum": ""
+ },
+ "require": {
+ "ext-filter": "*",
+ "php": "^8.1",
+ "psr/http-factory": "^1",
+ "psr/http-message": "^1.1 || ^2.0"
+ },
+ "suggest": {
+ "ext-bcmath": "to improve IPV4 host parsing",
+ "ext-gmp": "to improve IPV4 host parsing",
+ "ext-intl": "to handle IDN host with the best performance",
+ "php-64bit": "to improve IPV4 host parsing",
+ "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "7.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "League\\Uri\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ignace Nyamagana Butera",
+ "email": "nyamsprod@gmail.com",
+ "homepage": "https://nyamsprod.com"
+ }
+ ],
+ "description": "Common interfaces and classes for URI representation and interaction",
+ "homepage": "https://uri.thephpleague.com",
+ "keywords": [
+ "data-uri",
+ "file-uri",
+ "ftp",
+ "hostname",
+ "http",
+ "https",
+ "parse_str",
+ "parse_url",
+ "psr-7",
+ "query-string",
+ "querystring",
+ "rfc3986",
+ "rfc3987",
+ "rfc6570",
+ "uri",
+ "url",
+ "ws"
+ ],
+ "support": {
+ "docs": "https://uri.thephpleague.com",
+ "forum": "https://thephpleague.slack.com",
+ "issues": "https://github.com/thephpleague/uri-src/issues",
+ "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/nyamsprod",
+ "type": "github"
+ }
+ ],
+ "time": "2024-12-08T08:18:47+00:00"
+ },
+ {
+ "name": "lecturize/laravel-addresses",
+ "version": "dev-master",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Lecturize/Laravel-Addresses.git",
+ "reference": "74edd9bbc6631faa66664011d8061354e7af6415"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Lecturize/Laravel-Addresses/zipball/74edd9bbc6631faa66664011d8061354e7af6415",
+ "reference": "74edd9bbc6631faa66664011d8061354e7af6415",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "illuminate/contracts": "^10.0||^11.0||^12.0",
+ "php": "^8.2",
+ "spatie/laravel-package-tools": "^1.16",
+ "webpatser/laravel-countries": "^1.5",
+ "webpatser/laravel-uuid": "^4.0"
+ },
+ "require-dev": {
+ "larastan/larastan": "^2.9||^3.0",
+ "laravel/pint": "^1.14",
+ "nunomaduro/collision": "^8.1.1||^7.10.0",
+ "orchestra/testbench": "^10.0.0||^9.0.0||^8.22.0",
+ "pestphp/pest": "^3.0",
+ "pestphp/pest-plugin-arch": "^3.0",
+ "pestphp/pest-plugin-laravel": "^3.0",
+ "phpstan/extension-installer": "^1.3||^2.0",
+ "phpstan/phpstan-deprecation-rules": "^1.1||^2.0",
+ "phpstan/phpstan-phpunit": "^1.3||^2.0",
+ "spatie/laravel-ray": "^1.35"
+ },
+ "default-branch": true,
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "aliases": {
+ "Address": "Lecturize\\Addresses\\Facades\\Address"
+ },
+ "providers": [
+ "Lecturize\\Addresses\\AddressesServiceProvider"
+ ]
+ },
+ "branch-alias": {
+ "dev-master": "1.3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Lecturize\\Addresses\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "authors": [
+ {
+ "name": "Alexander Manfred Poellmann",
+ "role": "developer"
+ }
+ ],
+ "description": "Simple address and contact management for Laravel.",
+ "homepage": "https://github.com/Lecturize/Laravel-Addresses",
+ "keywords": [
+ "addresses",
+ "contacts",
+ "laravel",
+ "lecturize"
+ ],
+ "support": {
+ "issues": "https://github.com/Lecturize/Laravel-Addresses/issues",
+ "source": "https://github.com/Lecturize/Laravel-Addresses/tree/master"
+ },
+ "time": "2025-04-06T09:04:22+00:00"
+ },
+ {
+ "name": "monolog/monolog",
+ "version": "3.9.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Seldaek/monolog.git",
+ "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
+ "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "psr/log": "^2.0 || ^3.0"
+ },
+ "provide": {
+ "psr/log-implementation": "3.0.0"
+ },
+ "require-dev": {
+ "aws/aws-sdk-php": "^3.0",
+ "doctrine/couchdb": "~1.0@dev",
+ "elasticsearch/elasticsearch": "^7 || ^8",
+ "ext-json": "*",
+ "graylog2/gelf-php": "^1.4.2 || ^2.0",
+ "guzzlehttp/guzzle": "^7.4.5",
+ "guzzlehttp/psr7": "^2.2",
+ "mongodb/mongodb": "^1.8",
+ "php-amqplib/php-amqplib": "~2.4 || ^3",
+ "php-console/php-console": "^3.1.8",
+ "phpstan/phpstan": "^2",
+ "phpstan/phpstan-deprecation-rules": "^2",
+ "phpstan/phpstan-strict-rules": "^2",
+ "phpunit/phpunit": "^10.5.17 || ^11.0.7",
+ "predis/predis": "^1.1 || ^2",
+ "rollbar/rollbar": "^4.0",
+ "ruflin/elastica": "^7 || ^8",
+ "symfony/mailer": "^5.4 || ^6",
+ "symfony/mime": "^5.4 || ^6"
+ },
+ "suggest": {
+ "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
+ "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
+ "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
+ "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
+ "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
+ "ext-mbstring": "Allow to work properly with unicode symbols",
+ "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
+ "ext-openssl": "Required to send log messages using SSL",
+ "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
+ "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
+ "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
+ "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
+ "rollbar/rollbar": "Allow sending log messages to Rollbar",
+ "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Monolog\\": "src/Monolog"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "https://seld.be"
+ }
+ ],
+ "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
+ "homepage": "https://github.com/Seldaek/monolog",
+ "keywords": [
+ "log",
+ "logging",
+ "psr-3"
+ ],
+ "support": {
+ "issues": "https://github.com/Seldaek/monolog/issues",
+ "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/Seldaek",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-03-24T10:02:05+00:00"
+ },
+ {
+ "name": "nesbot/carbon",
+ "version": "3.10.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/CarbonPHP/carbon.git",
+ "reference": "1fd1935b2d90aef2f093c5e35f7ae1257c448d00"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/1fd1935b2d90aef2f093c5e35f7ae1257c448d00",
+ "reference": "1fd1935b2d90aef2f093c5e35f7ae1257c448d00",
+ "shasum": ""
+ },
+ "require": {
+ "carbonphp/carbon-doctrine-types": "<100.0",
+ "ext-json": "*",
+ "php": "^8.1",
+ "psr/clock": "^1.0",
+ "symfony/clock": "^6.3.12 || ^7.0",
+ "symfony/polyfill-mbstring": "^1.0",
+ "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0"
+ },
+ "provide": {
+ "psr/clock-implementation": "1.0"
+ },
+ "require-dev": {
+ "doctrine/dbal": "^3.6.3 || ^4.0",
+ "doctrine/orm": "^2.15.2 || ^3.0",
+ "friendsofphp/php-cs-fixer": "^3.75.0",
+ "kylekatarnls/multi-tester": "^2.5.3",
+ "phpmd/phpmd": "^2.15.0",
+ "phpstan/extension-installer": "^1.4.3",
+ "phpstan/phpstan": "^2.1.17",
+ "phpunit/phpunit": "^10.5.46",
+ "squizlabs/php_codesniffer": "^3.13.0"
+ },
+ "bin": [
+ "bin/carbon"
+ ],
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Carbon\\Laravel\\ServiceProvider"
+ ]
+ },
+ "phpstan": {
+ "includes": [
+ "extension.neon"
+ ]
+ },
+ "branch-alias": {
+ "dev-2.x": "2.x-dev",
+ "dev-master": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Carbon\\": "src/Carbon/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Brian Nesbitt",
+ "email": "brian@nesbot.com",
+ "homepage": "https://markido.com"
+ },
+ {
+ "name": "kylekatarnls",
+ "homepage": "https://github.com/kylekatarnls"
+ }
+ ],
+ "description": "An API extension for DateTime that supports 281 different languages.",
+ "homepage": "https://carbon.nesbot.com",
+ "keywords": [
+ "date",
+ "datetime",
+ "time"
+ ],
+ "support": {
+ "docs": "https://carbon.nesbot.com/docs",
+ "issues": "https://github.com/CarbonPHP/carbon/issues",
+ "source": "https://github.com/CarbonPHP/carbon"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/kylekatarnls",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/Carbon#sponsor",
+ "type": "opencollective"
+ },
+ {
+ "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-06-21T15:19:35+00:00"
+ },
+ {
+ "name": "nette/schema",
+ "version": "v1.3.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nette/schema.git",
+ "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
+ "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
+ "shasum": ""
+ },
+ "require": {
+ "nette/utils": "^4.0",
+ "php": "8.1 - 8.4"
+ },
+ "require-dev": {
+ "nette/tester": "^2.5.2",
+ "phpstan/phpstan-nette": "^1.0",
+ "tracy/tracy": "^2.8"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.3-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause",
+ "GPL-2.0-only",
+ "GPL-3.0-only"
+ ],
+ "authors": [
+ {
+ "name": "David Grudl",
+ "homepage": "https://davidgrudl.com"
+ },
+ {
+ "name": "Nette Community",
+ "homepage": "https://nette.org/contributors"
+ }
+ ],
+ "description": "📐 Nette Schema: validating data structures against a given Schema.",
+ "homepage": "https://nette.org",
+ "keywords": [
+ "config",
+ "nette"
+ ],
+ "support": {
+ "issues": "https://github.com/nette/schema/issues",
+ "source": "https://github.com/nette/schema/tree/v1.3.2"
+ },
+ "time": "2024-10-06T23:10:23+00:00"
+ },
+ {
+ "name": "nette/utils",
+ "version": "v4.0.7",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nette/utils.git",
+ "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nette/utils/zipball/e67c4061eb40b9c113b218214e42cb5a0dda28f2",
+ "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2",
+ "shasum": ""
+ },
+ "require": {
+ "php": "8.0 - 8.4"
+ },
+ "conflict": {
+ "nette/finder": "<3",
+ "nette/schema": "<1.2.2"
+ },
+ "require-dev": {
+ "jetbrains/phpstorm-attributes": "dev-master",
+ "nette/tester": "^2.5",
+ "phpstan/phpstan": "^1.0",
+ "tracy/tracy": "^2.9"
+ },
+ "suggest": {
+ "ext-gd": "to use Image",
+ "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
+ "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
+ "ext-json": "to use Nette\\Utils\\Json",
+ "ext-mbstring": "to use Strings::lower() etc...",
+ "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause",
+ "GPL-2.0-only",
+ "GPL-3.0-only"
+ ],
+ "authors": [
+ {
+ "name": "David Grudl",
+ "homepage": "https://davidgrudl.com"
+ },
+ {
+ "name": "Nette Community",
+ "homepage": "https://nette.org/contributors"
+ }
+ ],
+ "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
+ "homepage": "https://nette.org",
+ "keywords": [
+ "array",
+ "core",
+ "datetime",
+ "images",
+ "json",
+ "nette",
+ "paginator",
+ "password",
+ "slugify",
+ "string",
+ "unicode",
+ "utf-8",
+ "utility",
+ "validation"
+ ],
+ "support": {
+ "issues": "https://github.com/nette/utils/issues",
+ "source": "https://github.com/nette/utils/tree/v4.0.7"
+ },
+ "time": "2025-06-03T04:55:08+00:00"
+ },
+ {
+ "name": "nikic/php-parser",
+ "version": "v5.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nikic/PHP-Parser.git",
+ "reference": "ae59794362fe85e051a58ad36b289443f57be7a9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9",
+ "reference": "ae59794362fe85e051a58ad36b289443f57be7a9",
+ "shasum": ""
+ },
+ "require": {
+ "ext-ctype": "*",
+ "ext-json": "*",
+ "ext-tokenizer": "*",
+ "php": ">=7.4"
+ },
+ "require-dev": {
+ "ircmaxell/php-yacc": "^0.0.7",
+ "phpunit/phpunit": "^9.0"
+ },
+ "bin": [
+ "bin/php-parse"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "5.0-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PhpParser\\": "lib/PhpParser"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Nikita Popov"
+ }
+ ],
+ "description": "A PHP parser written in PHP",
+ "keywords": [
+ "parser",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/nikic/PHP-Parser/issues",
+ "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0"
+ },
+ "time": "2025-05-31T08:24:38+00:00"
+ },
+ {
+ "name": "nunomaduro/termwind",
+ "version": "v2.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nunomaduro/termwind.git",
+ "reference": "dfa08f390e509967a15c22493dc0bac5733d9123"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/dfa08f390e509967a15c22493dc0bac5733d9123",
+ "reference": "dfa08f390e509967a15c22493dc0bac5733d9123",
+ "shasum": ""
+ },
+ "require": {
+ "ext-mbstring": "*",
+ "php": "^8.2",
+ "symfony/console": "^7.2.6"
+ },
+ "require-dev": {
+ "illuminate/console": "^11.44.7",
+ "laravel/pint": "^1.22.0",
+ "mockery/mockery": "^1.6.12",
+ "pestphp/pest": "^2.36.0 || ^3.8.2",
+ "phpstan/phpstan": "^1.12.25",
+ "phpstan/phpstan-strict-rules": "^1.6.2",
+ "symfony/var-dumper": "^7.2.6",
+ "thecodingmachine/phpstan-strict-rules": "^1.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Termwind\\Laravel\\TermwindServiceProvider"
+ ]
+ },
+ "branch-alias": {
+ "dev-2.x": "2.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/Functions.php"
+ ],
+ "psr-4": {
+ "Termwind\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nuno Maduro",
+ "email": "enunomaduro@gmail.com"
+ }
+ ],
+ "description": "Its like Tailwind CSS, but for the console.",
+ "keywords": [
+ "cli",
+ "console",
+ "css",
+ "package",
+ "php",
+ "style"
+ ],
+ "support": {
+ "issues": "https://github.com/nunomaduro/termwind/issues",
+ "source": "https://github.com/nunomaduro/termwind/tree/v2.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.com/paypalme/enunomaduro",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/nunomaduro",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/xiCO2k",
+ "type": "github"
+ }
+ ],
+ "time": "2025-05-08T08:14:37+00:00"
+ },
+ {
+ "name": "phpoption/phpoption",
+ "version": "1.9.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/schmittjoh/php-option.git",
+ "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
+ "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2.5 || ^8.0"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
+ },
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ },
+ "branch-alias": {
+ "dev-master": "1.9-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "PhpOption\\": "src/PhpOption/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Johannes M. Schmitt",
+ "email": "schmittjoh@gmail.com",
+ "homepage": "https://github.com/schmittjoh"
+ },
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ }
+ ],
+ "description": "Option Type for PHP",
+ "keywords": [
+ "language",
+ "option",
+ "php",
+ "type"
+ ],
+ "support": {
+ "issues": "https://github.com/schmittjoh/php-option/issues",
+ "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-07-20T21:41:07+00:00"
+ },
+ {
+ "name": "predis/predis",
+ "version": "v3.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/predis/predis.git",
+ "reference": "34fb0a7da0330df1bab4280fcac4afdeeccc3edf"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/predis/predis/zipball/34fb0a7da0330df1bab4280fcac4afdeeccc3edf",
+ "reference": "34fb0a7da0330df1bab4280fcac4afdeeccc3edf",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0",
+ "psr/http-message": "^1.0|^2.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.3",
+ "phpstan/phpstan": "^1.9",
+ "phpunit/phpcov": "^6.0 || ^8.0",
+ "phpunit/phpunit": "^8.0 || ~9.4.4"
+ },
+ "suggest": {
+ "ext-relay": "Faster connection with in-memory caching (>=0.6.2)"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Predis\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Till Krüss",
+ "homepage": "https://till.im",
+ "role": "Maintainer"
+ }
+ ],
+ "description": "A flexible and feature-complete Redis/Valkey client for PHP.",
+ "homepage": "http://github.com/predis/predis",
+ "keywords": [
+ "nosql",
+ "predis",
+ "redis"
+ ],
+ "support": {
+ "issues": "https://github.com/predis/predis/issues",
+ "source": "https://github.com/predis/predis/tree/v3.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/tillkruss",
+ "type": "github"
+ }
+ ],
+ "time": "2025-05-16T18:30:32+00:00"
+ },
+ {
+ "name": "psr/clock",
+ "version": "1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/clock.git",
+ "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
+ "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0 || ^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Psr\\Clock\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for reading the clock.",
+ "homepage": "https://github.com/php-fig/clock",
+ "keywords": [
+ "clock",
+ "now",
+ "psr",
+ "psr-20",
+ "time"
+ ],
+ "support": {
+ "issues": "https://github.com/php-fig/clock/issues",
+ "source": "https://github.com/php-fig/clock/tree/1.0.0"
+ },
+ "time": "2022-11-25T14:36:26+00:00"
+ },
+ {
+ "name": "psr/container",
+ "version": "2.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/container.git",
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.4.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Container\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common Container Interface (PHP FIG PSR-11)",
+ "homepage": "https://github.com/php-fig/container",
+ "keywords": [
+ "PSR-11",
+ "container",
+ "container-interface",
+ "container-interop",
+ "psr"
+ ],
+ "support": {
+ "issues": "https://github.com/php-fig/container/issues",
+ "source": "https://github.com/php-fig/container/tree/2.0.2"
+ },
+ "time": "2021-11-05T16:47:00+00:00"
+ },
+ {
+ "name": "psr/event-dispatcher",
+ "version": "1.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/event-dispatcher.git",
+ "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
+ "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\EventDispatcher\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "http://www.php-fig.org/"
+ }
+ ],
+ "description": "Standard interfaces for event handling.",
+ "keywords": [
+ "events",
+ "psr",
+ "psr-14"
+ ],
+ "support": {
+ "issues": "https://github.com/php-fig/event-dispatcher/issues",
+ "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
+ },
+ "time": "2019-01-08T18:20:26+00:00"
+ },
+ {
+ "name": "psr/http-client",
+ "version": "1.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/http-client.git",
+ "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
+ "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0 || ^8.0",
+ "psr/http-message": "^1.0 || ^2.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Http\\Client\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for HTTP clients",
+ "homepage": "https://github.com/php-fig/http-client",
+ "keywords": [
+ "http",
+ "http-client",
+ "psr",
+ "psr-18"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/http-client"
+ },
+ "time": "2023-09-23T14:17:50+00:00"
+ },
+ {
+ "name": "psr/http-factory",
+ "version": "1.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/http-factory.git",
+ "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
+ "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1",
+ "psr/http-message": "^1.0 || ^2.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Http\\Message\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
+ "keywords": [
+ "factory",
+ "http",
+ "message",
+ "psr",
+ "psr-17",
+ "psr-7",
+ "request",
+ "response"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/http-factory"
+ },
+ "time": "2024-04-15T12:06:14+00:00"
+ },
+ {
+ "name": "psr/http-message",
+ "version": "2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/http-message.git",
+ "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
+ "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Http\\Message\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for HTTP messages",
+ "homepage": "https://github.com/php-fig/http-message",
+ "keywords": [
+ "http",
+ "http-message",
+ "psr",
+ "psr-7",
+ "request",
+ "response"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/http-message/tree/2.0"
+ },
+ "time": "2023-04-04T09:54:51+00:00"
+ },
+ {
+ "name": "psr/log",
+ "version": "3.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/log.git",
+ "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
+ "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\Log\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interface for logging libraries",
+ "homepage": "https://github.com/php-fig/log",
+ "keywords": [
+ "log",
+ "psr",
+ "psr-3"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/log/tree/3.0.2"
+ },
+ "time": "2024-09-11T13:17:53+00:00"
+ },
+ {
+ "name": "psr/simple-cache",
+ "version": "3.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/simple-cache.git",
+ "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
+ "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.0.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "3.0.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Psr\\SimpleCache\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common interfaces for simple caching",
+ "keywords": [
+ "cache",
+ "caching",
+ "psr",
+ "psr-16",
+ "simple-cache"
+ ],
+ "support": {
+ "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
+ },
+ "time": "2021-10-29T13:26:27+00:00"
+ },
+ {
+ "name": "psy/psysh",
+ "version": "v0.12.9",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/bobthecow/psysh.git",
+ "reference": "1b801844becfe648985372cb4b12ad6840245ace"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/bobthecow/psysh/zipball/1b801844becfe648985372cb4b12ad6840245ace",
+ "reference": "1b801844becfe648985372cb4b12ad6840245ace",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "ext-tokenizer": "*",
+ "nikic/php-parser": "^5.0 || ^4.0",
+ "php": "^8.0 || ^7.4",
+ "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
+ "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
+ },
+ "conflict": {
+ "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.2"
+ },
+ "suggest": {
+ "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
+ "ext-pdo-sqlite": "The doc command requires SQLite to work.",
+ "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
+ },
+ "bin": [
+ "bin/psysh"
+ ],
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": false,
+ "forward-command": false
+ },
+ "branch-alias": {
+ "dev-main": "0.12.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/functions.php"
+ ],
+ "psr-4": {
+ "Psy\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Justin Hileman",
+ "email": "justin@justinhileman.info",
+ "homepage": "http://justinhileman.com"
+ }
+ ],
+ "description": "An interactive shell for modern PHP.",
+ "homepage": "http://psysh.org",
+ "keywords": [
+ "REPL",
+ "console",
+ "interactive",
+ "shell"
+ ],
+ "support": {
+ "issues": "https://github.com/bobthecow/psysh/issues",
+ "source": "https://github.com/bobthecow/psysh/tree/v0.12.9"
+ },
+ "time": "2025-06-23T02:35:06+00:00"
+ },
+ {
+ "name": "rafaellaurindo/laravel-brasilapi",
+ "version": "v1.0.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/rafaellaurindo/laravel-brasilapi.git",
+ "reference": "64afdce4850d039cab49c369347232859d147b72"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/rafaellaurindo/laravel-brasilapi/zipball/64afdce4850d039cab49c369347232859d147b72",
+ "reference": "64afdce4850d039cab49c369347232859d147b72",
+ "shasum": ""
+ },
+ "require": {
+ "guzzlehttp/guzzle": "^7.4",
+ "laravel/framework": "^8.0|^9.0|^10.0|^11.0|^12.0",
+ "php": "^8.0"
+ },
+ "require-dev": {
+ "brianium/paratest": "^6.3|^7.0|^7.5",
+ "friendsofphp/php-cs-fixer": "^3.2",
+ "nunomaduro/collision": "^5.10|^6.0|^7.0",
+ "orchestra/testbench": "^6.23|^7.0|^8.0",
+ "phpunit/phpunit": "^9.5|^10.0|^11.5.3|^12.0.1"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "aliases": {
+ "BrasilApi": "RafaelLaurindo\\BrasilApi\\BrasilApiFacade"
+ },
+ "providers": [
+ "RafaelLaurindo\\BrasilApi\\BrasilApiServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/helpers.php"
+ ],
+ "psr-4": {
+ "RafaelLaurindo\\BrasilApi\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Rafael Laurindo",
+ "email": "contato@rafaellaurindo.dev",
+ "homepage": "https://github.com/rafaellaurindo"
+ }
+ ],
+ "description": "A Laravel package that provides a simple way to use the Brasil API endpoints",
+ "homepage": "https://github.com/rafaellaurindo/laravel-brasilapi",
+ "keywords": [
+ "BrasilApi",
+ "brasil",
+ "cep",
+ "laravel",
+ "rafaellaurindo"
+ ],
+ "support": {
+ "issues": "https://github.com/rafaellaurindo/laravel-brasilapi/issues",
+ "source": "https://github.com/rafaellaurindo/laravel-brasilapi/tree/v1.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/rafaellaurindo",
+ "type": "github"
+ }
+ ],
+ "time": "2025-04-26T18:27:17+00:00"
+ },
+ {
+ "name": "ralouphie/getallheaders",
+ "version": "3.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ralouphie/getallheaders.git",
+ "reference": "120b605dfeb996808c31b6477290a714d356e822"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
+ "reference": "120b605dfeb996808c31b6477290a714d356e822",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.6"
+ },
+ "require-dev": {
+ "php-coveralls/php-coveralls": "^2.1",
+ "phpunit/phpunit": "^5 || ^6.5"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "src/getallheaders.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ralph Khattar",
+ "email": "ralph.khattar@gmail.com"
+ }
+ ],
+ "description": "A polyfill for getallheaders.",
+ "support": {
+ "issues": "https://github.com/ralouphie/getallheaders/issues",
+ "source": "https://github.com/ralouphie/getallheaders/tree/develop"
+ },
+ "time": "2019-03-08T08:55:37+00:00"
+ },
+ {
+ "name": "ramsey/collection",
+ "version": "2.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ramsey/collection.git",
+ "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
+ "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^8.1"
+ },
+ "require-dev": {
+ "captainhook/plugin-composer": "^5.3",
+ "ergebnis/composer-normalize": "^2.45",
+ "fakerphp/faker": "^1.24",
+ "hamcrest/hamcrest-php": "^2.0",
+ "jangregor/phpstan-prophecy": "^2.1",
+ "mockery/mockery": "^1.6",
+ "php-parallel-lint/php-console-highlighter": "^1.0",
+ "php-parallel-lint/php-parallel-lint": "^1.4",
+ "phpspec/prophecy-phpunit": "^2.3",
+ "phpstan/extension-installer": "^1.4",
+ "phpstan/phpstan": "^2.1",
+ "phpstan/phpstan-mockery": "^2.0",
+ "phpstan/phpstan-phpunit": "^2.0",
+ "phpunit/phpunit": "^10.5",
+ "ramsey/coding-standard": "^2.3",
+ "ramsey/conventional-commits": "^1.6",
+ "roave/security-advisories": "dev-latest"
+ },
+ "type": "library",
+ "extra": {
+ "captainhook": {
+ "force-install": true
+ },
+ "ramsey/conventional-commits": {
+ "configFile": "conventional-commits.json"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Ramsey\\Collection\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ben Ramsey",
+ "email": "ben@benramsey.com",
+ "homepage": "https://benramsey.com"
+ }
+ ],
+ "description": "A PHP library for representing and manipulating collections.",
+ "keywords": [
+ "array",
+ "collection",
+ "hash",
+ "map",
+ "queue",
+ "set"
+ ],
+ "support": {
+ "issues": "https://github.com/ramsey/collection/issues",
+ "source": "https://github.com/ramsey/collection/tree/2.1.1"
+ },
+ "time": "2025-03-22T05:38:12+00:00"
+ },
+ {
+ "name": "ramsey/uuid",
+ "version": "4.9.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ramsey/uuid.git",
+ "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
+ "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
+ "shasum": ""
+ },
+ "require": {
+ "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
+ "php": "^8.0",
+ "ramsey/collection": "^1.2 || ^2.0"
+ },
+ "replace": {
+ "rhumsaa/uuid": "self.version"
+ },
+ "require-dev": {
+ "captainhook/captainhook": "^5.25",
+ "captainhook/plugin-composer": "^5.3",
+ "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
+ "ergebnis/composer-normalize": "^2.47",
+ "mockery/mockery": "^1.6",
+ "paragonie/random-lib": "^2",
+ "php-mock/php-mock": "^2.6",
+ "php-mock/php-mock-mockery": "^1.5",
+ "php-parallel-lint/php-parallel-lint": "^1.4.0",
+ "phpbench/phpbench": "^1.2.14",
+ "phpstan/extension-installer": "^1.4",
+ "phpstan/phpstan": "^2.1",
+ "phpstan/phpstan-mockery": "^2.0",
+ "phpstan/phpstan-phpunit": "^2.0",
+ "phpunit/phpunit": "^9.6",
+ "slevomat/coding-standard": "^8.18",
+ "squizlabs/php_codesniffer": "^3.13"
+ },
+ "suggest": {
+ "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
+ "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
+ "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
+ "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
+ "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
+ },
+ "type": "library",
+ "extra": {
+ "captainhook": {
+ "force-install": true
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/functions.php"
+ ],
+ "psr-4": {
+ "Ramsey\\Uuid\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
+ "keywords": [
+ "guid",
+ "identifier",
+ "uuid"
+ ],
+ "support": {
+ "issues": "https://github.com/ramsey/uuid/issues",
+ "source": "https://github.com/ramsey/uuid/tree/4.9.0"
+ },
+ "time": "2025-06-25T14:20:11+00:00"
+ },
+ {
+ "name": "spatie/laravel-package-tools",
+ "version": "1.92.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spatie/laravel-package-tools.git",
+ "reference": "d20b1969f836d210459b78683d85c9cd5c5f508c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/d20b1969f836d210459b78683d85c9cd5c5f508c",
+ "reference": "d20b1969f836d210459b78683d85c9cd5c5f508c",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/contracts": "^9.28|^10.0|^11.0|^12.0",
+ "php": "^8.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.5",
+ "orchestra/testbench": "^7.7|^8.0|^9.0|^10.0",
+ "pestphp/pest": "^1.23|^2.1|^3.1",
+ "phpunit/php-code-coverage": "^9.0|^10.0|^11.0",
+ "phpunit/phpunit": "^9.5.24|^10.5|^11.5",
+ "spatie/pest-plugin-test-time": "^1.1|^2.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Spatie\\LaravelPackageTools\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Freek Van der Herten",
+ "email": "freek@spatie.be",
+ "role": "Developer"
+ }
+ ],
+ "description": "Tools for creating Laravel packages",
+ "homepage": "https://github.com/spatie/laravel-package-tools",
+ "keywords": [
+ "laravel-package-tools",
+ "spatie"
+ ],
+ "support": {
+ "issues": "https://github.com/spatie/laravel-package-tools/issues",
+ "source": "https://github.com/spatie/laravel-package-tools/tree/1.92.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/spatie",
+ "type": "github"
+ }
+ ],
+ "time": "2025-04-11T15:27:14+00:00"
+ },
+ {
+ "name": "symfony/clock",
+ "version": "v7.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/clock.git",
+ "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
+ "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "psr/clock": "^1.0",
+ "symfony/polyfill-php83": "^1.28"
+ },
+ "provide": {
+ "psr/clock-implementation": "1.0"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "Resources/now.php"
+ ],
+ "psr-4": {
+ "Symfony\\Component\\Clock\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Decouples applications from the system clock",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "clock",
+ "psr20",
+ "time"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/clock/tree/v7.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-25T14:21:43+00:00"
+ },
+ {
+ "name": "symfony/console",
+ "version": "v7.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/console.git",
+ "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/console/zipball/9e27aecde8f506ba0fd1d9989620c04a87697101",
+ "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/string": "^7.2"
+ },
+ "conflict": {
+ "symfony/dependency-injection": "<6.4",
+ "symfony/dotenv": "<6.4",
+ "symfony/event-dispatcher": "<6.4",
+ "symfony/lock": "<6.4",
+ "symfony/process": "<6.4"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0|2.0|3.0"
+ },
+ "require-dev": {
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^6.4|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/event-dispatcher": "^6.4|^7.0",
+ "symfony/http-foundation": "^6.4|^7.0",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/lock": "^6.4|^7.0",
+ "symfony/messenger": "^6.4|^7.0",
+ "symfony/process": "^6.4|^7.0",
+ "symfony/stopwatch": "^6.4|^7.0",
+ "symfony/var-dumper": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Console\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Eases the creation of beautiful and testable command line interfaces",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "cli",
+ "command-line",
+ "console",
+ "terminal"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/console/tree/v7.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-06-27T19:55:54+00:00"
+ },
+ {
+ "name": "symfony/css-selector",
+ "version": "v7.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/css-selector.git",
+ "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
+ "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\CssSelector\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Jean-François Simon",
+ "email": "jeanfrancois.simon@sensiolabs.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Converts CSS selectors to XPath expressions",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/css-selector/tree/v7.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-25T14:21:43+00:00"
+ },
+ {
+ "name": "symfony/deprecation-contracts",
+ "version": "v3.6.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/deprecation-contracts.git",
+ "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
+ "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/contracts",
+ "name": "symfony/contracts"
+ },
+ "branch-alias": {
+ "dev-main": "3.6-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "function.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "A generic function and convention to trigger deprecation notices",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-25T14:21:43+00:00"
+ },
+ {
+ "name": "symfony/error-handler",
+ "version": "v7.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/error-handler.git",
+ "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/error-handler/zipball/35b55b166f6752d6aaf21aa042fc5ed280fce235",
+ "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "psr/log": "^1|^2|^3",
+ "symfony/var-dumper": "^6.4|^7.0"
+ },
+ "conflict": {
+ "symfony/deprecation-contracts": "<2.5",
+ "symfony/http-kernel": "<6.4"
+ },
+ "require-dev": {
+ "symfony/console": "^6.4|^7.0",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/serializer": "^6.4|^7.0",
+ "symfony/webpack-encore-bundle": "^1.0|^2.0"
+ },
+ "bin": [
+ "Resources/bin/patch-type-declarations"
+ ],
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\ErrorHandler\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides tools to manage errors and ease debugging PHP code",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/error-handler/tree/v7.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-06-13T07:48:40+00:00"
+ },
+ {
+ "name": "symfony/event-dispatcher",
+ "version": "v7.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/event-dispatcher.git",
+ "reference": "497f73ac996a598c92409b44ac43b6690c4f666d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d",
+ "reference": "497f73ac996a598c92409b44ac43b6690c4f666d",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/event-dispatcher-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "symfony/dependency-injection": "<6.4",
+ "symfony/service-contracts": "<2.5"
+ },
+ "provide": {
+ "psr/event-dispatcher-implementation": "1.0",
+ "symfony/event-dispatcher-implementation": "2.0|3.0"
+ },
+ "require-dev": {
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^6.4|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/error-handler": "^6.4|^7.0",
+ "symfony/expression-language": "^6.4|^7.0",
+ "symfony/http-foundation": "^6.4|^7.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/stopwatch": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\EventDispatcher\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-04-22T09:11:45+00:00"
+ },
+ {
+ "name": "symfony/event-dispatcher-contracts",
+ "version": "v3.6.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/event-dispatcher-contracts.git",
+ "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
+ "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "psr/event-dispatcher": "^1"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/contracts",
+ "name": "symfony/contracts"
+ },
+ "branch-alias": {
+ "dev-main": "3.6-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\EventDispatcher\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to dispatching event",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-25T14:21:43+00:00"
+ },
+ {
+ "name": "symfony/finder",
+ "version": "v7.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/finder.git",
+ "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/ec2344cf77a48253bbca6939aa3d2477773ea63d",
+ "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "symfony/filesystem": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Finder\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Finds files and directories via an intuitive fluent interface",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/finder/tree/v7.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-12-30T19:00:26+00:00"
+ },
+ {
+ "name": "symfony/http-foundation",
+ "version": "v7.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/http-foundation.git",
+ "reference": "23dd60256610c86a3414575b70c596e5deff6ed9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/23dd60256610c86a3414575b70c596e5deff6ed9",
+ "reference": "23dd60256610c86a3414575b70c596e5deff6ed9",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/deprecation-contracts": "^2.5|^3.0",
+ "symfony/polyfill-mbstring": "~1.1",
+ "symfony/polyfill-php83": "^1.27"
+ },
+ "conflict": {
+ "doctrine/dbal": "<3.6",
+ "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
+ },
+ "require-dev": {
+ "doctrine/dbal": "^3.6|^4",
+ "predis/predis": "^1.1|^2.0",
+ "symfony/cache": "^6.4.12|^7.1.5",
+ "symfony/clock": "^6.4|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/expression-language": "^6.4|^7.0",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/mime": "^6.4|^7.0",
+ "symfony/rate-limiter": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\HttpFoundation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Defines an object-oriented layer for the HTTP specification",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/http-foundation/tree/v7.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-06-23T15:07:14+00:00"
+ },
+ {
+ "name": "symfony/http-kernel",
+ "version": "v7.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/http-kernel.git",
+ "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1644879a66e4aa29c36fe33dfa6c54b450ce1831",
+ "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "psr/log": "^1|^2|^3",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/error-handler": "^6.4|^7.0",
+ "symfony/event-dispatcher": "^7.3",
+ "symfony/http-foundation": "^7.3",
+ "symfony/polyfill-ctype": "^1.8"
+ },
+ "conflict": {
+ "symfony/browser-kit": "<6.4",
+ "symfony/cache": "<6.4",
+ "symfony/config": "<6.4",
+ "symfony/console": "<6.4",
+ "symfony/dependency-injection": "<6.4",
+ "symfony/doctrine-bridge": "<6.4",
+ "symfony/form": "<6.4",
+ "symfony/http-client": "<6.4",
+ "symfony/http-client-contracts": "<2.5",
+ "symfony/mailer": "<6.4",
+ "symfony/messenger": "<6.4",
+ "symfony/translation": "<6.4",
+ "symfony/translation-contracts": "<2.5",
+ "symfony/twig-bridge": "<6.4",
+ "symfony/validator": "<6.4",
+ "symfony/var-dumper": "<6.4",
+ "twig/twig": "<3.12"
+ },
+ "provide": {
+ "psr/log-implementation": "1.0|2.0|3.0"
+ },
+ "require-dev": {
+ "psr/cache": "^1.0|^2.0|^3.0",
+ "symfony/browser-kit": "^6.4|^7.0",
+ "symfony/clock": "^6.4|^7.0",
+ "symfony/config": "^6.4|^7.0",
+ "symfony/console": "^6.4|^7.0",
+ "symfony/css-selector": "^6.4|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/dom-crawler": "^6.4|^7.0",
+ "symfony/expression-language": "^6.4|^7.0",
+ "symfony/finder": "^6.4|^7.0",
+ "symfony/http-client-contracts": "^2.5|^3",
+ "symfony/process": "^6.4|^7.0",
+ "symfony/property-access": "^7.1",
+ "symfony/routing": "^6.4|^7.0",
+ "symfony/serializer": "^7.1",
+ "symfony/stopwatch": "^6.4|^7.0",
+ "symfony/translation": "^6.4|^7.0",
+ "symfony/translation-contracts": "^2.5|^3",
+ "symfony/uid": "^6.4|^7.0",
+ "symfony/validator": "^6.4|^7.0",
+ "symfony/var-dumper": "^6.4|^7.0",
+ "symfony/var-exporter": "^6.4|^7.0",
+ "twig/twig": "^3.12"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\HttpKernel\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides a structured process for converting a Request into a Response",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/http-kernel/tree/v7.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-06-28T08:24:55+00:00"
+ },
+ {
+ "name": "symfony/mailer",
+ "version": "v7.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/mailer.git",
+ "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/mailer/zipball/b5db5105b290bdbea5ab27b89c69effcf1cb3368",
+ "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368",
+ "shasum": ""
+ },
+ "require": {
+ "egulias/email-validator": "^2.1.10|^3|^4",
+ "php": ">=8.2",
+ "psr/event-dispatcher": "^1",
+ "psr/log": "^1|^2|^3",
+ "symfony/event-dispatcher": "^6.4|^7.0",
+ "symfony/mime": "^7.2",
+ "symfony/service-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "symfony/http-client-contracts": "<2.5",
+ "symfony/http-kernel": "<6.4",
+ "symfony/messenger": "<6.4",
+ "symfony/mime": "<6.4",
+ "symfony/twig-bridge": "<6.4"
+ },
+ "require-dev": {
+ "symfony/console": "^6.4|^7.0",
+ "symfony/http-client": "^6.4|^7.0",
+ "symfony/messenger": "^6.4|^7.0",
+ "symfony/twig-bridge": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Mailer\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Helps sending emails",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/mailer/tree/v7.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-06-27T19:55:54+00:00"
+ },
+ {
+ "name": "symfony/mime",
+ "version": "v7.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/mime.git",
+ "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/mime/zipball/0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
+ "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/polyfill-intl-idn": "^1.10",
+ "symfony/polyfill-mbstring": "^1.0"
+ },
+ "conflict": {
+ "egulias/email-validator": "~3.0.0",
+ "phpdocumentor/reflection-docblock": "<3.2.2",
+ "phpdocumentor/type-resolver": "<1.4.0",
+ "symfony/mailer": "<6.4",
+ "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
+ },
+ "require-dev": {
+ "egulias/email-validator": "^2.1.10|^3.1|^4",
+ "league/html-to-markdown": "^5.0",
+ "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/process": "^6.4|^7.0",
+ "symfony/property-access": "^6.4|^7.0",
+ "symfony/property-info": "^6.4|^7.0",
+ "symfony/serializer": "^6.4.3|^7.0.3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Mime\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Allows manipulating MIME messages",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "mime",
+ "mime-type"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/mime/tree/v7.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-02-19T08:51:26+00:00"
+ },
+ {
+ "name": "symfony/polyfill-ctype",
+ "version": "v1.32.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-ctype.git",
+ "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
+ "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "provide": {
+ "ext-ctype": "*"
+ },
+ "suggest": {
+ "ext-ctype": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Ctype\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Gert de Pagter",
+ "email": "BackEndTea@gmail.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for ctype functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "ctype",
+ "polyfill",
+ "portable"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-09T11:45:10+00:00"
+ },
+ {
+ "name": "symfony/polyfill-intl-grapheme",
+ "version": "v1.32.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
+ "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
+ "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for intl's grapheme_* functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "grapheme",
+ "intl",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-09T11:45:10+00:00"
+ },
+ {
+ "name": "symfony/polyfill-intl-idn",
+ "version": "v1.32.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-intl-idn.git",
+ "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
+ "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2",
+ "symfony/polyfill-intl-normalizer": "^1.10"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Intl\\Idn\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Laurent Bassin",
+ "email": "laurent@bassin.info"
+ },
+ {
+ "name": "Trevor Rowbotham",
+ "email": "trevor.rowbotham@pm.me"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "idn",
+ "intl",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-10T14:38:51+00:00"
+ },
+ {
+ "name": "symfony/polyfill-intl-normalizer",
+ "version": "v1.32.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
+ "reference": "3833d7255cc303546435cb650316bff708a1c75c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
+ "reference": "3833d7255cc303546435cb650316bff708a1c75c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "suggest": {
+ "ext-intl": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for intl's Normalizer class and related functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "intl",
+ "normalizer",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-09T11:45:10+00:00"
+ },
+ {
+ "name": "symfony/polyfill-mbstring",
+ "version": "v1.32.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
+ "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
+ "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
+ "shasum": ""
+ },
+ "require": {
+ "ext-iconv": "*",
+ "php": ">=7.2"
+ },
+ "provide": {
+ "ext-mbstring": "*"
+ },
+ "suggest": {
+ "ext-mbstring": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Mbstring\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for the Mbstring extension",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "mbstring",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-12-23T08:48:59+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php80",
+ "version": "v1.32.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php80.git",
+ "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
+ "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php80\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ion Bazan",
+ "email": "ion.bazan@gmail.com"
+ },
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-01-02T08:10:11+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php83",
+ "version": "v1.32.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php83.git",
+ "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
+ "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php83\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-09T11:45:10+00:00"
+ },
+ {
+ "name": "symfony/polyfill-uuid",
+ "version": "v1.32.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-uuid.git",
+ "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
+ "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "provide": {
+ "ext-uuid": "*"
+ },
+ "suggest": {
+ "ext-uuid": "For best performance"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Uuid\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Grégoire Pineau",
+ "email": "lyrixx@lyrixx.info"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for uuid functions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "uuid"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-uuid/tree/v1.32.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-09T11:45:10+00:00"
+ },
+ {
+ "name": "symfony/process",
+ "version": "v7.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/process.git",
+ "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
+ "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Process\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Executes commands in sub-processes",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/process/tree/v7.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-04-17T09:11:12+00:00"
+ },
+ {
+ "name": "symfony/routing",
+ "version": "v7.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/routing.git",
+ "reference": "8e213820c5fea844ecea29203d2a308019007c15"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/8e213820c5fea844ecea29203d2a308019007c15",
+ "reference": "8e213820c5fea844ecea29203d2a308019007c15",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/deprecation-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "symfony/config": "<6.4",
+ "symfony/dependency-injection": "<6.4",
+ "symfony/yaml": "<6.4"
+ },
+ "require-dev": {
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^6.4|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/expression-language": "^6.4|^7.0",
+ "symfony/http-foundation": "^6.4|^7.0",
+ "symfony/yaml": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Routing\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Maps an HTTP request to a set of configuration variables",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "router",
+ "routing",
+ "uri",
+ "url"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/routing/tree/v7.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-05-24T20:43:28+00:00"
+ },
+ {
+ "name": "symfony/service-contracts",
+ "version": "v3.6.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/service-contracts.git",
+ "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
+ "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1",
+ "psr/container": "^1.1|^2.0",
+ "symfony/deprecation-contracts": "^2.5|^3"
+ },
+ "conflict": {
+ "ext-psr": "<1.1|>=2"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/contracts",
+ "name": "symfony/contracts"
+ },
+ "branch-alias": {
+ "dev-main": "3.6-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\Service\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Test/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to writing services",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-04-25T09:37:31+00:00"
+ },
+ {
+ "name": "symfony/string",
+ "version": "v7.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/string.git",
+ "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/string/zipball/f3570b8c61ca887a9e2938e85cb6458515d2b125",
+ "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-intl-grapheme": "~1.0",
+ "symfony/polyfill-intl-normalizer": "~1.0",
+ "symfony/polyfill-mbstring": "~1.0"
+ },
+ "conflict": {
+ "symfony/translation-contracts": "<2.5"
+ },
+ "require-dev": {
+ "symfony/emoji": "^7.1",
+ "symfony/error-handler": "^6.4|^7.0",
+ "symfony/http-client": "^6.4|^7.0",
+ "symfony/intl": "^6.4|^7.0",
+ "symfony/translation-contracts": "^2.5|^3.0",
+ "symfony/var-exporter": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "Resources/functions.php"
+ ],
+ "psr-4": {
+ "Symfony\\Component\\String\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "grapheme",
+ "i18n",
+ "string",
+ "unicode",
+ "utf-8",
+ "utf8"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/string/tree/v7.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-04-20T20:19:01+00:00"
+ },
+ {
+ "name": "symfony/translation",
+ "version": "v7.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/translation.git",
+ "reference": "241d5ac4910d256660238a7ecf250deba4c73063"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/241d5ac4910d256660238a7ecf250deba4c73063",
+ "reference": "241d5ac4910d256660238a7ecf250deba4c73063",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/polyfill-mbstring": "~1.0",
+ "symfony/translation-contracts": "^2.5|^3.0"
+ },
+ "conflict": {
+ "nikic/php-parser": "<5.0",
+ "symfony/config": "<6.4",
+ "symfony/console": "<6.4",
+ "symfony/dependency-injection": "<6.4",
+ "symfony/http-client-contracts": "<2.5",
+ "symfony/http-kernel": "<6.4",
+ "symfony/service-contracts": "<2.5",
+ "symfony/twig-bundle": "<6.4",
+ "symfony/yaml": "<6.4"
+ },
+ "provide": {
+ "symfony/translation-implementation": "2.3|3.0"
+ },
+ "require-dev": {
+ "nikic/php-parser": "^5.0",
+ "psr/log": "^1|^2|^3",
+ "symfony/config": "^6.4|^7.0",
+ "symfony/console": "^6.4|^7.0",
+ "symfony/dependency-injection": "^6.4|^7.0",
+ "symfony/finder": "^6.4|^7.0",
+ "symfony/http-client-contracts": "^2.5|^3.0",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/intl": "^6.4|^7.0",
+ "symfony/polyfill-intl-icu": "^1.21",
+ "symfony/routing": "^6.4|^7.0",
+ "symfony/service-contracts": "^2.5|^3",
+ "symfony/yaml": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "Resources/functions.php"
+ ],
+ "psr-4": {
+ "Symfony\\Component\\Translation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides tools to internationalize your application",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/translation/tree/v7.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-06-27T19:55:54+00:00"
+ },
+ {
+ "name": "symfony/translation-contracts",
+ "version": "v3.6.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/translation-contracts.git",
+ "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
+ "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.1"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/contracts",
+ "name": "symfony/contracts"
+ },
+ "branch-alias": {
+ "dev-main": "3.6-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Contracts\\Translation\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Test/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Generic abstractions related to translation",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "abstractions",
+ "contracts",
+ "decoupling",
+ "interfaces",
+ "interoperability",
+ "standards"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-27T08:32:26+00:00"
+ },
+ {
+ "name": "symfony/uid",
+ "version": "v7.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/uid.git",
+ "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/uid/zipball/a69f69f3159b852651a6bf45a9fdd149520525bb",
+ "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/polyfill-uuid": "^1.15"
+ },
+ "require-dev": {
+ "symfony/console": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Uid\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Grégoire Pineau",
+ "email": "lyrixx@lyrixx.info"
+ },
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides an object-oriented API to generate and represent UIDs",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "UID",
+ "ulid",
+ "uuid"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/uid/tree/v7.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-06-27T19:55:54+00:00"
+ },
+ {
+ "name": "symfony/var-dumper",
+ "version": "v7.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/var-dumper.git",
+ "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
+ "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/deprecation-contracts": "^2.5|^3",
+ "symfony/polyfill-mbstring": "~1.0"
+ },
+ "conflict": {
+ "symfony/console": "<6.4"
+ },
+ "require-dev": {
+ "ext-iconv": "*",
+ "symfony/console": "^6.4|^7.0",
+ "symfony/http-kernel": "^6.4|^7.0",
+ "symfony/process": "^6.4|^7.0",
+ "symfony/uid": "^6.4|^7.0",
+ "twig/twig": "^3.12"
+ },
+ "bin": [
+ "Resources/bin/var-dump-server"
+ ],
+ "type": "library",
+ "autoload": {
+ "files": [
+ "Resources/functions/dump.php"
+ ],
+ "psr-4": {
+ "Symfony\\Component\\VarDumper\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides mechanisms for walking through any arbitrary PHP variable",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "debug",
+ "dump"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/var-dumper/tree/v7.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-06-27T19:55:54+00:00"
+ },
+ {
+ "name": "tijsverkoyen/css-to-inline-styles",
+ "version": "v2.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
+ "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
+ "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "php": "^7.4 || ^8.0",
+ "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^2.0",
+ "phpstan/phpstan-phpunit": "^2.0",
+ "phpunit/phpunit": "^8.5.21 || ^9.5.10"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "TijsVerkoyen\\CssToInlineStyles\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Tijs Verkoyen",
+ "email": "css_to_inline_styles@verkoyen.eu",
+ "role": "Developer"
+ }
+ ],
+ "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
+ "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
+ "support": {
+ "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
+ "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
+ },
+ "time": "2024-12-21T16:25:41+00:00"
+ },
+ {
+ "name": "vlucas/phpdotenv",
+ "version": "v5.6.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/vlucas/phpdotenv.git",
+ "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
+ "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
+ "shasum": ""
+ },
+ "require": {
+ "ext-pcre": "*",
+ "graham-campbell/result-type": "^1.1.3",
+ "php": "^7.2.5 || ^8.0",
+ "phpoption/phpoption": "^1.9.3",
+ "symfony/polyfill-ctype": "^1.24",
+ "symfony/polyfill-mbstring": "^1.24",
+ "symfony/polyfill-php80": "^1.24"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "ext-filter": "*",
+ "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
+ },
+ "suggest": {
+ "ext-filter": "Required to use the boolean validator."
+ },
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": false
+ },
+ "branch-alias": {
+ "dev-master": "5.6-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Dotenv\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ },
+ {
+ "name": "Vance Lucas",
+ "email": "vance@vancelucas.com",
+ "homepage": "https://github.com/vlucas"
+ }
+ ],
+ "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
+ "keywords": [
+ "dotenv",
+ "env",
+ "environment"
+ ],
+ "support": {
+ "issues": "https://github.com/vlucas/phpdotenv/issues",
+ "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-04-30T23:37:27+00:00"
+ },
+ {
+ "name": "voku/portable-ascii",
+ "version": "2.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/voku/portable-ascii.git",
+ "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
+ "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.0.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
+ },
+ "suggest": {
+ "ext-intl": "Use Intl for transliterator_transliterate() support"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "voku\\": "src/voku/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Lars Moelleken",
+ "homepage": "https://www.moelleken.org/"
+ }
+ ],
+ "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
+ "homepage": "https://github.com/voku/portable-ascii",
+ "keywords": [
+ "ascii",
+ "clean",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/voku/portable-ascii/issues",
+ "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.me/moelleken",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/voku",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/portable-ascii",
+ "type": "open_collective"
+ },
+ {
+ "url": "https://www.patreon.com/voku",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-11-21T01:49:47+00:00"
+ },
+ {
+ "name": "webmozart/assert",
+ "version": "1.11.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/webmozarts/assert.git",
+ "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
+ "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
+ "shasum": ""
+ },
+ "require": {
+ "ext-ctype": "*",
+ "php": "^7.2 || ^8.0"
+ },
+ "conflict": {
+ "phpstan/phpstan": "<0.12.20",
+ "vimeo/psalm": "<4.6.1 || 4.6.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5.13"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.10-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Webmozart\\Assert\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
+ }
+ ],
+ "description": "Assertions to validate method input/output with nice error messages.",
+ "keywords": [
+ "assert",
+ "check",
+ "validate"
+ ],
+ "support": {
+ "issues": "https://github.com/webmozarts/assert/issues",
+ "source": "https://github.com/webmozarts/assert/tree/1.11.0"
+ },
+ "time": "2022-06-03T18:03:27+00:00"
+ },
+ {
+ "name": "webpatser/laravel-countries",
+ "version": "1.5.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/webpatser/laravel-countries.git",
+ "reference": "000d7aaa67a1eb488275feafe6ab74a6b7544e84"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/webpatser/laravel-countries/zipball/000d7aaa67a1eb488275feafe6ab74a6b7544e84",
+ "reference": "000d7aaa67a1eb488275feafe6ab74a6b7544e84",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-0": {
+ "Webpatser\\Countries": "src/"
+ },
+ "classmap": [
+ "src/commands"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Christoph Kempen",
+ "email": "christoph@downsized.nl",
+ "homepage": "http://downsized.nl/",
+ "role": "developer"
+ },
+ {
+ "name": "Paul Kievits",
+ "role": "developer"
+ }
+ ],
+ "description": "Laravel Countries is a bundle for Laravel, providing Almost ISO 3166_2, 3166_3, currency, Capital and more for all countries.",
+ "homepage": "https://github.com/webpatser/laravel-countries",
+ "keywords": [
+ "countries",
+ "iso_3166_2",
+ "iso_3166_3",
+ "laravel"
+ ],
+ "support": {
+ "issues": "https://github.com/webpatser/laravel-countries/issues",
+ "source": "https://github.com/webpatser/laravel-countries"
+ },
+ "time": "2018-05-16T06:37:24+00:00"
+ },
+ {
+ "name": "webpatser/laravel-uuid",
+ "version": "4.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/webpatser/laravel-uuid.git",
+ "reference": "f82715c6bc6a4fcc61bb020cb4fddeb8cc73bbea"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/webpatser/laravel-uuid/zipball/f82715c6bc6a4fcc61bb020cb4fddeb8cc73bbea",
+ "reference": "f82715c6bc6a4fcc61bb020cb4fddeb8cc73bbea",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.0|^8.0"
+ },
+ "require-dev": {
+ "fakerphp/faker": "^1.9.1",
+ "phpunit/phpunit": "^9.3.3"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "aliases": {
+ "Uuid": "Webpatser\\Uuid\\Uuid"
+ },
+ "providers": [
+ "Webpatser\\Uuid\\UuidServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Webpatser\\Uuid\\": "src/Webpatser/Uuid/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Christoph Kempen",
+ "email": "christoph@downsized.nl"
+ }
+ ],
+ "description": "Laravel package to generate and to validate a universally unique identifier (UUID) according to the RFC 4122 standard. Support for version 1, 3, 4 and 5 UUIDs are built-in.",
+ "homepage": "https://github.com/webpatser/laravel-uuid",
+ "keywords": [
+ "UUID RFC4122"
+ ],
+ "support": {
+ "issues": "https://github.com/webpatser/laravel-uuid/issues",
+ "source": "https://github.com/webpatser/laravel-uuid"
+ },
+ "time": "2023-05-19T08:56:59+00:00"
+ }
+ ],
+ "packages-dev": [
+ {
+ "name": "brianium/paratest",
+ "version": "v7.8.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/paratestphp/paratest.git",
+ "reference": "a585c346ddf1bec22e51e20b5387607905604a71"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/paratestphp/paratest/zipball/a585c346ddf1bec22e51e20b5387607905604a71",
+ "reference": "a585c346ddf1bec22e51e20b5387607905604a71",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-pcre": "*",
+ "ext-reflection": "*",
+ "ext-simplexml": "*",
+ "fidry/cpu-core-counter": "^1.2.0",
+ "jean85/pretty-package-versions": "^2.1.0",
+ "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
+ "phpunit/php-code-coverage": "^11.0.9 || ^12.0.4",
+ "phpunit/php-file-iterator": "^5.1.0 || ^6",
+ "phpunit/php-timer": "^7.0.1 || ^8",
+ "phpunit/phpunit": "^11.5.11 || ^12.0.6",
+ "sebastian/environment": "^7.2.0 || ^8",
+ "symfony/console": "^6.4.17 || ^7.2.1",
+ "symfony/process": "^6.4.19 || ^7.2.4"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^12.0.0",
+ "ext-pcov": "*",
+ "ext-posix": "*",
+ "phpstan/phpstan": "^2.1.6",
+ "phpstan/phpstan-deprecation-rules": "^2.0.1",
+ "phpstan/phpstan-phpunit": "^2.0.4",
+ "phpstan/phpstan-strict-rules": "^2.0.3",
+ "squizlabs/php_codesniffer": "^3.11.3",
+ "symfony/filesystem": "^6.4.13 || ^7.2.0"
+ },
+ "bin": [
+ "bin/paratest",
+ "bin/paratest_for_phpstorm"
+ ],
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "ParaTest\\": [
+ "src/"
+ ]
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Brian Scaturro",
+ "email": "scaturrob@gmail.com",
+ "role": "Developer"
+ },
+ {
+ "name": "Filippo Tessarotto",
+ "email": "zoeslam@gmail.com",
+ "role": "Developer"
+ }
+ ],
+ "description": "Parallel testing for PHP",
+ "homepage": "https://github.com/paratestphp/paratest",
+ "keywords": [
+ "concurrent",
+ "parallel",
+ "phpunit",
+ "testing"
+ ],
+ "support": {
+ "issues": "https://github.com/paratestphp/paratest/issues",
+ "source": "https://github.com/paratestphp/paratest/tree/v7.8.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sponsors/Slamdunk",
+ "type": "github"
+ },
+ {
+ "url": "https://paypal.me/filippotessarotto",
+ "type": "paypal"
+ }
+ ],
+ "time": "2025-03-05T08:29:11+00:00"
+ },
+ {
+ "name": "clue/ndjson-react",
+ "version": "v1.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/clue/reactphp-ndjson.git",
+ "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
+ "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3",
+ "react/stream": "^1.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
+ "react/event-loop": "^1.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Clue\\React\\NDJson\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering"
+ }
+ ],
+ "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
+ "homepage": "https://github.com/clue/reactphp-ndjson",
+ "keywords": [
+ "NDJSON",
+ "json",
+ "jsonlines",
+ "newline",
+ "reactphp",
+ "streaming"
+ ],
+ "support": {
+ "issues": "https://github.com/clue/reactphp-ndjson/issues",
+ "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://clue.engineering/support",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/clue",
+ "type": "github"
+ }
+ ],
+ "time": "2022-12-23T10:58:28+00:00"
+ },
+ {
+ "name": "composer/pcre",
+ "version": "3.3.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer/pcre.git",
+ "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
+ "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4 || ^8.0"
+ },
+ "conflict": {
+ "phpstan/phpstan": "<1.11.10"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.12 || ^2",
+ "phpstan/phpstan-strict-rules": "^1 || ^2",
+ "phpunit/phpunit": "^8 || ^9"
+ },
+ "type": "library",
+ "extra": {
+ "phpstan": {
+ "includes": [
+ "extension.neon"
+ ]
+ },
+ "branch-alias": {
+ "dev-main": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Composer\\Pcre\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ }
+ ],
+ "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
+ "keywords": [
+ "PCRE",
+ "preg",
+ "regex",
+ "regular expression"
+ ],
+ "support": {
+ "issues": "https://github.com/composer/pcre/issues",
+ "source": "https://github.com/composer/pcre/tree/3.3.2"
+ },
+ "funding": [
+ {
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-11-12T16:29:46+00:00"
+ },
+ {
+ "name": "composer/semver",
+ "version": "3.4.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer/semver.git",
+ "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
+ "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.3.2 || ^7.0 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.11",
+ "symfony/phpunit-bridge": "^3 || ^7"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Composer\\Semver\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nils Adermann",
+ "email": "naderman@naderman.de",
+ "homepage": "http://www.naderman.de"
+ },
+ {
+ "name": "Jordi Boggiano",
+ "email": "j.boggiano@seld.be",
+ "homepage": "http://seld.be"
+ },
+ {
+ "name": "Rob Bast",
+ "email": "rob.bast@gmail.com",
+ "homepage": "http://robbast.nl"
+ }
+ ],
+ "description": "Semver library that offers utilities, version constraint parsing and validation.",
+ "keywords": [
+ "semantic",
+ "semver",
+ "validation",
+ "versioning"
+ ],
+ "support": {
+ "irc": "ircs://irc.libera.chat:6697/composer",
+ "issues": "https://github.com/composer/semver/issues",
+ "source": "https://github.com/composer/semver/tree/3.4.3"
+ },
+ "funding": [
+ {
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-19T14:15:21+00:00"
+ },
+ {
+ "name": "composer/xdebug-handler",
+ "version": "3.0.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/composer/xdebug-handler.git",
+ "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
+ "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
+ "shasum": ""
+ },
+ "require": {
+ "composer/pcre": "^1 || ^2 || ^3",
+ "php": "^7.2.5 || ^8.0",
+ "psr/log": "^1 || ^2 || ^3"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "^1.0",
+ "phpstan/phpstan-strict-rules": "^1.1",
+ "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Composer\\XdebugHandler\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "John Stevenson",
+ "email": "john-stevenson@blueyonder.co.uk"
+ }
+ ],
+ "description": "Restarts a process without Xdebug.",
+ "keywords": [
+ "Xdebug",
+ "performance"
+ ],
+ "support": {
+ "irc": "ircs://irc.libera.chat:6697/composer",
+ "issues": "https://github.com/composer/xdebug-handler/issues",
+ "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
+ },
+ "funding": [
+ {
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-05-06T16:37:16+00:00"
+ },
+ {
+ "name": "doctrine/deprecations",
+ "version": "1.1.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/doctrine/deprecations.git",
+ "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
+ "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<=7.5 || >=13"
+ },
+ "require-dev": {
+ "doctrine/coding-standard": "^9 || ^12 || ^13",
+ "phpstan/phpstan": "1.4.10 || 2.1.11",
+ "phpstan/phpstan-phpunit": "^1.0 || ^2",
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
+ "psr/log": "^1 || ^2 || ^3"
+ },
+ "suggest": {
+ "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Doctrine\\Deprecations\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
+ "homepage": "https://www.doctrine-project.org/",
+ "support": {
+ "issues": "https://github.com/doctrine/deprecations/issues",
+ "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
+ },
+ "time": "2025-04-07T20:06:18+00:00"
+ },
+ {
+ "name": "evenement/evenement",
+ "version": "v3.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/igorw/evenement.git",
+ "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
+ "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9 || ^6"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Evenement\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Igor Wiedler",
+ "email": "igor@wiedler.ch"
+ }
+ ],
+ "description": "Événement is a very simple event dispatching library for PHP",
+ "keywords": [
+ "event-dispatcher",
+ "event-emitter"
+ ],
+ "support": {
+ "issues": "https://github.com/igorw/evenement/issues",
+ "source": "https://github.com/igorw/evenement/tree/v3.0.2"
+ },
+ "time": "2023-08-08T05:53:35+00:00"
+ },
+ {
+ "name": "fakerphp/faker",
+ "version": "v1.24.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/FakerPHP/Faker.git",
+ "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
+ "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4 || ^8.0",
+ "psr/container": "^1.0 || ^2.0",
+ "symfony/deprecation-contracts": "^2.2 || ^3.0"
+ },
+ "conflict": {
+ "fzaninotto/faker": "*"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.4.1",
+ "doctrine/persistence": "^1.3 || ^2.0",
+ "ext-intl": "*",
+ "phpunit/phpunit": "^9.5.26",
+ "symfony/phpunit-bridge": "^5.4.16"
+ },
+ "suggest": {
+ "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
+ "ext-curl": "Required by Faker\\Provider\\Image to download images.",
+ "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
+ "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
+ "ext-mbstring": "Required for multibyte Unicode string functionality."
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Faker\\": "src/Faker/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "François Zaninotto"
+ }
+ ],
+ "description": "Faker is a PHP library that generates fake data for you.",
+ "keywords": [
+ "data",
+ "faker",
+ "fixtures"
+ ],
+ "support": {
+ "issues": "https://github.com/FakerPHP/Faker/issues",
+ "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
+ },
+ "time": "2024-11-21T13:46:39+00:00"
+ },
+ {
+ "name": "fidry/cpu-core-counter",
+ "version": "1.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/theofidry/cpu-core-counter.git",
+ "reference": "8520451a140d3f46ac33042715115e290cf5785f"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
+ "reference": "8520451a140d3f46ac33042715115e290cf5785f",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "require-dev": {
+ "fidry/makefile": "^0.2.0",
+ "fidry/php-cs-fixer-config": "^1.1.2",
+ "phpstan/extension-installer": "^1.2.0",
+ "phpstan/phpstan": "^1.9.2",
+ "phpstan/phpstan-deprecation-rules": "^1.0.0",
+ "phpstan/phpstan-phpunit": "^1.2.2",
+ "phpstan/phpstan-strict-rules": "^1.4.4",
+ "phpunit/phpunit": "^8.5.31 || ^9.5.26",
+ "webmozarts/strict-phpunit": "^7.5"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Fidry\\CpuCoreCounter\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Théo FIDRY",
+ "email": "theo.fidry@gmail.com"
+ }
+ ],
+ "description": "Tiny utility to get the number of CPU cores.",
+ "keywords": [
+ "CPU",
+ "core"
+ ],
+ "support": {
+ "issues": "https://github.com/theofidry/cpu-core-counter/issues",
+ "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/theofidry",
+ "type": "github"
+ }
+ ],
+ "time": "2024-08-06T10:04:20+00:00"
+ },
+ {
+ "name": "filp/whoops",
+ "version": "2.18.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/filp/whoops.git",
+ "reference": "59a123a3d459c5a23055802237cb317f609867e5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/filp/whoops/zipball/59a123a3d459c5a23055802237cb317f609867e5",
+ "reference": "59a123a3d459c5a23055802237cb317f609867e5",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0",
+ "psr/log": "^1.0.1 || ^2.0 || ^3.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.0",
+ "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
+ "symfony/var-dumper": "^4.0 || ^5.0"
+ },
+ "suggest": {
+ "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
+ "whoops/soap": "Formats errors as SOAP responses"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.7-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Whoops\\": "src/Whoops/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Filipe Dobreira",
+ "homepage": "https://github.com/filp",
+ "role": "Developer"
+ }
+ ],
+ "description": "php error handling for cool kids",
+ "homepage": "https://filp.github.io/whoops/",
+ "keywords": [
+ "error",
+ "exception",
+ "handling",
+ "library",
+ "throwable",
+ "whoops"
+ ],
+ "support": {
+ "issues": "https://github.com/filp/whoops/issues",
+ "source": "https://github.com/filp/whoops/tree/2.18.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/denis-sokolov",
+ "type": "github"
+ }
+ ],
+ "time": "2025-06-16T00:02:10+00:00"
+ },
+ {
+ "name": "friendsofphp/php-cs-fixer",
+ "version": "v3.76.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
+ "reference": "0e3c484cef0ae9314b0f85986a36296087432c40"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/0e3c484cef0ae9314b0f85986a36296087432c40",
+ "reference": "0e3c484cef0ae9314b0f85986a36296087432c40",
+ "shasum": ""
+ },
+ "require": {
+ "clue/ndjson-react": "^1.0",
+ "composer/semver": "^3.4",
+ "composer/xdebug-handler": "^3.0.5",
+ "ext-filter": "*",
+ "ext-hash": "*",
+ "ext-json": "*",
+ "ext-tokenizer": "*",
+ "fidry/cpu-core-counter": "^1.2",
+ "php": "^7.4 || ^8.0",
+ "react/child-process": "^0.6.6",
+ "react/event-loop": "^1.0",
+ "react/promise": "^2.11 || ^3.0",
+ "react/socket": "^1.0",
+ "react/stream": "^1.0",
+ "sebastian/diff": "^4.0.6 || ^5.1.1 || ^6.0.2 || ^7.0",
+ "symfony/console": "^5.4.45 || ^6.4.13 || ^7.0",
+ "symfony/event-dispatcher": "^5.4.45 || ^6.4.13 || ^7.0",
+ "symfony/filesystem": "^5.4.45 || ^6.4.13 || ^7.0",
+ "symfony/finder": "^5.4.45 || ^6.4.17 || ^7.0",
+ "symfony/options-resolver": "^5.4.45 || ^6.4.16 || ^7.0",
+ "symfony/polyfill-mbstring": "^1.32",
+ "symfony/polyfill-php80": "^1.32",
+ "symfony/polyfill-php81": "^1.32",
+ "symfony/process": "^5.4.47 || ^6.4.20 || ^7.2",
+ "symfony/stopwatch": "^5.4.45 || ^6.4.19 || ^7.0"
+ },
+ "require-dev": {
+ "facile-it/paraunit": "^1.3.1 || ^2.6",
+ "infection/infection": "^0.29.14",
+ "justinrainbow/json-schema": "^5.3 || ^6.4",
+ "keradus/cli-executor": "^2.2",
+ "mikey179/vfsstream": "^1.6.12",
+ "php-coveralls/php-coveralls": "^2.8",
+ "php-cs-fixer/accessible-object": "^1.1",
+ "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.6",
+ "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.6",
+ "phpunit/phpunit": "^9.6.23 || ^10.5.47 || ^11.5.25",
+ "symfony/polyfill-php84": "^1.32",
+ "symfony/var-dumper": "^5.4.48 || ^6.4.23 || ^7.3.1",
+ "symfony/yaml": "^5.4.45 || ^6.4.23 || ^7.3.1"
+ },
+ "suggest": {
+ "ext-dom": "For handling output formats in XML",
+ "ext-mbstring": "For handling non-UTF8 characters."
+ },
+ "bin": [
+ "php-cs-fixer"
+ ],
+ "type": "application",
+ "autoload": {
+ "psr-4": {
+ "PhpCsFixer\\": "src/"
+ },
+ "exclude-from-classmap": [
+ "src/Fixer/Internal/*"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Dariusz Rumiński",
+ "email": "dariusz.ruminski@gmail.com"
+ }
+ ],
+ "description": "A tool to automatically fix PHP code style",
+ "keywords": [
+ "Static code analysis",
+ "fixer",
+ "standards",
+ "static analysis"
+ ],
+ "support": {
+ "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
+ "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.76.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/keradus",
+ "type": "github"
+ }
+ ],
+ "time": "2025-06-30T14:15:06+00:00"
+ },
+ {
+ "name": "hamcrest/hamcrest-php",
+ "version": "v2.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/hamcrest/hamcrest-php.git",
+ "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
+ "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4|^8.0"
+ },
+ "replace": {
+ "cordoval/hamcrest-php": "*",
+ "davedevelopment/hamcrest-php": "*",
+ "kodova/hamcrest-php": "*"
+ },
+ "require-dev": {
+ "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0",
+ "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "hamcrest"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "description": "This is the PHP port of Hamcrest Matchers",
+ "keywords": [
+ "test"
+ ],
+ "support": {
+ "issues": "https://github.com/hamcrest/hamcrest-php/issues",
+ "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1"
+ },
+ "time": "2025-04-30T06:54:44+00:00"
+ },
+ {
+ "name": "jean85/pretty-package-versions",
+ "version": "2.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/Jean85/pretty-package-versions.git",
+ "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/4d7aa5dab42e2a76d99559706022885de0e18e1a",
+ "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a",
+ "shasum": ""
+ },
+ "require": {
+ "composer-runtime-api": "^2.1.0",
+ "php": "^7.4|^8.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.2",
+ "jean85/composer-provided-replaced-stub-package": "^1.0",
+ "phpstan/phpstan": "^2.0",
+ "phpunit/phpunit": "^7.5|^8.5|^9.6",
+ "rector/rector": "^2.0",
+ "vimeo/psalm": "^4.3 || ^5.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Jean85\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Alessandro Lai",
+ "email": "alessandro.lai85@gmail.com"
+ }
+ ],
+ "description": "A library to get pretty versions strings of installed dependencies",
+ "keywords": [
+ "composer",
+ "package",
+ "release",
+ "versions"
+ ],
+ "support": {
+ "issues": "https://github.com/Jean85/pretty-package-versions/issues",
+ "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.1"
+ },
+ "time": "2025-03-19T14:43:43+00:00"
+ },
+ {
+ "name": "laravel/pail",
+ "version": "v1.2.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/pail.git",
+ "reference": "8cc3d575c1f0e57eeb923f366a37528c50d2385a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/pail/zipball/8cc3d575c1f0e57eeb923f366a37528c50d2385a",
+ "reference": "8cc3d575c1f0e57eeb923f366a37528c50d2385a",
+ "shasum": ""
+ },
+ "require": {
+ "ext-mbstring": "*",
+ "illuminate/console": "^10.24|^11.0|^12.0",
+ "illuminate/contracts": "^10.24|^11.0|^12.0",
+ "illuminate/log": "^10.24|^11.0|^12.0",
+ "illuminate/process": "^10.24|^11.0|^12.0",
+ "illuminate/support": "^10.24|^11.0|^12.0",
+ "nunomaduro/termwind": "^1.15|^2.0",
+ "php": "^8.2",
+ "symfony/console": "^6.0|^7.0"
+ },
+ "require-dev": {
+ "laravel/framework": "^10.24|^11.0|^12.0",
+ "laravel/pint": "^1.13",
+ "orchestra/testbench-core": "^8.13|^9.0|^10.0",
+ "pestphp/pest": "^2.20|^3.0",
+ "pestphp/pest-plugin-type-coverage": "^2.3|^3.0",
+ "phpstan/phpstan": "^1.12.27",
+ "symfony/var-dumper": "^6.3|^7.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Laravel\\Pail\\PailServiceProvider"
+ ]
+ },
+ "branch-alias": {
+ "dev-main": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Laravel\\Pail\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
+ },
+ {
+ "name": "Nuno Maduro",
+ "email": "enunomaduro@gmail.com"
+ }
+ ],
+ "description": "Easily delve into your Laravel application's log files directly from the command line.",
+ "homepage": "https://github.com/laravel/pail",
+ "keywords": [
+ "dev",
+ "laravel",
+ "logs",
+ "php",
+ "tail"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/pail/issues",
+ "source": "https://github.com/laravel/pail"
+ },
+ "time": "2025-06-05T13:55:57+00:00"
+ },
+ {
+ "name": "laravel/pint",
+ "version": "v1.23.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/pint.git",
+ "reference": "9ab851dba4faa51a3c3223dd3d07044129021024"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/pint/zipball/9ab851dba4faa51a3c3223dd3d07044129021024",
+ "reference": "9ab851dba4faa51a3c3223dd3d07044129021024",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "ext-mbstring": "*",
+ "ext-tokenizer": "*",
+ "ext-xml": "*",
+ "php": "^8.2.0"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.76.0",
+ "illuminate/view": "^11.45.1",
+ "larastan/larastan": "^3.5.0",
+ "laravel-zero/framework": "^11.45.0",
+ "mockery/mockery": "^1.6.12",
+ "nunomaduro/termwind": "^2.3.1",
+ "pestphp/pest": "^2.36.0"
+ },
+ "bin": [
+ "builds/pint"
+ ],
+ "type": "project",
+ "autoload": {
+ "files": [
+ "overrides/Runner/Parallel/ProcessFactory.php"
+ ],
+ "psr-4": {
+ "App\\": "app/",
+ "Database\\Seeders\\": "database/seeders/",
+ "Database\\Factories\\": "database/factories/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nuno Maduro",
+ "email": "enunomaduro@gmail.com"
+ }
+ ],
+ "description": "An opinionated code formatter for PHP.",
+ "homepage": "https://laravel.com",
+ "keywords": [
+ "format",
+ "formatter",
+ "lint",
+ "linter",
+ "php"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/pint/issues",
+ "source": "https://github.com/laravel/pint"
+ },
+ "time": "2025-07-03T10:37:47+00:00"
+ },
+ {
+ "name": "laravel/sail",
+ "version": "v1.43.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/laravel/sail.git",
+ "reference": "3e7d899232a8c5e3ea4fc6dee7525ad583887e72"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/laravel/sail/zipball/3e7d899232a8c5e3ea4fc6dee7525ad583887e72",
+ "reference": "3e7d899232a8c5e3ea4fc6dee7525ad583887e72",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0",
+ "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0",
+ "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0",
+ "php": "^8.0",
+ "symfony/console": "^6.0|^7.0",
+ "symfony/yaml": "^6.0|^7.0"
+ },
+ "require-dev": {
+ "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
+ "phpstan/phpstan": "^1.10"
+ },
+ "bin": [
+ "bin/sail"
+ ],
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Laravel\\Sail\\SailServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Laravel\\Sail\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Taylor Otwell",
+ "email": "taylor@laravel.com"
+ }
+ ],
+ "description": "Docker files for running a basic Laravel application.",
+ "keywords": [
+ "docker",
+ "laravel"
+ ],
+ "support": {
+ "issues": "https://github.com/laravel/sail/issues",
+ "source": "https://github.com/laravel/sail"
+ },
+ "time": "2025-05-19T13:19:21+00:00"
+ },
+ {
+ "name": "mockery/mockery",
+ "version": "1.6.12",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/mockery/mockery.git",
+ "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
+ "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
+ "shasum": ""
+ },
+ "require": {
+ "hamcrest/hamcrest-php": "^2.0.1",
+ "lib-pcre": ">=7.0",
+ "php": ">=7.3"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<8.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5 || ^9.6.17",
+ "symplify/easy-coding-standard": "^12.1.14"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "library/helpers.php",
+ "library/Mockery.php"
+ ],
+ "psr-4": {
+ "Mockery\\": "library/Mockery"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Pádraic Brady",
+ "email": "padraic.brady@gmail.com",
+ "homepage": "https://github.com/padraic",
+ "role": "Author"
+ },
+ {
+ "name": "Dave Marshall",
+ "email": "dave.marshall@atstsolutions.co.uk",
+ "homepage": "https://davedevelopment.co.uk",
+ "role": "Developer"
+ },
+ {
+ "name": "Nathanael Esayeas",
+ "email": "nathanael.esayeas@protonmail.com",
+ "homepage": "https://github.com/ghostwriter",
+ "role": "Lead Developer"
+ }
+ ],
+ "description": "Mockery is a simple yet flexible PHP mock object framework",
+ "homepage": "https://github.com/mockery/mockery",
+ "keywords": [
+ "BDD",
+ "TDD",
+ "library",
+ "mock",
+ "mock objects",
+ "mockery",
+ "stub",
+ "test",
+ "test double",
+ "testing"
+ ],
+ "support": {
+ "docs": "https://docs.mockery.io/",
+ "issues": "https://github.com/mockery/mockery/issues",
+ "rss": "https://github.com/mockery/mockery/releases.atom",
+ "security": "https://github.com/mockery/mockery/security/advisories",
+ "source": "https://github.com/mockery/mockery"
+ },
+ "time": "2024-05-16T03:13:13+00:00"
+ },
+ {
+ "name": "myclabs/deep-copy",
+ "version": "1.13.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/myclabs/DeepCopy.git",
+ "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/1720ddd719e16cf0db4eb1c6eca108031636d46c",
+ "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.1 || ^8.0"
+ },
+ "conflict": {
+ "doctrine/collections": "<1.6.8",
+ "doctrine/common": "<2.13.3 || >=3 <3.2.2"
+ },
+ "require-dev": {
+ "doctrine/collections": "^1.6.8",
+ "doctrine/common": "^2.13.3 || ^3.2.2",
+ "phpspec/prophecy": "^1.10",
+ "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "src/DeepCopy/deep_copy.php"
+ ],
+ "psr-4": {
+ "DeepCopy\\": "src/DeepCopy/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "Create deep copies (clones) of your objects",
+ "keywords": [
+ "clone",
+ "copy",
+ "duplicate",
+ "object",
+ "object graph"
+ ],
+ "support": {
+ "issues": "https://github.com/myclabs/DeepCopy/issues",
+ "source": "https://github.com/myclabs/DeepCopy/tree/1.13.1"
+ },
+ "funding": [
+ {
+ "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-04-29T12:36:36+00:00"
+ },
+ {
+ "name": "nunomaduro/collision",
+ "version": "v8.8.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/nunomaduro/collision.git",
+ "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/nunomaduro/collision/zipball/60207965f9b7b7a4ce15a0f75d57f9dadb105bdb",
+ "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb",
+ "shasum": ""
+ },
+ "require": {
+ "filp/whoops": "^2.18.1",
+ "nunomaduro/termwind": "^2.3.1",
+ "php": "^8.2.0",
+ "symfony/console": "^7.3.0"
+ },
+ "conflict": {
+ "laravel/framework": "<11.44.2 || >=13.0.0",
+ "phpunit/phpunit": "<11.5.15 || >=13.0.0"
+ },
+ "require-dev": {
+ "brianium/paratest": "^7.8.3",
+ "larastan/larastan": "^3.4.2",
+ "laravel/framework": "^11.44.2 || ^12.18",
+ "laravel/pint": "^1.22.1",
+ "laravel/sail": "^1.43.1",
+ "laravel/sanctum": "^4.1.1",
+ "laravel/tinker": "^2.10.1",
+ "orchestra/testbench-core": "^9.12.0 || ^10.4",
+ "pestphp/pest": "^3.8.2",
+ "sebastian/environment": "^7.2.1 || ^8.0"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
+ ]
+ },
+ "branch-alias": {
+ "dev-8.x": "8.x-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "./src/Adapters/Phpunit/Autoload.php"
+ ],
+ "psr-4": {
+ "NunoMaduro\\Collision\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nuno Maduro",
+ "email": "enunomaduro@gmail.com"
+ }
+ ],
+ "description": "Cli error handling for console/command-line PHP applications.",
+ "keywords": [
+ "artisan",
+ "cli",
+ "command-line",
+ "console",
+ "dev",
+ "error",
+ "handling",
+ "laravel",
+ "laravel-zero",
+ "php",
+ "symfony"
+ ],
+ "support": {
+ "issues": "https://github.com/nunomaduro/collision/issues",
+ "source": "https://github.com/nunomaduro/collision"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.com/paypalme/enunomaduro",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/nunomaduro",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/nunomaduro",
+ "type": "patreon"
+ }
+ ],
+ "time": "2025-06-25T02:12:12+00:00"
+ },
+ {
+ "name": "pestphp/pest",
+ "version": "v3.8.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/pestphp/pest.git",
+ "reference": "c6244a8712968dbac88eb998e7ff3b5caa556b0d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/pestphp/pest/zipball/c6244a8712968dbac88eb998e7ff3b5caa556b0d",
+ "reference": "c6244a8712968dbac88eb998e7ff3b5caa556b0d",
+ "shasum": ""
+ },
+ "require": {
+ "brianium/paratest": "^7.8.3",
+ "nunomaduro/collision": "^8.8.0",
+ "nunomaduro/termwind": "^2.3.0",
+ "pestphp/pest-plugin": "^3.0.0",
+ "pestphp/pest-plugin-arch": "^3.1.0",
+ "pestphp/pest-plugin-mutate": "^3.0.5",
+ "php": "^8.2.0",
+ "phpunit/phpunit": "^11.5.15"
+ },
+ "conflict": {
+ "filp/whoops": "<2.16.0",
+ "phpunit/phpunit": ">11.5.15",
+ "sebastian/exporter": "<6.0.0",
+ "webmozart/assert": "<1.11.0"
+ },
+ "require-dev": {
+ "pestphp/pest-dev-tools": "^3.4.0",
+ "pestphp/pest-plugin-type-coverage": "^3.5.0",
+ "symfony/process": "^7.2.5"
+ },
+ "bin": [
+ "bin/pest"
+ ],
+ "type": "library",
+ "extra": {
+ "pest": {
+ "plugins": [
+ "Pest\\Mutate\\Plugins\\Mutate",
+ "Pest\\Plugins\\Configuration",
+ "Pest\\Plugins\\Bail",
+ "Pest\\Plugins\\Cache",
+ "Pest\\Plugins\\Coverage",
+ "Pest\\Plugins\\Init",
+ "Pest\\Plugins\\Environment",
+ "Pest\\Plugins\\Help",
+ "Pest\\Plugins\\Memory",
+ "Pest\\Plugins\\Only",
+ "Pest\\Plugins\\Printer",
+ "Pest\\Plugins\\ProcessIsolation",
+ "Pest\\Plugins\\Profile",
+ "Pest\\Plugins\\Retry",
+ "Pest\\Plugins\\Snapshot",
+ "Pest\\Plugins\\Verbose",
+ "Pest\\Plugins\\Version",
+ "Pest\\Plugins\\Parallel"
+ ]
+ },
+ "phpstan": {
+ "includes": [
+ "extension.neon"
+ ]
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/Functions.php",
+ "src/Pest.php"
+ ],
+ "psr-4": {
+ "Pest\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nuno Maduro",
+ "email": "enunomaduro@gmail.com"
+ }
+ ],
+ "description": "The elegant PHP Testing Framework.",
+ "keywords": [
+ "framework",
+ "pest",
+ "php",
+ "test",
+ "testing",
+ "unit"
+ ],
+ "support": {
+ "issues": "https://github.com/pestphp/pest/issues",
+ "source": "https://github.com/pestphp/pest/tree/v3.8.2"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.com/paypalme/enunomaduro",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/nunomaduro",
+ "type": "github"
+ }
+ ],
+ "time": "2025-04-17T10:53:02+00:00"
+ },
+ {
+ "name": "pestphp/pest-plugin",
+ "version": "v3.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/pestphp/pest-plugin.git",
+ "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/e79b26c65bc11c41093b10150c1341cc5cdbea83",
+ "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83",
+ "shasum": ""
+ },
+ "require": {
+ "composer-plugin-api": "^2.0.0",
+ "composer-runtime-api": "^2.2.2",
+ "php": "^8.2"
+ },
+ "conflict": {
+ "pestphp/pest": "<3.0.0"
+ },
+ "require-dev": {
+ "composer/composer": "^2.7.9",
+ "pestphp/pest": "^3.0.0",
+ "pestphp/pest-dev-tools": "^3.0.0"
+ },
+ "type": "composer-plugin",
+ "extra": {
+ "class": "Pest\\Plugin\\Manager"
+ },
+ "autoload": {
+ "psr-4": {
+ "Pest\\Plugin\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "The Pest plugin manager",
+ "keywords": [
+ "framework",
+ "manager",
+ "pest",
+ "php",
+ "plugin",
+ "test",
+ "testing",
+ "unit"
+ ],
+ "support": {
+ "source": "https://github.com/pestphp/pest-plugin/tree/v3.0.0"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/nunomaduro",
+ "type": "github"
+ },
+ {
+ "url": "https://www.patreon.com/nunomaduro",
+ "type": "patreon"
+ }
+ ],
+ "time": "2024-09-08T23:21:41+00:00"
+ },
+ {
+ "name": "pestphp/pest-plugin-arch",
+ "version": "v3.1.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/pestphp/pest-plugin-arch.git",
+ "reference": "db7bd9cb1612b223e16618d85475c6f63b9c8daa"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/db7bd9cb1612b223e16618d85475c6f63b9c8daa",
+ "reference": "db7bd9cb1612b223e16618d85475c6f63b9c8daa",
+ "shasum": ""
+ },
+ "require": {
+ "pestphp/pest-plugin": "^3.0.0",
+ "php": "^8.2",
+ "ta-tikoma/phpunit-architecture-test": "^0.8.4"
+ },
+ "require-dev": {
+ "pestphp/pest": "^3.8.1",
+ "pestphp/pest-dev-tools": "^3.4.0"
+ },
+ "type": "library",
+ "extra": {
+ "pest": {
+ "plugins": [
+ "Pest\\Arch\\Plugin"
+ ]
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/Autoload.php"
+ ],
+ "psr-4": {
+ "Pest\\Arch\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "The Arch plugin for Pest PHP.",
+ "keywords": [
+ "arch",
+ "architecture",
+ "framework",
+ "pest",
+ "php",
+ "plugin",
+ "test",
+ "testing",
+ "unit"
+ ],
+ "support": {
+ "source": "https://github.com/pestphp/pest-plugin-arch/tree/v3.1.1"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.com/paypalme/enunomaduro",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/nunomaduro",
+ "type": "github"
+ }
+ ],
+ "time": "2025-04-16T22:59:48+00:00"
+ },
+ {
+ "name": "pestphp/pest-plugin-mutate",
+ "version": "v3.0.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/pestphp/pest-plugin-mutate.git",
+ "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/pestphp/pest-plugin-mutate/zipball/e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
+ "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
+ "shasum": ""
+ },
+ "require": {
+ "nikic/php-parser": "^5.2.0",
+ "pestphp/pest-plugin": "^3.0.0",
+ "php": "^8.2",
+ "psr/simple-cache": "^3.0.0"
+ },
+ "require-dev": {
+ "pestphp/pest": "^3.0.8",
+ "pestphp/pest-dev-tools": "^3.0.0",
+ "pestphp/pest-plugin-type-coverage": "^3.0.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Pest\\Mutate\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Sandro Gehri",
+ "email": "sandrogehri@gmail.com"
+ }
+ ],
+ "description": "Mutates your code to find untested cases",
+ "keywords": [
+ "framework",
+ "mutate",
+ "mutation",
+ "pest",
+ "php",
+ "plugin",
+ "test",
+ "testing",
+ "unit"
+ ],
+ "support": {
+ "source": "https://github.com/pestphp/pest-plugin-mutate/tree/v3.0.5"
+ },
+ "funding": [
+ {
+ "url": "https://www.paypal.com/paypalme/enunomaduro",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/gehrisandro",
+ "type": "github"
+ },
+ {
+ "url": "https://github.com/nunomaduro",
+ "type": "github"
+ }
+ ],
+ "time": "2024-09-22T07:54:40+00:00"
+ },
+ {
+ "name": "phar-io/manifest",
+ "version": "2.0.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phar-io/manifest.git",
+ "reference": "54750ef60c58e43759730615a392c31c80e23176"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
+ "reference": "54750ef60c58e43759730615a392c31c80e23176",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "ext-phar": "*",
+ "ext-xmlwriter": "*",
+ "phar-io/version": "^3.0.1",
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Heuer",
+ "email": "sebastian@phpeople.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
+ "support": {
+ "issues": "https://github.com/phar-io/manifest/issues",
+ "source": "https://github.com/phar-io/manifest/tree/2.0.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/theseer",
+ "type": "github"
+ }
+ ],
+ "time": "2024-03-03T12:33:53+00:00"
+ },
+ {
+ "name": "phar-io/version",
+ "version": "3.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phar-io/version.git",
+ "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
+ "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Heuer",
+ "email": "sebastian@phpeople.de",
+ "role": "Developer"
+ },
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "Library for handling version information and constraints",
+ "support": {
+ "issues": "https://github.com/phar-io/version/issues",
+ "source": "https://github.com/phar-io/version/tree/3.2.1"
+ },
+ "time": "2022-02-21T01:04:05+00:00"
+ },
+ {
+ "name": "phpdocumentor/reflection-common",
+ "version": "2.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
+ "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
+ "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-2.x": "2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "phpDocumentor\\Reflection\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jaap van Otterdijk",
+ "email": "opensource@ijaap.nl"
+ }
+ ],
+ "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
+ "homepage": "http://www.phpdoc.org",
+ "keywords": [
+ "FQSEN",
+ "phpDocumentor",
+ "phpdoc",
+ "reflection",
+ "static analysis"
+ ],
+ "support": {
+ "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
+ "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
+ },
+ "time": "2020-06-27T09:03:43+00:00"
+ },
+ {
+ "name": "phpdocumentor/reflection-docblock",
+ "version": "5.6.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
+ "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/92dde6a5919e34835c506ac8c523ef095a95ed62",
+ "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/deprecations": "^1.1",
+ "ext-filter": "*",
+ "php": "^7.4 || ^8.0",
+ "phpdocumentor/reflection-common": "^2.2",
+ "phpdocumentor/type-resolver": "^1.7",
+ "phpstan/phpdoc-parser": "^1.7|^2.0",
+ "webmozart/assert": "^1.9.1"
+ },
+ "require-dev": {
+ "mockery/mockery": "~1.3.5 || ~1.6.0",
+ "phpstan/extension-installer": "^1.1",
+ "phpstan/phpstan": "^1.8",
+ "phpstan/phpstan-mockery": "^1.1",
+ "phpstan/phpstan-webmozart-assert": "^1.2",
+ "phpunit/phpunit": "^9.5",
+ "psalm/phar": "^5.26"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "5.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "phpDocumentor\\Reflection\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Mike van Riel",
+ "email": "me@mikevanriel.com"
+ },
+ {
+ "name": "Jaap van Otterdijk",
+ "email": "opensource@ijaap.nl"
+ }
+ ],
+ "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
+ "support": {
+ "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
+ "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.2"
+ },
+ "time": "2025-04-13T19:20:35+00:00"
+ },
+ {
+ "name": "phpdocumentor/type-resolver",
+ "version": "1.10.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpDocumentor/TypeResolver.git",
+ "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
+ "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
+ "shasum": ""
+ },
+ "require": {
+ "doctrine/deprecations": "^1.0",
+ "php": "^7.3 || ^8.0",
+ "phpdocumentor/reflection-common": "^2.0",
+ "phpstan/phpdoc-parser": "^1.18|^2.0"
+ },
+ "require-dev": {
+ "ext-tokenizer": "*",
+ "phpbench/phpbench": "^1.2",
+ "phpstan/extension-installer": "^1.1",
+ "phpstan/phpstan": "^1.8",
+ "phpstan/phpstan-phpunit": "^1.1",
+ "phpunit/phpunit": "^9.5",
+ "rector/rector": "^0.13.9",
+ "vimeo/psalm": "^4.25"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-1.x": "1.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "phpDocumentor\\Reflection\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Mike van Riel",
+ "email": "me@mikevanriel.com"
+ }
+ ],
+ "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
+ "support": {
+ "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
+ "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
+ },
+ "time": "2024-11-09T15:12:26+00:00"
+ },
+ {
+ "name": "phpstan/phpdoc-parser",
+ "version": "2.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpstan/phpdoc-parser.git",
+ "reference": "9b30d6fd026b2c132b3985ce6b23bec09ab3aa68"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/9b30d6fd026b2c132b3985ce6b23bec09ab3aa68",
+ "reference": "9b30d6fd026b2c132b3985ce6b23bec09ab3aa68",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.4 || ^8.0"
+ },
+ "require-dev": {
+ "doctrine/annotations": "^2.0",
+ "nikic/php-parser": "^5.3.0",
+ "php-parallel-lint/php-parallel-lint": "^1.2",
+ "phpstan/extension-installer": "^1.0",
+ "phpstan/phpstan": "^2.0",
+ "phpstan/phpstan-phpunit": "^2.0",
+ "phpstan/phpstan-strict-rules": "^2.0",
+ "phpunit/phpunit": "^9.6",
+ "symfony/process": "^5.2"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "PHPStan\\PhpDocParser\\": [
+ "src/"
+ ]
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "PHPDoc parser with support for nullable, intersection and generic types",
+ "support": {
+ "issues": "https://github.com/phpstan/phpdoc-parser/issues",
+ "source": "https://github.com/phpstan/phpdoc-parser/tree/2.1.0"
+ },
+ "time": "2025-02-19T13:28:12+00:00"
+ },
+ {
+ "name": "phpunit/php-code-coverage",
+ "version": "11.0.10",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
+ "reference": "1a800a7446add2d79cc6b3c01c45381810367d76"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/1a800a7446add2d79cc6b3c01c45381810367d76",
+ "reference": "1a800a7446add2d79cc6b3c01c45381810367d76",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "ext-xmlwriter": "*",
+ "nikic/php-parser": "^5.4.0",
+ "php": ">=8.2",
+ "phpunit/php-file-iterator": "^5.1.0",
+ "phpunit/php-text-template": "^4.0.1",
+ "sebastian/code-unit-reverse-lookup": "^4.0.1",
+ "sebastian/complexity": "^4.0.1",
+ "sebastian/environment": "^7.2.0",
+ "sebastian/lines-of-code": "^3.0.1",
+ "sebastian/version": "^5.0.2",
+ "theseer/tokenizer": "^1.2.3"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.5.2"
+ },
+ "suggest": {
+ "ext-pcov": "PHP extension that provides line coverage",
+ "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "11.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
+ "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
+ "keywords": [
+ "coverage",
+ "testing",
+ "xunit"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
+ "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/show"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-06-18T08:56:18+00:00"
+ },
+ {
+ "name": "phpunit/php-file-iterator",
+ "version": "5.1.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
+ "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
+ "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "5.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "FilterIterator implementation that filters files based on a list of suffixes.",
+ "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
+ "keywords": [
+ "filesystem",
+ "iterator"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
+ "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-08-27T05:02:59+00:00"
+ },
+ {
+ "name": "phpunit/php-invoker",
+ "version": "5.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-invoker.git",
+ "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
+ "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "ext-pcntl": "*",
+ "phpunit/phpunit": "^11.0"
+ },
+ "suggest": {
+ "ext-pcntl": "*"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "5.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Invoke callables with a timeout",
+ "homepage": "https://github.com/sebastianbergmann/php-invoker/",
+ "keywords": [
+ "process"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
+ "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T05:07:44+00:00"
+ },
+ {
+ "name": "phpunit/php-text-template",
+ "version": "4.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-text-template.git",
+ "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
+ "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "4.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Simple template engine.",
+ "homepage": "https://github.com/sebastianbergmann/php-text-template/",
+ "keywords": [
+ "template"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
+ "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T05:08:43+00:00"
+ },
+ {
+ "name": "phpunit/php-timer",
+ "version": "7.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/php-timer.git",
+ "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
+ "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "7.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Utility class for timing",
+ "homepage": "https://github.com/sebastianbergmann/php-timer/",
+ "keywords": [
+ "timer"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/php-timer/issues",
+ "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
+ "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T05:09:35+00:00"
+ },
+ {
+ "name": "phpunit/phpunit",
+ "version": "11.5.15",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/phpunit.git",
+ "reference": "4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c",
+ "reference": "4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-json": "*",
+ "ext-libxml": "*",
+ "ext-mbstring": "*",
+ "ext-xml": "*",
+ "ext-xmlwriter": "*",
+ "myclabs/deep-copy": "^1.13.0",
+ "phar-io/manifest": "^2.0.4",
+ "phar-io/version": "^3.2.1",
+ "php": ">=8.2",
+ "phpunit/php-code-coverage": "^11.0.9",
+ "phpunit/php-file-iterator": "^5.1.0",
+ "phpunit/php-invoker": "^5.0.1",
+ "phpunit/php-text-template": "^4.0.1",
+ "phpunit/php-timer": "^7.0.1",
+ "sebastian/cli-parser": "^3.0.2",
+ "sebastian/code-unit": "^3.0.3",
+ "sebastian/comparator": "^6.3.1",
+ "sebastian/diff": "^6.0.2",
+ "sebastian/environment": "^7.2.0",
+ "sebastian/exporter": "^6.3.0",
+ "sebastian/global-state": "^7.0.2",
+ "sebastian/object-enumerator": "^6.0.1",
+ "sebastian/type": "^5.1.2",
+ "sebastian/version": "^5.0.2",
+ "staabm/side-effects-detector": "^1.0.5"
+ },
+ "suggest": {
+ "ext-soap": "To be able to generate mocks based on WSDL files"
+ },
+ "bin": [
+ "phpunit"
+ ],
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "11.5-dev"
+ }
+ },
+ "autoload": {
+ "files": [
+ "src/Framework/Assert/Functions.php"
+ ],
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "The PHP Unit Testing framework.",
+ "homepage": "https://phpunit.de/",
+ "keywords": [
+ "phpunit",
+ "testing",
+ "xunit"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/phpunit/issues",
+ "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.15"
+ },
+ "funding": [
+ {
+ "url": "https://phpunit.de/sponsors.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-03-23T16:02:11+00:00"
+ },
+ {
+ "name": "react/cache",
+ "version": "v1.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/reactphp/cache.git",
+ "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
+ "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0",
+ "react/promise": "^3.0 || ^2.0 || ^1.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "React\\Cache\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering",
+ "homepage": "https://clue.engineering/"
+ },
+ {
+ "name": "Cees-Jan Kiewiet",
+ "email": "reactphp@ceesjankiewiet.nl",
+ "homepage": "https://wyrihaximus.net/"
+ },
+ {
+ "name": "Jan Sorgalla",
+ "email": "jsorgalla@gmail.com",
+ "homepage": "https://sorgalla.com/"
+ },
+ {
+ "name": "Chris Boden",
+ "email": "cboden@gmail.com",
+ "homepage": "https://cboden.dev/"
+ }
+ ],
+ "description": "Async, Promise-based cache interface for ReactPHP",
+ "keywords": [
+ "cache",
+ "caching",
+ "promise",
+ "reactphp"
+ ],
+ "support": {
+ "issues": "https://github.com/reactphp/cache/issues",
+ "source": "https://github.com/reactphp/cache/tree/v1.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2022-11-30T15:59:55+00:00"
+ },
+ {
+ "name": "react/child-process",
+ "version": "v0.6.6",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/reactphp/child-process.git",
+ "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
+ "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
+ "shasum": ""
+ },
+ "require": {
+ "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
+ "php": ">=5.3.0",
+ "react/event-loop": "^1.2",
+ "react/stream": "^1.4"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
+ "react/socket": "^1.16",
+ "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "React\\ChildProcess\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering",
+ "homepage": "https://clue.engineering/"
+ },
+ {
+ "name": "Cees-Jan Kiewiet",
+ "email": "reactphp@ceesjankiewiet.nl",
+ "homepage": "https://wyrihaximus.net/"
+ },
+ {
+ "name": "Jan Sorgalla",
+ "email": "jsorgalla@gmail.com",
+ "homepage": "https://sorgalla.com/"
+ },
+ {
+ "name": "Chris Boden",
+ "email": "cboden@gmail.com",
+ "homepage": "https://cboden.dev/"
+ }
+ ],
+ "description": "Event-driven library for executing child processes with ReactPHP.",
+ "keywords": [
+ "event-driven",
+ "process",
+ "reactphp"
+ ],
+ "support": {
+ "issues": "https://github.com/reactphp/child-process/issues",
+ "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
+ },
+ "funding": [
+ {
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2025-01-01T16:37:48+00:00"
+ },
+ {
+ "name": "react/dns",
+ "version": "v1.13.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/reactphp/dns.git",
+ "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
+ "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0",
+ "react/cache": "^1.0 || ^0.6 || ^0.5",
+ "react/event-loop": "^1.2",
+ "react/promise": "^3.2 || ^2.7 || ^1.2.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
+ "react/async": "^4.3 || ^3 || ^2",
+ "react/promise-timer": "^1.11"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "React\\Dns\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering",
+ "homepage": "https://clue.engineering/"
+ },
+ {
+ "name": "Cees-Jan Kiewiet",
+ "email": "reactphp@ceesjankiewiet.nl",
+ "homepage": "https://wyrihaximus.net/"
+ },
+ {
+ "name": "Jan Sorgalla",
+ "email": "jsorgalla@gmail.com",
+ "homepage": "https://sorgalla.com/"
+ },
+ {
+ "name": "Chris Boden",
+ "email": "cboden@gmail.com",
+ "homepage": "https://cboden.dev/"
+ }
+ ],
+ "description": "Async DNS resolver for ReactPHP",
+ "keywords": [
+ "async",
+ "dns",
+ "dns-resolver",
+ "reactphp"
+ ],
+ "support": {
+ "issues": "https://github.com/reactphp/dns/issues",
+ "source": "https://github.com/reactphp/dns/tree/v1.13.0"
+ },
+ "funding": [
+ {
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2024-06-13T14:18:03+00:00"
+ },
+ {
+ "name": "react/event-loop",
+ "version": "v1.5.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/reactphp/event-loop.git",
+ "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
+ "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
+ },
+ "suggest": {
+ "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "React\\EventLoop\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering",
+ "homepage": "https://clue.engineering/"
+ },
+ {
+ "name": "Cees-Jan Kiewiet",
+ "email": "reactphp@ceesjankiewiet.nl",
+ "homepage": "https://wyrihaximus.net/"
+ },
+ {
+ "name": "Jan Sorgalla",
+ "email": "jsorgalla@gmail.com",
+ "homepage": "https://sorgalla.com/"
+ },
+ {
+ "name": "Chris Boden",
+ "email": "cboden@gmail.com",
+ "homepage": "https://cboden.dev/"
+ }
+ ],
+ "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
+ "keywords": [
+ "asynchronous",
+ "event-loop"
+ ],
+ "support": {
+ "issues": "https://github.com/reactphp/event-loop/issues",
+ "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
+ },
+ "funding": [
+ {
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2023-11-13T13:48:05+00:00"
+ },
+ {
+ "name": "react/promise",
+ "version": "v3.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/reactphp/promise.git",
+ "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
+ "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.1.0"
+ },
+ "require-dev": {
+ "phpstan/phpstan": "1.10.39 || 1.4.10",
+ "phpunit/phpunit": "^9.6 || ^7.5"
+ },
+ "type": "library",
+ "autoload": {
+ "files": [
+ "src/functions_include.php"
+ ],
+ "psr-4": {
+ "React\\Promise\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jan Sorgalla",
+ "email": "jsorgalla@gmail.com",
+ "homepage": "https://sorgalla.com/"
+ },
+ {
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering",
+ "homepage": "https://clue.engineering/"
+ },
+ {
+ "name": "Cees-Jan Kiewiet",
+ "email": "reactphp@ceesjankiewiet.nl",
+ "homepage": "https://wyrihaximus.net/"
+ },
+ {
+ "name": "Chris Boden",
+ "email": "cboden@gmail.com",
+ "homepage": "https://cboden.dev/"
+ }
+ ],
+ "description": "A lightweight implementation of CommonJS Promises/A for PHP",
+ "keywords": [
+ "promise",
+ "promises"
+ ],
+ "support": {
+ "issues": "https://github.com/reactphp/promise/issues",
+ "source": "https://github.com/reactphp/promise/tree/v3.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2024-05-24T10:39:05+00:00"
+ },
+ {
+ "name": "react/socket",
+ "version": "v1.16.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/reactphp/socket.git",
+ "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
+ "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
+ "shasum": ""
+ },
+ "require": {
+ "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
+ "php": ">=5.3.0",
+ "react/dns": "^1.13",
+ "react/event-loop": "^1.2",
+ "react/promise": "^3.2 || ^2.6 || ^1.2.1",
+ "react/stream": "^1.4"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
+ "react/async": "^4.3 || ^3.3 || ^2",
+ "react/promise-stream": "^1.4",
+ "react/promise-timer": "^1.11"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "React\\Socket\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering",
+ "homepage": "https://clue.engineering/"
+ },
+ {
+ "name": "Cees-Jan Kiewiet",
+ "email": "reactphp@ceesjankiewiet.nl",
+ "homepage": "https://wyrihaximus.net/"
+ },
+ {
+ "name": "Jan Sorgalla",
+ "email": "jsorgalla@gmail.com",
+ "homepage": "https://sorgalla.com/"
+ },
+ {
+ "name": "Chris Boden",
+ "email": "cboden@gmail.com",
+ "homepage": "https://cboden.dev/"
+ }
+ ],
+ "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
+ "keywords": [
+ "Connection",
+ "Socket",
+ "async",
+ "reactphp",
+ "stream"
+ ],
+ "support": {
+ "issues": "https://github.com/reactphp/socket/issues",
+ "source": "https://github.com/reactphp/socket/tree/v1.16.0"
+ },
+ "funding": [
+ {
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2024-07-26T10:38:09+00:00"
+ },
+ {
+ "name": "react/stream",
+ "version": "v1.4.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/reactphp/stream.git",
+ "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
+ "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
+ "shasum": ""
+ },
+ "require": {
+ "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
+ "php": ">=5.3.8",
+ "react/event-loop": "^1.2"
+ },
+ "require-dev": {
+ "clue/stream-filter": "~1.2",
+ "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "React\\Stream\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Christian Lück",
+ "email": "christian@clue.engineering",
+ "homepage": "https://clue.engineering/"
+ },
+ {
+ "name": "Cees-Jan Kiewiet",
+ "email": "reactphp@ceesjankiewiet.nl",
+ "homepage": "https://wyrihaximus.net/"
+ },
+ {
+ "name": "Jan Sorgalla",
+ "email": "jsorgalla@gmail.com",
+ "homepage": "https://sorgalla.com/"
+ },
+ {
+ "name": "Chris Boden",
+ "email": "cboden@gmail.com",
+ "homepage": "https://cboden.dev/"
+ }
+ ],
+ "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
+ "keywords": [
+ "event-driven",
+ "io",
+ "non-blocking",
+ "pipe",
+ "reactphp",
+ "readable",
+ "stream",
+ "writable"
+ ],
+ "support": {
+ "issues": "https://github.com/reactphp/stream/issues",
+ "source": "https://github.com/reactphp/stream/tree/v1.4.0"
+ },
+ "funding": [
+ {
+ "url": "https://opencollective.com/reactphp",
+ "type": "open_collective"
+ }
+ ],
+ "time": "2024-06-11T12:45:25+00:00"
+ },
+ {
+ "name": "sebastian/cli-parser",
+ "version": "3.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/cli-parser.git",
+ "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
+ "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library for parsing CLI options",
+ "homepage": "https://github.com/sebastianbergmann/cli-parser",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
+ "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
+ "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T04:41:36+00:00"
+ },
+ {
+ "name": "sebastian/code-unit",
+ "version": "3.0.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/code-unit.git",
+ "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
+ "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Collection of value objects that represent the PHP code units",
+ "homepage": "https://github.com/sebastianbergmann/code-unit",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/code-unit/issues",
+ "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
+ "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2025-03-19T07:56:08+00:00"
+ },
+ {
+ "name": "sebastian/code-unit-reverse-lookup",
+ "version": "4.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
+ "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
+ "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "4.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Looks up which function or method a line of code belongs to",
+ "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
+ "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
+ "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T04:45:54+00:00"
+ },
+ {
+ "name": "sebastian/comparator",
+ "version": "6.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/comparator.git",
+ "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
+ "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-mbstring": "*",
+ "php": ">=8.2",
+ "sebastian/diff": "^6.0",
+ "sebastian/exporter": "^6.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.4"
+ },
+ "suggest": {
+ "ext-bcmath": "For comparing BcMath\\Number objects"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.3-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
+ "name": "Volker Dusch",
+ "email": "github@wallbash.com"
+ },
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@2bepublished.at"
+ }
+ ],
+ "description": "Provides the functionality to compare PHP values for equality",
+ "homepage": "https://github.com/sebastianbergmann/comparator",
+ "keywords": [
+ "comparator",
+ "compare",
+ "equality"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/comparator/issues",
+ "security": "https://github.com/sebastianbergmann/comparator/security/policy",
+ "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2025-03-07T06:57:01+00:00"
+ },
+ {
+ "name": "sebastian/complexity",
+ "version": "4.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/complexity.git",
+ "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
+ "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
+ "shasum": ""
+ },
+ "require": {
+ "nikic/php-parser": "^5.0",
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "4.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library for calculating the complexity of PHP code units",
+ "homepage": "https://github.com/sebastianbergmann/complexity",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/complexity/issues",
+ "security": "https://github.com/sebastianbergmann/complexity/security/policy",
+ "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T04:49:50+00:00"
+ },
+ {
+ "name": "sebastian/diff",
+ "version": "6.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/diff.git",
+ "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
+ "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0",
+ "symfony/process": "^4.2 || ^5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Kore Nordmann",
+ "email": "mail@kore-nordmann.de"
+ }
+ ],
+ "description": "Diff implementation",
+ "homepage": "https://github.com/sebastianbergmann/diff",
+ "keywords": [
+ "diff",
+ "udiff",
+ "unidiff",
+ "unified diff"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/diff/issues",
+ "security": "https://github.com/sebastianbergmann/diff/security/policy",
+ "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T04:53:05+00:00"
+ },
+ {
+ "name": "sebastian/environment",
+ "version": "7.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/environment.git",
+ "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4",
+ "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.3"
+ },
+ "suggest": {
+ "ext-posix": "*"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "7.2-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Provides functionality to handle HHVM/PHP environments",
+ "homepage": "https://github.com/sebastianbergmann/environment",
+ "keywords": [
+ "Xdebug",
+ "environment",
+ "hhvm"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/environment/issues",
+ "security": "https://github.com/sebastianbergmann/environment/security/policy",
+ "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-05-21T11:55:47+00:00"
+ },
+ {
+ "name": "sebastian/exporter",
+ "version": "6.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/exporter.git",
+ "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
+ "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
+ "shasum": ""
+ },
+ "require": {
+ "ext-mbstring": "*",
+ "php": ">=8.2",
+ "sebastian/recursion-context": "^6.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.3"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
+ "name": "Volker Dusch",
+ "email": "github@wallbash.com"
+ },
+ {
+ "name": "Adam Harvey",
+ "email": "aharvey@php.net"
+ },
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
+ }
+ ],
+ "description": "Provides the functionality to export PHP variables for visualization",
+ "homepage": "https://www.github.com/sebastianbergmann/exporter",
+ "keywords": [
+ "export",
+ "exporter"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/exporter/issues",
+ "security": "https://github.com/sebastianbergmann/exporter/security/policy",
+ "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-12-05T09:17:50+00:00"
+ },
+ {
+ "name": "sebastian/global-state",
+ "version": "7.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/global-state.git",
+ "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
+ "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "sebastian/object-reflector": "^4.0",
+ "sebastian/recursion-context": "^6.0"
+ },
+ "require-dev": {
+ "ext-dom": "*",
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "7.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Snapshotting of global state",
+ "homepage": "https://www.github.com/sebastianbergmann/global-state",
+ "keywords": [
+ "global state"
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/global-state/issues",
+ "security": "https://github.com/sebastianbergmann/global-state/security/policy",
+ "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T04:57:36+00:00"
+ },
+ {
+ "name": "sebastian/lines-of-code",
+ "version": "3.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/lines-of-code.git",
+ "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
+ "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
+ "shasum": ""
+ },
+ "require": {
+ "nikic/php-parser": "^5.0",
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "3.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library for counting the lines of code in PHP source code",
+ "homepage": "https://github.com/sebastianbergmann/lines-of-code",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
+ "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
+ "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T04:58:38+00:00"
+ },
+ {
+ "name": "sebastian/object-enumerator",
+ "version": "6.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/object-enumerator.git",
+ "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
+ "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "sebastian/object-reflector": "^4.0",
+ "sebastian/recursion-context": "^6.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Traverses array structures and object graphs to enumerate all referenced objects",
+ "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
+ "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
+ "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T05:00:13+00:00"
+ },
+ {
+ "name": "sebastian/object-reflector",
+ "version": "4.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/object-reflector.git",
+ "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
+ "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "4.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Allows reflection of object attributes, including inherited and non-public ones",
+ "homepage": "https://github.com/sebastianbergmann/object-reflector/",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
+ "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
+ "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T05:01:32+00:00"
+ },
+ {
+ "name": "sebastian/recursion-context",
+ "version": "6.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/recursion-context.git",
+ "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
+ "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "6.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ },
+ {
+ "name": "Jeff Welch",
+ "email": "whatthejeff@gmail.com"
+ },
+ {
+ "name": "Adam Harvey",
+ "email": "aharvey@php.net"
+ }
+ ],
+ "description": "Provides functionality to recursively process PHP variables",
+ "homepage": "https://github.com/sebastianbergmann/recursion-context",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
+ "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
+ "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-07-03T05:10:34+00:00"
+ },
+ {
+ "name": "sebastian/type",
+ "version": "5.1.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/type.git",
+ "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
+ "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^11.3"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "5.1-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Collection of value objects that represent the types of the PHP type system",
+ "homepage": "https://github.com/sebastianbergmann/type",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/type/issues",
+ "security": "https://github.com/sebastianbergmann/type/security/policy",
+ "source": "https://github.com/sebastianbergmann/type/tree/5.1.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2025-03-18T13:35:50+00:00"
+ },
+ {
+ "name": "sebastian/version",
+ "version": "5.0.2",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/version.git",
+ "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
+ "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-main": "5.0-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de",
+ "role": "lead"
+ }
+ ],
+ "description": "Library that helps with managing the version number of Git-hosted PHP projects",
+ "homepage": "https://github.com/sebastianbergmann/version",
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/version/issues",
+ "security": "https://github.com/sebastianbergmann/version/security/policy",
+ "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/sebastianbergmann",
+ "type": "github"
+ }
+ ],
+ "time": "2024-10-09T05:16:32+00:00"
+ },
+ {
+ "name": "staabm/side-effects-detector",
+ "version": "1.0.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/staabm/side-effects-detector.git",
+ "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
+ "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
+ "shasum": ""
+ },
+ "require": {
+ "ext-tokenizer": "*",
+ "php": "^7.4 || ^8.0"
+ },
+ "require-dev": {
+ "phpstan/extension-installer": "^1.4.3",
+ "phpstan/phpstan": "^1.12.6",
+ "phpunit/phpunit": "^9.6.21",
+ "symfony/var-dumper": "^5.4.43",
+ "tomasvotruba/type-coverage": "1.0.0",
+ "tomasvotruba/unused-public": "1.0.0"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "lib/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "description": "A static analysis tool to detect side effects in PHP code",
+ "keywords": [
+ "static analysis"
+ ],
+ "support": {
+ "issues": "https://github.com/staabm/side-effects-detector/issues",
+ "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/staabm",
+ "type": "github"
+ }
+ ],
+ "time": "2024-10-20T05:08:20+00:00"
+ },
+ {
+ "name": "symfony/filesystem",
+ "version": "v7.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/filesystem.git",
+ "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
+ "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/polyfill-ctype": "~1.8",
+ "symfony/polyfill-mbstring": "~1.8"
+ },
+ "require-dev": {
+ "symfony/process": "^6.4|^7.0"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Filesystem\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides basic utilities for the filesystem",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/filesystem/tree/v7.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-10-25T15:15:23+00:00"
+ },
+ {
+ "name": "symfony/options-resolver",
+ "version": "v7.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/options-resolver.git",
+ "reference": "afb9a8038025e5dbc657378bfab9198d75f10fca"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/options-resolver/zipball/afb9a8038025e5dbc657378bfab9198d75f10fca",
+ "reference": "afb9a8038025e5dbc657378bfab9198d75f10fca",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/deprecation-contracts": "^2.5|^3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\OptionsResolver\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides an improved replacement for the array_replace PHP function",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "config",
+ "configuration",
+ "options"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/options-resolver/tree/v7.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-04-04T13:12:05+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php81",
+ "version": "v1.32.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php81.git",
+ "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
+ "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.2"
+ },
+ "type": "library",
+ "extra": {
+ "thanks": {
+ "url": "https://github.com/symfony/polyfill",
+ "name": "symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "files": [
+ "bootstrap.php"
+ ],
+ "psr-4": {
+ "Symfony\\Polyfill\\Php81\\": ""
+ },
+ "classmap": [
+ "Resources/stubs"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "support": {
+ "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2024-09-09T11:45:10+00:00"
+ },
+ {
+ "name": "symfony/stopwatch",
+ "version": "v7.3.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/stopwatch.git",
+ "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
+ "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/service-contracts": "^2.5|^3"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Stopwatch\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Provides a way to profile code",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/stopwatch/tree/v7.3.0"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-02-24T10:49:57+00:00"
+ },
+ {
+ "name": "symfony/yaml",
+ "version": "v7.3.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/yaml.git",
+ "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/0c3555045a46ab3cd4cc5a69d161225195230edb",
+ "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=8.2",
+ "symfony/deprecation-contracts": "^2.5|^3.0",
+ "symfony/polyfill-ctype": "^1.8"
+ },
+ "conflict": {
+ "symfony/console": "<6.4"
+ },
+ "require-dev": {
+ "symfony/console": "^6.4|^7.0"
+ },
+ "bin": [
+ "Resources/bin/yaml-lint"
+ ],
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Component\\Yaml\\": ""
+ },
+ "exclude-from-classmap": [
+ "/Tests/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Fabien Potencier",
+ "email": "fabien@symfony.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Loads and dumps YAML files",
+ "homepage": "https://symfony.com",
+ "support": {
+ "source": "https://github.com/symfony/yaml/tree/v7.3.1"
+ },
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2025-06-03T06:57:57+00:00"
+ },
+ {
+ "name": "ta-tikoma/phpunit-architecture-test",
+ "version": "0.8.5",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
+ "reference": "cf6fb197b676ba716837c886baca842e4db29005"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/cf6fb197b676ba716837c886baca842e4db29005",
+ "reference": "cf6fb197b676ba716837c886baca842e4db29005",
+ "shasum": ""
+ },
+ "require": {
+ "nikic/php-parser": "^4.18.0 || ^5.0.0",
+ "php": "^8.1.0",
+ "phpdocumentor/reflection-docblock": "^5.3.0",
+ "phpunit/phpunit": "^10.5.5 || ^11.0.0 || ^12.0.0",
+ "symfony/finder": "^6.4.0 || ^7.0.0"
+ },
+ "require-dev": {
+ "laravel/pint": "^1.13.7",
+ "phpstan/phpstan": "^1.10.52"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "PHPUnit\\Architecture\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Ni Shi",
+ "email": "futik0ma011@gmail.com"
+ },
+ {
+ "name": "Nuno Maduro",
+ "email": "enunomaduro@gmail.com"
+ }
+ ],
+ "description": "Methods for testing application architecture",
+ "keywords": [
+ "architecture",
+ "phpunit",
+ "stucture",
+ "test",
+ "testing"
+ ],
+ "support": {
+ "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
+ "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.5"
+ },
+ "time": "2025-04-20T20:23:40+00:00"
+ },
+ {
+ "name": "theseer/tokenizer",
+ "version": "1.2.3",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/theseer/tokenizer.git",
+ "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
+ "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
+ "shasum": ""
+ },
+ "require": {
+ "ext-dom": "*",
+ "ext-tokenizer": "*",
+ "ext-xmlwriter": "*",
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Arne Blankerts",
+ "email": "arne@blankerts.de",
+ "role": "Developer"
+ }
+ ],
+ "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
+ "support": {
+ "issues": "https://github.com/theseer/tokenizer/issues",
+ "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/theseer",
+ "type": "github"
+ }
+ ],
+ "time": "2024-03-03T12:36:25+00:00"
+ }
+ ],
+ "aliases": [],
+ "minimum-stability": "stable",
+ "stability-flags": {
+ "lecturize/laravel-addresses": 20
+ },
+ "prefer-stable": true,
+ "prefer-lowest": false,
+ "platform": {
+ "php": "^8.2"
+ },
+ "platform-dev": {},
+ "plugin-api-version": "2.6.0"
+}
diff --git a/app/revendamais/config/app.php b/app/revendamais/config/app.php
new file mode 100644
index 00000000..427dbd81
--- /dev/null
+++ b/app/revendamais/config/app.php
@@ -0,0 +1,126 @@
+ env('APP_NAME', 'Laravel'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Application Environment
+ |--------------------------------------------------------------------------
+ |
+ | This value determines the "environment" your application is currently
+ | running in. This may determine how you prefer to configure various
+ | services the application utilizes. Set this in your ".env" file.
+ |
+ */
+
+ 'env' => env('APP_ENV', 'production'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Application Debug Mode
+ |--------------------------------------------------------------------------
+ |
+ | When your application is in debug mode, detailed error messages with
+ | stack traces will be shown on every error that occurs within your
+ | application. If disabled, a simple generic error page is shown.
+ |
+ */
+
+ 'debug' => (bool) env('APP_DEBUG', false),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Application URL
+ |--------------------------------------------------------------------------
+ |
+ | This URL is used by the console to properly generate URLs when using
+ | the Artisan command line tool. You should set this to the root of
+ | the application so that it's available within Artisan commands.
+ |
+ */
+
+ 'url' => env('APP_URL', 'http://localhost'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Application Timezone
+ |--------------------------------------------------------------------------
+ |
+ | Here you may specify the default timezone for your application, which
+ | will be used by the PHP date and date-time functions. The timezone
+ | is set to "UTC" by default as it is suitable for most use cases.
+ |
+ */
+
+ 'timezone' => 'UTC',
+
+ /*
+ |--------------------------------------------------------------------------
+ | Application Locale Configuration
+ |--------------------------------------------------------------------------
+ |
+ | The application locale determines the default locale that will be used
+ | by Laravel's translation / localization methods. This option can be
+ | set to any locale for which you plan to have translation strings.
+ |
+ */
+
+ 'locale' => env('APP_LOCALE', 'en'),
+
+ 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
+
+ 'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Encryption Key
+ |--------------------------------------------------------------------------
+ |
+ | This key is utilized by Laravel's encryption services and should be set
+ | to a random, 32 character string to ensure that all encrypted values
+ | are secure. You should do this prior to deploying the application.
+ |
+ */
+
+ 'cipher' => 'AES-256-CBC',
+
+ 'key' => env('APP_KEY'),
+
+ 'previous_keys' => [
+ ...\array_filter(
+ \explode(',', env('APP_PREVIOUS_KEYS', ''))
+ ),
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Maintenance Mode Driver
+ |--------------------------------------------------------------------------
+ |
+ | These configuration options determine the driver used to determine and
+ | manage Laravel's "maintenance mode" status. The "cache" driver will
+ | allow maintenance mode to be controlled across multiple machines.
+ |
+ | Supported drivers: "file", "cache"
+ |
+ */
+
+ 'maintenance' => [
+ 'driver' => env('APP_MAINTENANCE_DRIVER', 'file'),
+ 'store' => env('APP_MAINTENANCE_STORE', 'database'),
+ ],
+
+];
diff --git a/app/revendamais/config/auth.php b/app/revendamais/config/auth.php
new file mode 100644
index 00000000..6afb7308
--- /dev/null
+++ b/app/revendamais/config/auth.php
@@ -0,0 +1,115 @@
+ [
+ 'guard' => env('AUTH_GUARD', 'web'),
+ 'passwords' => env('AUTH_PASSWORD_BROKER', 'users'),
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Authentication Guards
+ |--------------------------------------------------------------------------
+ |
+ | Next, you may define every authentication guard for your application.
+ | Of course, a great default configuration has been defined for you
+ | which utilizes session storage plus the Eloquent user provider.
+ |
+ | All authentication guards have a user provider, which defines how the
+ | users are actually retrieved out of your database or other storage
+ | system used by the application. Typically, Eloquent is utilized.
+ |
+ | Supported: "session"
+ |
+ */
+
+ 'guards' => [
+ 'web' => [
+ 'driver' => 'session',
+ 'provider' => 'users',
+ ],
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | User Providers
+ |--------------------------------------------------------------------------
+ |
+ | All authentication guards have a user provider, which defines how the
+ | users are actually retrieved out of your database or other storage
+ | system used by the application. Typically, Eloquent is utilized.
+ |
+ | If you have multiple user tables or models you may configure multiple
+ | providers to represent the model / table. These providers may then
+ | be assigned to any extra authentication guards you have defined.
+ |
+ | Supported: "database", "eloquent"
+ |
+ */
+
+ 'providers' => [
+ 'users' => [
+ 'driver' => 'eloquent',
+ 'model' => env('AUTH_MODEL', App\Models\User::class),
+ ],
+
+ // 'users' => [
+ // 'driver' => 'database',
+ // 'table' => 'users',
+ // ],
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Resetting Passwords
+ |--------------------------------------------------------------------------
+ |
+ | These configuration options specify the behavior of Laravel's password
+ | reset functionality, including the table utilized for token storage
+ | and the user provider that is invoked to actually retrieve users.
+ |
+ | The expiry time is the number of minutes that each reset token will be
+ | considered valid. This security feature keeps tokens short-lived so
+ | they have less time to be guessed. You may change this as needed.
+ |
+ | The throttle setting is the number of seconds a user must wait before
+ | generating more password reset tokens. This prevents the user from
+ | quickly generating a very large amount of password reset tokens.
+ |
+ */
+
+ 'passwords' => [
+ 'users' => [
+ 'provider' => 'users',
+ 'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'),
+ 'expire' => 60,
+ 'throttle' => 60,
+ ],
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Password Confirmation Timeout
+ |--------------------------------------------------------------------------
+ |
+ | Here you may define the number of seconds before a password confirmation
+ | window expires and users are asked to re-enter their password via the
+ | confirmation screen. By default, the timeout lasts for three hours.
+ |
+ */
+
+ 'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800),
+
+];
diff --git a/app/revendamais/config/brasil-api.php b/app/revendamais/config/brasil-api.php
new file mode 100644
index 00000000..bdad3d88
--- /dev/null
+++ b/app/revendamais/config/brasil-api.php
@@ -0,0 +1,18 @@
+ env('BRASIL_API_BASE_URL', 'https://brasilapi.com.br/api'),
+
+ /**
+ * The version of CEP API used in requests.
+ * Using the `v2` version, the address object will have also the location coordinates.
+ *
+ * Should be either `v1` or `v2`.
+ */
+ 'cep_version' => env('BRASIL_API_CEP_VERSION', 'v2'),
+];
diff --git a/app/revendamais/config/cache.php b/app/revendamais/config/cache.php
new file mode 100644
index 00000000..cd6cd831
--- /dev/null
+++ b/app/revendamais/config/cache.php
@@ -0,0 +1,108 @@
+ env('CACHE_STORE', 'database'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Cache Stores
+ |--------------------------------------------------------------------------
+ |
+ | Here you may define all of the cache "stores" for your application as
+ | well as their drivers. You may even define multiple stores for the
+ | same cache driver to group types of items stored in your caches.
+ |
+ | Supported drivers: "array", "database", "file", "memcached",
+ | "redis", "dynamodb", "octane", "null"
+ |
+ */
+
+ 'stores' => [
+
+ 'array' => [
+ 'driver' => 'array',
+ 'serialize' => false,
+ ],
+
+ 'database' => [
+ 'driver' => 'database',
+ 'connection' => env('DB_CACHE_CONNECTION'),
+ 'table' => env('DB_CACHE_TABLE', 'cache'),
+ 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'),
+ 'lock_table' => env('DB_CACHE_LOCK_TABLE'),
+ ],
+
+ 'file' => [
+ 'driver' => 'file',
+ 'path' => storage_path('framework/cache/data'),
+ 'lock_path' => storage_path('framework/cache/data'),
+ ],
+
+ 'memcached' => [
+ 'driver' => 'memcached',
+ 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
+ 'sasl' => [
+ env('MEMCACHED_USERNAME'),
+ env('MEMCACHED_PASSWORD'),
+ ],
+ 'options' => [
+ // Memcached::OPT_CONNECT_TIMEOUT => 2000,
+ ],
+ 'servers' => [
+ [
+ 'host' => env('MEMCACHED_HOST', '127.0.0.1'),
+ 'port' => env('MEMCACHED_PORT', 11211),
+ 'weight' => 100,
+ ],
+ ],
+ ],
+
+ 'redis' => [
+ 'driver' => 'redis',
+ 'connection' => env('REDIS_CACHE_CONNECTION', 'cache'),
+ 'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'),
+ ],
+
+ 'dynamodb' => [
+ 'driver' => 'dynamodb',
+ 'key' => env('AWS_ACCESS_KEY_ID'),
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
+ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
+ 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
+ 'endpoint' => env('DYNAMODB_ENDPOINT'),
+ ],
+
+ 'octane' => [
+ 'driver' => 'octane',
+ ],
+
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Cache Key Prefix
+ |--------------------------------------------------------------------------
+ |
+ | When utilizing the APC, database, memcached, Redis, and DynamoDB cache
+ | stores, there might be other applications using the same cache. For
+ | that reason, you may prefix every cache key to avoid collisions.
+ |
+ */
+
+ 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_') . '_cache_'),
+
+];
diff --git a/app/revendamais/config/database.php b/app/revendamais/config/database.php
new file mode 100644
index 00000000..2bed152e
--- /dev/null
+++ b/app/revendamais/config/database.php
@@ -0,0 +1,174 @@
+ env('DB_CONNECTION', 'sqlite'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Database Connections
+ |--------------------------------------------------------------------------
+ |
+ | Below are all of the database connections defined for your application.
+ | An example configuration is provided for each database system which
+ | is supported by Laravel. You're free to add / remove connections.
+ |
+ */
+
+ 'connections' => [
+
+ 'sqlite' => [
+ 'driver' => 'sqlite',
+ 'url' => env('DB_URL'),
+ 'database' => env('DB_DATABASE', database_path('database.sqlite')),
+ 'prefix' => '',
+ 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
+ 'busy_timeout' => null,
+ 'journal_mode' => null,
+ 'synchronous' => null,
+ ],
+
+ 'mysql' => [
+ 'driver' => 'mysql',
+ 'url' => env('DB_URL'),
+ 'host' => env('DB_HOST', '127.0.0.1'),
+ 'port' => env('DB_PORT', '3306'),
+ 'database' => env('DB_DATABASE', 'laravel'),
+ 'username' => env('DB_USERNAME', 'root'),
+ 'password' => env('DB_PASSWORD', ''),
+ 'unix_socket' => env('DB_SOCKET', ''),
+ 'charset' => env('DB_CHARSET', 'utf8mb4'),
+ 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
+ 'prefix' => '',
+ 'prefix_indexes' => true,
+ 'strict' => true,
+ 'engine' => null,
+ 'options' => \extension_loaded('pdo_mysql') ? \array_filter([
+ PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
+ ]) : [],
+ ],
+
+ 'mariadb' => [
+ 'driver' => 'mariadb',
+ 'url' => env('DB_URL'),
+ 'host' => env('DB_HOST', '127.0.0.1'),
+ 'port' => env('DB_PORT', '3306'),
+ 'database' => env('DB_DATABASE', 'laravel'),
+ 'username' => env('DB_USERNAME', 'root'),
+ 'password' => env('DB_PASSWORD', ''),
+ 'unix_socket' => env('DB_SOCKET', ''),
+ 'charset' => env('DB_CHARSET', 'utf8mb4'),
+ 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
+ 'prefix' => '',
+ 'prefix_indexes' => true,
+ 'strict' => true,
+ 'engine' => null,
+ 'options' => \extension_loaded('pdo_mysql') ? \array_filter([
+ PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
+ ]) : [],
+ ],
+
+ 'pgsql' => [
+ 'driver' => 'pgsql',
+ 'url' => env('DB_URL'),
+ 'host' => env('DB_HOST', '127.0.0.1'),
+ 'port' => env('DB_PORT', '5432'),
+ 'database' => env('DB_DATABASE', 'laravel'),
+ 'username' => env('DB_USERNAME', 'root'),
+ 'password' => env('DB_PASSWORD', ''),
+ 'charset' => env('DB_CHARSET', 'utf8'),
+ 'prefix' => '',
+ 'prefix_indexes' => true,
+ 'search_path' => 'public',
+ 'sslmode' => 'prefer',
+ ],
+
+ 'sqlsrv' => [
+ 'driver' => 'sqlsrv',
+ 'url' => env('DB_URL'),
+ 'host' => env('DB_HOST', 'localhost'),
+ 'port' => env('DB_PORT', '1433'),
+ 'database' => env('DB_DATABASE', 'laravel'),
+ 'username' => env('DB_USERNAME', 'root'),
+ 'password' => env('DB_PASSWORD', ''),
+ 'charset' => env('DB_CHARSET', 'utf8'),
+ 'prefix' => '',
+ 'prefix_indexes' => true,
+ // 'encrypt' => env('DB_ENCRYPT', 'yes'),
+ // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'),
+ ],
+
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Migration Repository Table
+ |--------------------------------------------------------------------------
+ |
+ | This table keeps track of all the migrations that have already run for
+ | your application. Using this information, we can determine which of
+ | the migrations on disk haven't actually been run on the database.
+ |
+ */
+
+ 'migrations' => [
+ 'table' => 'migrations',
+ 'update_date_on_publish' => true,
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Redis Databases
+ |--------------------------------------------------------------------------
+ |
+ | Redis is an open source, fast, and advanced key-value store that also
+ | provides a richer body of commands than a typical key-value system
+ | such as Memcached. You may define your connection settings here.
+ |
+ */
+
+ 'redis' => [
+
+ 'client' => env('REDIS_CLIENT', 'predis'),
+
+ 'options' => [
+ 'cluster' => env('REDIS_CLUSTER', 'redis'),
+ 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_') . '_database_'),
+ 'persistent' => env('REDIS_PERSISTENT', false),
+ ],
+
+ 'default' => [
+ 'url' => env('REDIS_URL'),
+ 'host' => env('REDIS_HOST', '127.0.0.1'),
+ 'username' => env('REDIS_USERNAME'),
+ 'password' => env('REDIS_PASSWORD'),
+ 'port' => env('REDIS_PORT', '6379'),
+ 'database' => env('REDIS_DB', '0'),
+ ],
+
+ 'cache' => [
+ 'url' => env('REDIS_URL'),
+ 'host' => env('REDIS_HOST', '127.0.0.1'),
+ 'username' => env('REDIS_USERNAME'),
+ 'password' => env('REDIS_PASSWORD'),
+ 'port' => env('REDIS_PORT', '6379'),
+ 'database' => env('REDIS_CACHE_DB', '1'),
+ ],
+
+ ],
+
+];
diff --git a/app/revendamais/config/filesystems.php b/app/revendamais/config/filesystems.php
new file mode 100644
index 00000000..9c64fc91
--- /dev/null
+++ b/app/revendamais/config/filesystems.php
@@ -0,0 +1,80 @@
+ env('FILESYSTEM_DISK', 'local'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Filesystem Disks
+ |--------------------------------------------------------------------------
+ |
+ | Below you may configure as many filesystem disks as necessary, and you
+ | may even configure multiple disks for the same driver. Examples for
+ | most supported storage drivers are configured here for reference.
+ |
+ | Supported drivers: "local", "ftp", "sftp", "s3"
+ |
+ */
+
+ 'disks' => [
+
+ 'local' => [
+ 'driver' => 'local',
+ 'root' => storage_path('app/private'),
+ 'serve' => true,
+ 'throw' => false,
+ 'report' => false,
+ ],
+
+ 'public' => [
+ 'driver' => 'local',
+ 'root' => storage_path('app/public'),
+ 'url' => env('APP_URL') . '/storage',
+ 'visibility' => 'public',
+ 'throw' => false,
+ 'report' => false,
+ ],
+
+ 's3' => [
+ 'driver' => 's3',
+ 'key' => env('AWS_ACCESS_KEY_ID'),
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
+ 'region' => env('AWS_DEFAULT_REGION'),
+ 'bucket' => env('AWS_BUCKET'),
+ 'url' => env('AWS_URL'),
+ 'endpoint' => env('AWS_ENDPOINT'),
+ 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
+ 'throw' => false,
+ 'report' => false,
+ ],
+
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Symbolic Links
+ |--------------------------------------------------------------------------
+ |
+ | Here you may configure the symbolic links that will be created when the
+ | `storage:link` Artisan command is executed. The array keys should be
+ | the locations of the links and the values should be their targets.
+ |
+ */
+
+ 'links' => [
+ public_path('storage') => storage_path('app/public'),
+ ],
+
+];
diff --git a/app/revendamais/config/lecturize.php b/app/revendamais/config/lecturize.php
new file mode 100644
index 00000000..f8bc268a
--- /dev/null
+++ b/app/revendamais/config/lecturize.php
@@ -0,0 +1,69 @@
+ [
+ /*
+ * Main table.
+ */
+ 'table' => 'addresses',
+
+ /*
+ * The model used for addresses.
+ */
+ 'model' => \Lecturize\Addresses\Models\Address::class,
+
+ /*
+ * Flag columns to be added to table.
+ */
+ 'flags' => ['public', 'primary', 'billing', 'shipping'],
+
+ /*
+ * The validation rules for an address.
+ */
+ 'rules' => [
+ 'street' => 'required|string|min:3|max:60',
+ 'street_extra' => 'nullable|string|max:60',
+ 'city' => 'required|string|min:3|max:60',
+ 'state' => 'nullable|string|min:3|max:60',
+ 'post_code' => 'required|min:4|max:10|AlphaDash',
+ 'country_id' => 'required|integer',
+ ],
+
+ /*
+ * Enable automatic geocoding to add coordinates (lon/lat) to addresses.
+ * If you enable this option, please make sure to also add a
+ * Google Maps API Key to your services' config file.
+ * The key used is 'services.google.maps.key'.
+ * Default: false
+ */
+ 'geocode' => false,
+ ],
+
+ /*
+ * Contacts
+ */
+ 'contacts' => [
+ /*
+ * Main table.
+ */
+ 'table' => 'contacts',
+
+ /*
+ * The model used for contacts.
+ */
+ 'model' => \Lecturize\Addresses\Models\Contact::class,
+
+ /*
+ * Flag columns to be added to table.
+ */
+ 'flags' => ['public', 'primary'],
+
+ /*
+ * The validation rules for a contact.
+ */
+ 'rules' => [],
+ ],
+];
diff --git a/app/revendamais/config/logging.php b/app/revendamais/config/logging.php
new file mode 100644
index 00000000..119f72f5
--- /dev/null
+++ b/app/revendamais/config/logging.php
@@ -0,0 +1,132 @@
+ env('LOG_CHANNEL', 'stack'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Deprecations Log Channel
+ |--------------------------------------------------------------------------
+ |
+ | This option controls the log channel that should be used to log warnings
+ | regarding deprecated PHP and library features. This allows you to get
+ | your application ready for upcoming major versions of dependencies.
+ |
+ */
+
+ 'deprecations' => [
+ 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
+ 'trace' => env('LOG_DEPRECATIONS_TRACE', false),
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Log Channels
+ |--------------------------------------------------------------------------
+ |
+ | Here you may configure the log channels for your application. Laravel
+ | utilizes the Monolog PHP logging library, which includes a variety
+ | of powerful log handlers and formatters that you're free to use.
+ |
+ | Available drivers: "single", "daily", "slack", "syslog",
+ | "errorlog", "monolog", "custom", "stack"
+ |
+ */
+
+ 'channels' => [
+
+ 'stack' => [
+ 'driver' => 'stack',
+ 'channels' => \explode(',', env('LOG_STACK', 'single')),
+ 'ignore_exceptions' => false,
+ ],
+
+ 'single' => [
+ 'driver' => 'single',
+ 'path' => storage_path('logs/laravel.log'),
+ 'level' => env('LOG_LEVEL', 'debug'),
+ 'replace_placeholders' => true,
+ ],
+
+ 'daily' => [
+ 'driver' => 'daily',
+ 'path' => storage_path('logs/laravel.log'),
+ 'level' => env('LOG_LEVEL', 'debug'),
+ 'days' => env('LOG_DAILY_DAYS', 14),
+ 'replace_placeholders' => true,
+ ],
+
+ 'slack' => [
+ 'driver' => 'slack',
+ 'url' => env('LOG_SLACK_WEBHOOK_URL'),
+ 'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'),
+ 'emoji' => env('LOG_SLACK_EMOJI', ':boom:'),
+ 'level' => env('LOG_LEVEL', 'critical'),
+ 'replace_placeholders' => true,
+ ],
+
+ 'papertrail' => [
+ 'driver' => 'monolog',
+ 'level' => env('LOG_LEVEL', 'debug'),
+ 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
+ 'handler_with' => [
+ 'host' => env('PAPERTRAIL_URL'),
+ 'port' => env('PAPERTRAIL_PORT'),
+ 'connectionString' => 'tls://' . env('PAPERTRAIL_URL') . ':' . env('PAPERTRAIL_PORT'),
+ ],
+ 'processors' => [PsrLogMessageProcessor::class],
+ ],
+
+ 'stderr' => [
+ 'driver' => 'monolog',
+ 'level' => env('LOG_LEVEL', 'debug'),
+ 'handler' => StreamHandler::class,
+ 'handler_with' => [
+ 'stream' => 'php://stderr',
+ ],
+ 'formatter' => env('LOG_STDERR_FORMATTER'),
+ 'processors' => [PsrLogMessageProcessor::class],
+ ],
+
+ 'syslog' => [
+ 'driver' => 'syslog',
+ 'level' => env('LOG_LEVEL', 'debug'),
+ 'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER),
+ 'replace_placeholders' => true,
+ ],
+
+ 'errorlog' => [
+ 'driver' => 'errorlog',
+ 'level' => env('LOG_LEVEL', 'debug'),
+ 'replace_placeholders' => true,
+ ],
+
+ 'null' => [
+ 'driver' => 'monolog',
+ 'handler' => NullHandler::class,
+ ],
+
+ 'emergency' => [
+ 'path' => storage_path('logs/laravel.log'),
+ ],
+
+ ],
+
+];
diff --git a/app/revendamais/config/mail.php b/app/revendamais/config/mail.php
new file mode 100644
index 00000000..ecee73c7
--- /dev/null
+++ b/app/revendamais/config/mail.php
@@ -0,0 +1,118 @@
+ env('MAIL_MAILER', 'log'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Mailer Configurations
+ |--------------------------------------------------------------------------
+ |
+ | Here you may configure all of the mailers used by your application plus
+ | their respective settings. Several examples have been configured for
+ | you and you are free to add your own as your application requires.
+ |
+ | Laravel supports a variety of mail "transport" drivers that can be used
+ | when delivering an email. You may specify which one you're using for
+ | your mailers below. You may also add additional mailers if needed.
+ |
+ | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
+ | "postmark", "resend", "log", "array",
+ | "failover", "roundrobin"
+ |
+ */
+
+ 'mailers' => [
+
+ 'smtp' => [
+ 'transport' => 'smtp',
+ 'scheme' => env('MAIL_SCHEME'),
+ 'url' => env('MAIL_URL'),
+ 'host' => env('MAIL_HOST', '127.0.0.1'),
+ 'port' => env('MAIL_PORT', 2525),
+ 'username' => env('MAIL_USERNAME'),
+ 'password' => env('MAIL_PASSWORD'),
+ 'timeout' => null,
+ 'local_domain' => env('MAIL_EHLO_DOMAIN', \parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
+ ],
+
+ 'ses' => [
+ 'transport' => 'ses',
+ ],
+
+ 'postmark' => [
+ 'transport' => 'postmark',
+ // 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'),
+ // 'client' => [
+ // 'timeout' => 5,
+ // ],
+ ],
+
+ 'resend' => [
+ 'transport' => 'resend',
+ ],
+
+ 'sendmail' => [
+ 'transport' => 'sendmail',
+ 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
+ ],
+
+ 'log' => [
+ 'transport' => 'log',
+ 'channel' => env('MAIL_LOG_CHANNEL'),
+ ],
+
+ 'array' => [
+ 'transport' => 'array',
+ ],
+
+ 'failover' => [
+ 'transport' => 'failover',
+ 'mailers' => [
+ 'smtp',
+ 'log',
+ ],
+ 'retry_after' => 60,
+ ],
+
+ 'roundrobin' => [
+ 'transport' => 'roundrobin',
+ 'mailers' => [
+ 'ses',
+ 'postmark',
+ ],
+ 'retry_after' => 60,
+ ],
+
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Global "From" Address
+ |--------------------------------------------------------------------------
+ |
+ | You may wish for all emails sent by your application to be sent from
+ | the same address. Here you may specify a name and address that is
+ | used globally for all emails that are sent by your application.
+ |
+ */
+
+ 'from' => [
+ 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
+ 'name' => env('MAIL_FROM_NAME', 'Example'),
+ ],
+
+];
diff --git a/app/revendamais/config/queue.php b/app/revendamais/config/queue.php
new file mode 100644
index 00000000..efe91bb0
--- /dev/null
+++ b/app/revendamais/config/queue.php
@@ -0,0 +1,112 @@
+ env('QUEUE_CONNECTION', 'database'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Queue Connections
+ |--------------------------------------------------------------------------
+ |
+ | Here you may configure the connection options for every queue backend
+ | used by your application. An example configuration is provided for
+ | each backend supported by Laravel. You're also free to add more.
+ |
+ | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null"
+ |
+ */
+
+ 'connections' => [
+
+ 'sync' => [
+ 'driver' => 'sync',
+ ],
+
+ 'database' => [
+ 'driver' => 'database',
+ 'connection' => env('DB_QUEUE_CONNECTION'),
+ 'table' => env('DB_QUEUE_TABLE', 'jobs'),
+ 'queue' => env('DB_QUEUE', 'default'),
+ 'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90),
+ 'after_commit' => false,
+ ],
+
+ 'beanstalkd' => [
+ 'driver' => 'beanstalkd',
+ 'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'),
+ 'queue' => env('BEANSTALKD_QUEUE', 'default'),
+ 'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90),
+ 'block_for' => 0,
+ 'after_commit' => false,
+ ],
+
+ 'sqs' => [
+ 'driver' => 'sqs',
+ 'key' => env('AWS_ACCESS_KEY_ID'),
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
+ 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
+ 'queue' => env('SQS_QUEUE', 'default'),
+ 'suffix' => env('SQS_SUFFIX'),
+ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
+ 'after_commit' => false,
+ ],
+
+ 'redis' => [
+ 'driver' => 'redis',
+ 'connection' => env('REDIS_QUEUE_CONNECTION', 'default'),
+ 'queue' => env('REDIS_QUEUE', 'default'),
+ 'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90),
+ 'block_for' => null,
+ 'after_commit' => false,
+ ],
+
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Job Batching
+ |--------------------------------------------------------------------------
+ |
+ | The following options configure the database and table that store job
+ | batching information. These options can be updated to any database
+ | connection and table which has been defined by your application.
+ |
+ */
+
+ 'batching' => [
+ 'database' => env('DB_CONNECTION', 'sqlite'),
+ 'table' => 'job_batches',
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Failed Queue Jobs
+ |--------------------------------------------------------------------------
+ |
+ | These options configure the behavior of failed queue job logging so you
+ | can control how and where failed jobs are stored. Laravel ships with
+ | support for storing failed jobs in a simple file or in a database.
+ |
+ | Supported drivers: "database-uuids", "dynamodb", "file", "null"
+ |
+ */
+
+ 'failed' => [
+ 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
+ 'database' => env('DB_CONNECTION', 'sqlite'),
+ 'table' => 'failed_jobs',
+ ],
+
+];
diff --git a/app/revendamais/config/sanctum.php b/app/revendamais/config/sanctum.php
new file mode 100644
index 00000000..ad8385eb
--- /dev/null
+++ b/app/revendamais/config/sanctum.php
@@ -0,0 +1,84 @@
+ \explode(',', env('SANCTUM_STATEFUL_DOMAINS', \sprintf(
+ '%s%s',
+ 'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1',
+ Sanctum::currentApplicationUrlWithPort(),
+ // Sanctum::currentRequestHost(),
+ ))),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Sanctum Guards
+ |--------------------------------------------------------------------------
+ |
+ | This array contains the authentication guards that will be checked when
+ | Sanctum is trying to authenticate a request. If none of these guards
+ | are able to authenticate the request, Sanctum will use the bearer
+ | token that's present on an incoming request for authentication.
+ |
+ */
+
+ 'guard' => ['web'],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Expiration Minutes
+ |--------------------------------------------------------------------------
+ |
+ | This value controls the number of minutes until an issued token will be
+ | considered expired. This will override any values set in the token's
+ | "expires_at" attribute, but first-party sessions are not affected.
+ |
+ */
+
+ 'expiration' => null,
+
+ /*
+ |--------------------------------------------------------------------------
+ | Token Prefix
+ |--------------------------------------------------------------------------
+ |
+ | Sanctum can prefix new tokens in order to take advantage of numerous
+ | security scanning initiatives maintained by open source platforms
+ | that notify developers if they commit tokens into repositories.
+ |
+ | See: https://docs.github.com/en/code-security/secret-scanning/about-secret-scanning
+ |
+ */
+
+ 'token_prefix' => env('SANCTUM_TOKEN_PREFIX', ''),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Sanctum Middleware
+ |--------------------------------------------------------------------------
+ |
+ | When authenticating your first-party SPA with Sanctum you may need to
+ | customize some of the middleware Sanctum uses while processing the
+ | request. You may change the middleware listed below as required.
+ |
+ */
+
+ 'middleware' => [
+ 'authenticate_session' => Laravel\Sanctum\Http\Middleware\AuthenticateSession::class,
+ 'encrypt_cookies' => Illuminate\Cookie\Middleware\EncryptCookies::class,
+ 'validate_csrf_token' => Illuminate\Foundation\Http\Middleware\ValidateCsrfToken::class,
+ ],
+
+];
diff --git a/app/revendamais/config/services.php b/app/revendamais/config/services.php
new file mode 100644
index 00000000..52ef31d4
--- /dev/null
+++ b/app/revendamais/config/services.php
@@ -0,0 +1,38 @@
+ [
+ 'token' => env('POSTMARK_TOKEN'),
+ ],
+
+ 'resend' => [
+ 'key' => env('RESEND_KEY'),
+ ],
+
+ 'ses' => [
+ 'key' => env('AWS_ACCESS_KEY_ID'),
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
+ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
+ ],
+
+ 'slack' => [
+ 'notifications' => [
+ 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
+ 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
+ ],
+ ],
+
+];
diff --git a/app/revendamais/config/session.php b/app/revendamais/config/session.php
new file mode 100644
index 00000000..8b61d8aa
--- /dev/null
+++ b/app/revendamais/config/session.php
@@ -0,0 +1,217 @@
+ env('SESSION_DRIVER', 'database'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Lifetime
+ |--------------------------------------------------------------------------
+ |
+ | Here you may specify the number of minutes that you wish the session
+ | to be allowed to remain idle before it expires. If you want them
+ | to expire immediately when the browser is closed then you may
+ | indicate that via the expire_on_close configuration option.
+ |
+ */
+
+ 'lifetime' => (int) env('SESSION_LIFETIME', 120),
+
+ 'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Encryption
+ |--------------------------------------------------------------------------
+ |
+ | This option allows you to easily specify that all of your session data
+ | should be encrypted before it's stored. All encryption is performed
+ | automatically by Laravel and you may use the session like normal.
+ |
+ */
+
+ 'encrypt' => env('SESSION_ENCRYPT', false),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session File Location
+ |--------------------------------------------------------------------------
+ |
+ | When utilizing the "file" session driver, the session files are placed
+ | on disk. The default storage location is defined here; however, you
+ | are free to provide another location where they should be stored.
+ |
+ */
+
+ 'files' => storage_path('framework/sessions'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Database Connection
+ |--------------------------------------------------------------------------
+ |
+ | When using the "database" or "redis" session drivers, you may specify a
+ | connection that should be used to manage these sessions. This should
+ | correspond to a connection in your database configuration options.
+ |
+ */
+
+ 'connection' => env('SESSION_CONNECTION'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Database Table
+ |--------------------------------------------------------------------------
+ |
+ | When using the "database" session driver, you may specify the table to
+ | be used to store sessions. Of course, a sensible default is defined
+ | for you; however, you're welcome to change this to another table.
+ |
+ */
+
+ 'table' => env('SESSION_TABLE', 'sessions'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Cache Store
+ |--------------------------------------------------------------------------
+ |
+ | When using one of the framework's cache driven session backends, you may
+ | define the cache store which should be used to store the session data
+ | between requests. This must match one of your defined cache stores.
+ |
+ | Affects: "dynamodb", "memcached", "redis"
+ |
+ */
+
+ 'store' => env('SESSION_STORE'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Sweeping Lottery
+ |--------------------------------------------------------------------------
+ |
+ | Some session drivers must manually sweep their storage location to get
+ | rid of old sessions from storage. Here are the chances that it will
+ | happen on a given request. By default, the odds are 2 out of 100.
+ |
+ */
+
+ 'lottery' => [2, 100],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Cookie Name
+ |--------------------------------------------------------------------------
+ |
+ | Here you may change the name of the session cookie that is created by
+ | the framework. Typically, you should not need to change this value
+ | since doing so does not grant a meaningful security improvement.
+ |
+ */
+
+ 'cookie' => env(
+ 'SESSION_COOKIE',
+ Str::slug(env('APP_NAME', 'laravel'), '_') . '_session'
+ ),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Cookie Path
+ |--------------------------------------------------------------------------
+ |
+ | The session cookie path determines the path for which the cookie will
+ | be regarded as available. Typically, this will be the root path of
+ | your application, but you're free to change this when necessary.
+ |
+ */
+
+ 'path' => env('SESSION_PATH', '/'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Cookie Domain
+ |--------------------------------------------------------------------------
+ |
+ | This value determines the domain and subdomains the session cookie is
+ | available to. By default, the cookie will be available to the root
+ | domain and all subdomains. Typically, this shouldn't be changed.
+ |
+ */
+
+ 'domain' => env('SESSION_DOMAIN'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | HTTPS Only Cookies
+ |--------------------------------------------------------------------------
+ |
+ | By setting this option to true, session cookies will only be sent back
+ | to the server if the browser has a HTTPS connection. This will keep
+ | the cookie from being sent to you when it can't be done securely.
+ |
+ */
+
+ 'secure' => env('SESSION_SECURE_COOKIE'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | HTTP Access Only
+ |--------------------------------------------------------------------------
+ |
+ | Setting this value to true will prevent JavaScript from accessing the
+ | value of the cookie and the cookie will only be accessible through
+ | the HTTP protocol. It's unlikely you should disable this option.
+ |
+ */
+
+ 'http_only' => env('SESSION_HTTP_ONLY', true),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Same-Site Cookies
+ |--------------------------------------------------------------------------
+ |
+ | This option determines how your cookies behave when cross-site requests
+ | take place, and can be used to mitigate CSRF attacks. By default, we
+ | will set this value to "lax" to permit secure cross-site requests.
+ |
+ | See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value
+ |
+ | Supported: "lax", "strict", "none", null
+ |
+ */
+
+ 'same_site' => env('SESSION_SAME_SITE', 'lax'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Partitioned Cookies
+ |--------------------------------------------------------------------------
+ |
+ | Setting this value to true will tie the cookie to the top-level site for
+ | a cross-site context. Partitioned cookies are accepted by the browser
+ | when flagged "secure" and the Same-Site attribute is set to "none".
+ |
+ */
+
+ 'partitioned' => env('SESSION_PARTITIONED_COOKIE', false),
+
+];
diff --git a/app/revendamais/config/tinker.php b/app/revendamais/config/tinker.php
new file mode 100644
index 00000000..c187942d
--- /dev/null
+++ b/app/revendamais/config/tinker.php
@@ -0,0 +1,50 @@
+ [
+ // App\Console\Commands\ExampleCommand::class,
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Auto Aliased Classes
+ |--------------------------------------------------------------------------
+ |
+ | Tinker will not automatically alias classes in your vendor namespaces
+ | but you may explicitly allow a subset of classes to get aliased by
+ | adding the names of each of those classes to the following list.
+ |
+ */
+
+ 'alias' => [
+ //
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Classes That Should Not Be Aliased
+ |--------------------------------------------------------------------------
+ |
+ | Typically, Tinker automatically aliases classes as you require them in
+ | Tinker. However, you may wish to never alias certain classes, which
+ | you may accomplish by listing the classes in the following array.
+ |
+ */
+
+ 'dont_alias' => [
+ 'App\Nova',
+ ],
+
+];
diff --git a/app/revendamais/database/.gitignore b/app/revendamais/database/.gitignore
new file mode 100644
index 00000000..9b19b93c
--- /dev/null
+++ b/app/revendamais/database/.gitignore
@@ -0,0 +1 @@
+*.sqlite*
diff --git a/app/revendamais/database/data/countries.json b/app/revendamais/database/data/countries.json
new file mode 100644
index 00000000..d95f6cf2
--- /dev/null
+++ b/app/revendamais/database/data/countries.json
@@ -0,0 +1,43238 @@
+[
+ {
+ "name": {
+ "common": "Aruba",
+ "official": "Aruba",
+ "native": {
+ "nld": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "pap": {
+ "official": "Aruba",
+ "common": "Aruba"
+ }
+ }
+ },
+ "tld": [
+ ".aw"
+ ],
+ "cca2": "AW",
+ "ccn3": "533",
+ "cca3": "ABW",
+ "cioc": "ARU",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "AWG": {
+ "name": "Aruban florin",
+ "symbol": "\u0192"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "97"
+ ]
+ },
+ "capital": [
+ "Oranjestad"
+ ],
+ "altSpellings": [
+ "AW"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "nld": "Dutch",
+ "pap": "Papiamento"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0623\u0631\u0648\u0628\u0627",
+ "common": "\u0623\u0631\u0648\u0628\u0627"
+ },
+ "bre": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "ces": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "deu": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "est": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "fin": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "fra": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "hrv": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "hun": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "ita": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "jpn": {
+ "official": "\u30a2\u30eb\u30d0",
+ "common": "\u30a2\u30eb\u30d0"
+ },
+ "kor": {
+ "official": "\uc544\ub8e8\ubc14",
+ "common": "\uc544\ub8e8\ubc14"
+ },
+ "nld": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "per": {
+ "official": "\u0622\u0631\u0648\u0628\u0627",
+ "common": "\u0622\u0631\u0648\u0628\u0627"
+ },
+ "pol": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "por": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "rus": {
+ "official": "\u0410\u0440\u0443\u0431\u0430",
+ "common": "\u0410\u0440\u0443\u0431\u0430"
+ },
+ "slk": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "spa": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "srp": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "swe": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "tur": {
+ "official": "Aruba",
+ "common": "Aruba"
+ },
+ "urd": {
+ "official": "\u0627\u0631\u0648\u0628\u0627",
+ "common": "\u0627\u0631\u0648\u0628\u0627"
+ },
+ "zho": {
+ "official": "\u963f\u9c81\u5df4",
+ "common": "\u963f\u9c81\u5df4"
+ }
+ },
+ "latlng": [
+ 12.5,
+ -69.96666666
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 180,
+ "flag": "\ud83c\udde6\ud83c\uddfc",
+ "demonyms": {
+ "eng": {
+ "f": "Aruban",
+ "m": "Aruban"
+ },
+ "fra": {
+ "f": "Arubaise",
+ "m": "Arubais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Afghanistan",
+ "official": "Islamic Republic of Afghanistan",
+ "native": {
+ "prs": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0633\u0644\u0627\u0645\u06cc \u0627\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646",
+ "common": "\u0627\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646"
+ },
+ "pus": {
+ "official": "\u062f \u0627\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646 \u0627\u0633\u0644\u0627\u0645\u064a \u062c\u0645\u0647\u0648\u0631\u06cc\u062a",
+ "common": "\u0627\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646"
+ },
+ "tuk": {
+ "official": "Owganystan Yslam Respublikasy",
+ "common": "Owganystan"
+ }
+ }
+ },
+ "tld": [
+ ".af"
+ ],
+ "cca2": "AF",
+ "ccn3": "004",
+ "cca3": "AFG",
+ "cioc": "AFG",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "AFN": {
+ "name": "Afghan afghani",
+ "symbol": "\u060b"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "3"
+ ]
+ },
+ "capital": [
+ "Kabul"
+ ],
+ "altSpellings": [
+ "AF",
+ "Af\u0121\u0101nist\u0101n"
+ ],
+ "region": "Asia",
+ "subregion": "Southern Asia",
+ "languages": {
+ "prs": "Dari",
+ "pus": "Pashto",
+ "tuk": "Turkmen"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0623\u0641\u0641\u0627\u0646\u0633\u062a\u0627\u0646 \u0627\u0644\u0625\u0633\u0644\u0627\u0645\u064a\u0629",
+ "common": "\u0623\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646"
+ },
+ "bre": {
+ "official": "Republik Islamek Afghanistan",
+ "common": "Afghanistan"
+ },
+ "ces": {
+ "official": "Afgh\u00e1nsk\u00e1 isl\u00e1msk\u00e1 republika",
+ "common": "Afgh\u00e1nist\u00e1n"
+ },
+ "deu": {
+ "official": "Islamische Republik Afghanistan",
+ "common": "Afghanistan"
+ },
+ "est": {
+ "official": "Afganistani Islamivabariik",
+ "common": "Afganistan"
+ },
+ "fin": {
+ "official": "Afganistanin islamilainen tasavalta",
+ "common": "Afganistan"
+ },
+ "fra": {
+ "official": "R\u00e9publique islamique d'Afghanistan",
+ "common": "Afghanistan"
+ },
+ "hrv": {
+ "official": "Islamska Republika Afganistan",
+ "common": "Afganistan"
+ },
+ "hun": {
+ "official": "Afganiszt\u00e1ni Iszl\u00e1m K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Afganiszt\u00e1n"
+ },
+ "ita": {
+ "official": "Repubblica islamica dell'Afghanistan",
+ "common": "Afghanistan"
+ },
+ "jpn": {
+ "official": "\u30a2\u30d5\u30ac\u30cb\u30b9\u30bf\u30f3\u30fb\u30a4\u30b9\u30e9\u30e0\u5171\u548c\u56fd",
+ "common": "\u30a2\u30d5\u30ac\u30cb\u30b9\u30bf\u30f3"
+ },
+ "kor": {
+ "official": "\uc544\ud504\uac00\ub2c8\uc2a4\ud0c4 \uc774\uc2ac\ub78c \uacf5\ud654\uad6d",
+ "common": "\uc544\ud504\uac00\ub2c8\uc2a4\ud0c4"
+ },
+ "nld": {
+ "official": "Islamitische Republiek Afghanistan",
+ "common": "Afghanistan"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0633\u0644\u0627\u0645\u06cc \u0627\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646",
+ "common": "\u0627\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646"
+ },
+ "pol": {
+ "official": "Islamska Republika Afganistanu",
+ "common": "Afganistan"
+ },
+ "por": {
+ "official": "Rep\u00fablica Isl\u00e2mica do Afeganist\u00e3o",
+ "common": "Afeganist\u00e3o"
+ },
+ "rus": {
+ "official": "\u0418\u0441\u043b\u0430\u043c\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0410\u0444\u0433\u0430\u043d\u0438\u0441\u0442\u0430\u043d",
+ "common": "\u0410\u0444\u0433\u0430\u043d\u0438\u0441\u0442\u0430\u043d"
+ },
+ "slk": {
+ "official": "Afg\u00e1nsky islamsk\u00fd \u0161t\u00e1t",
+ "common": "Afganistan"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Isl\u00e1mica de Afganist\u00e1n",
+ "common": "Afganist\u00e1n"
+ },
+ "srp": {
+ "official": "Islamska Republika Avganistan",
+ "common": "Avganistan"
+ },
+ "swe": {
+ "official": "Islamiska republiken Afghanistan",
+ "common": "Afghanistan"
+ },
+ "tur": {
+ "official": "Afganistan \u0130slam Cumhuriyeti",
+ "common": "Afganistan"
+ },
+ "urd": {
+ "official": "\u0627\u0633\u0644\u0627\u0645\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0627\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646",
+ "common": "\u0627\u0641\u063a\u0627\u0646\u0633\u062a\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u963f\u5bcc\u6c57\u4f0a\u65af\u5170\u5171\u548c\u56fd",
+ "common": "\u963f\u5bcc\u6c57"
+ }
+ },
+ "latlng": [
+ 33,
+ 65
+ ],
+ "landlocked": true,
+ "borders": [
+ "IRN",
+ "PAK",
+ "TKM",
+ "UZB",
+ "TJK",
+ "CHN"
+ ],
+ "area": 652230,
+ "flag": "\ud83c\udde6\ud83c\uddeb",
+ "demonyms": {
+ "eng": {
+ "f": "Afghan",
+ "m": "Afghan"
+ },
+ "fra": {
+ "f": "Afghane",
+ "m": "Afghan"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Angola",
+ "official": "Republic of Angola",
+ "native": {
+ "por": {
+ "official": "Rep\u00fablica de Angola",
+ "common": "Angola"
+ }
+ }
+ },
+ "tld": [
+ ".ao"
+ ],
+ "cca2": "AO",
+ "ccn3": "024",
+ "cca3": "AGO",
+ "cioc": "ANG",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "AOA": {
+ "name": "Angolan kwanza",
+ "symbol": "Kz"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "44"
+ ]
+ },
+ "capital": [
+ "Luanda"
+ ],
+ "altSpellings": [
+ "AO",
+ "Rep\u00fablica de Angola",
+ "\u0281\u025bpublika de an'\u0261\u0254la"
+ ],
+ "region": "Africa",
+ "subregion": "Middle Africa",
+ "languages": {
+ "por": "Portuguese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0623\u0646\u063a\u0648\u0644\u0627",
+ "common": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0623\u0646\u063a\u0648\u0644\u0627"
+
+ },
+ "bre": {
+ "official": "Republik Angola",
+ "common": "Angola"
+ },
+ "ces": {
+ "official": "Angolsk\u00e1 republika",
+ "common": "Angola"
+ },
+ "deu": {
+ "official": "Republik Angola",
+ "common": "Angola"
+ },
+ "est": {
+ "official": "Angola Vabariik",
+ "common": "Angola"
+ },
+ "fin": {
+ "official": "Angolan tasavalta",
+ "common": "Angola"
+ },
+ "fra": {
+ "official": "R\u00e9publique d'Angola",
+ "common": "Angola"
+ },
+ "hrv": {
+ "official": "Republika Angola",
+ "common": "Angola"
+ },
+ "hun": {
+ "official": "Angola",
+ "common": "Angola"
+ },
+ "ita": {
+ "official": "Repubblica dell'Angola",
+ "common": "Angola"
+ },
+ "jpn": {
+ "official": "\u30a2\u30f3\u30b4\u30e9\u5171\u548c\u56fd",
+ "common": "\u30a2\u30f3\u30b4\u30e9"
+ },
+ "kor": {
+ "official": "\uc559\uace8\ub77c \uacf5\ud654\uad6d",
+ "common": "\uc559\uace8\ub77c"
+ },
+ "nld": {
+ "official": "Republiek Angola",
+ "common": "Angola"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0622\u0646\u06af\u0648\u0644\u0627",
+ "common": "\u0622\u0646\u06af\u0648\u0644\u0627"
+ },
+ "pol": {
+ "official": "Republika Angoli",
+ "common": "Angola"
+ },
+ "por": {
+ "official": "Rep\u00fablica de Angola",
+ "common": "Angola"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0410\u043d\u0433\u043e\u043b\u0430",
+ "common": "\u0410\u043d\u0433\u043e\u043b\u0430"
+ },
+ "slk": {
+ "official": "Angolsk\u00e1 republika",
+ "common": "Angola"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Angola",
+ "common": "Angola"
+ },
+ "srp": {
+ "official": "Republika Angola",
+ "common": "Angola"
+ },
+ "swe": {
+ "official": "Republiken Angola",
+ "common": "Angola"
+ },
+ "tur": {
+ "official": "Angola Cumhuriyeti",
+ "common": "Angola"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0627\u0646\u06af\u0648\u0644\u06c1",
+ "common": "\u0627\u0646\u06af\u0648\u0644\u06c1"
+ },
+ "zho": {
+ "official": "\u5b89\u54e5\u62c9\u5171\u548c\u56fd",
+ "common": "\u5b89\u54e5\u62c9"
+ }
+ },
+ "latlng": [
+ -12.5,
+ 18.5
+ ],
+ "landlocked": false,
+ "borders": [
+ "COG",
+ "COD",
+ "ZMB",
+ "NAM"
+ ],
+ "area": 1246700,
+ "flag": "\ud83c\udde6\ud83c\uddf4",
+ "demonyms": {
+ "eng": {
+ "f": "Angolan",
+ "m": "Angolan"
+ },
+ "fra": {
+ "f": "Angolaise",
+ "m": "Angolais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Anguilla",
+ "official": "Anguilla",
+ "native": {
+ "eng": {
+ "official": "Anguilla",
+ "common": "Anguilla"
+ }
+ }
+ },
+ "tld": [
+ ".ai"
+ ],
+ "cca2": "AI",
+ "ccn3": "660",
+ "cca3": "AIA",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "XCD": {
+ "name": "Eastern Caribbean dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "264"
+ ]
+ },
+ "capital": [
+ "The Valley"
+ ],
+ "altSpellings": [
+ "AI"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0623\u0646\u063a\u0648\u064a\u0644\u0627",
+ "common": "\u0623\u0646\u063a\u0648\u064a\u0644\u0627"
+ },
+ "bre": {
+ "official": "Anguilla",
+ "common": "Anguilla"
+ },
+ "ces": {
+ "official": "Anguilla",
+ "common": "Anguilla"
+ },
+ "deu": {
+ "official": "Anguilla",
+ "common": "Anguilla"
+ },
+ "est": {
+ "official": "Anguilla",
+ "common": "Anguilla"
+ },
+ "fin": {
+ "official": "Anguilla",
+ "common": "Anguilla"
+ },
+ "fra": {
+ "official": "Anguilla",
+ "common": "Anguilla"
+ },
+ "hrv": {
+ "official": "Anguilla",
+ "common": "Angvila"
+ },
+ "hun": {
+ "official": "Anguilla",
+ "common": "Anguilla"
+ },
+ "ita": {
+ "official": "Anguilla",
+ "common": "Anguilla"
+ },
+ "jpn": {
+ "official": "\u30a2\u30f3\u30ae\u30e9",
+ "common": "\u30a2\u30f3\u30ae\u30e9"
+ },
+ "kor": {
+ "official": "\uc575\uadc8\ub77c",
+ "common": "\uc575\uadc8\ub77c"
+ },
+ "nld": {
+ "official": "Anguilla",
+ "common": "Anguilla"
+ },
+ "per": {
+ "official": "\u0622\u0646\u06af\u0648\u06cc\u0644\u0627",
+ "common": "\u0622\u0646\u06af\u0648\u06cc\u0644\u0627"
+ },
+ "pol": {
+ "official": "Anguilla",
+ "common": "Anguilla"
+ },
+ "por": {
+ "official": "Anguilla",
+ "common": "Anguilla"
+ },
+ "rus": {
+ "official": "\u0410\u043d\u0433\u0438\u043b\u044c\u044f",
+ "common": "\u0410\u043d\u0433\u0438\u043b\u044c\u044f"
+ },
+ "slk": {
+ "official": "Anguilla",
+ "common": "Anguilla"
+ },
+ "spa": {
+ "official": "Anguila",
+ "common": "Anguilla"
+ },
+ "srp": {
+ "official": "Angvila",
+ "common": "Angvila"
+ },
+ "swe": {
+ "official": "Anguilla",
+ "common": "Anguilla"
+ },
+ "tur": {
+ "official": "Anguilla",
+ "common": "Anguilla"
+ },
+ "urd": {
+ "official": "\u0627\u06cc\u0646\u06af\u0648\u06cc\u0644\u0627",
+ "common": "\u0627\u06cc\u0646\u06af\u0648\u06cc\u0644\u0627"
+ },
+ "zho": {
+ "official": "\u5b89\u572d\u62c9",
+ "common": "\u5b89\u572d\u62c9"
+ }
+ },
+ "latlng": [
+ 18.25,
+ -63.16666666
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 91,
+ "flag": "\ud83c\udde6\ud83c\uddee",
+ "demonyms": {
+ "eng": {
+ "f": "Anguillian",
+ "m": "Anguillian"
+ },
+ "fra": {
+ "f": "Anguillane",
+ "m": "Anguillan"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "\u00c5land Islands",
+ "official": "\u00c5land Islands",
+ "native": {
+ "swe": {
+ "official": "Landskapet \u00c5land",
+ "common": "\u00c5land"
+ }
+ }
+ },
+ "tld": [
+ ".ax"
+ ],
+ "cca2": "AX",
+ "ccn3": "248",
+ "cca3": "ALA",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "5818"
+ ]
+ },
+ "capital": [
+ "Mariehamn"
+ ],
+ "altSpellings": [
+ "AX",
+ "Aaland",
+ "Aland",
+ "Ahvenanmaa"
+ ],
+ "region": "Europe",
+ "subregion": "Northern Europe",
+ "languages": {
+ "swe": "Swedish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0632\u0631 \u0623\u0648\u0644\u0627\u0646\u062f",
+ "common": "\u062c\u0632\u0631 \u0623\u0648\u0644\u0627\u0646\u062f"
+ },
+ "bre": {
+ "official": "Inizi \u00c5land",
+ "common": "\u00c5land"
+ },
+ "ces": {
+ "official": "\u00c5landsk\u00e9 ostrovy",
+ "common": "\u00c5landy"
+ },
+ "deu": {
+ "official": "\u00c5land-Inseln",
+ "common": "\u00c5land"
+ },
+ "est": {
+ "official": "Ahvenamaa maakond",
+ "common": "Ahvenamaa"
+ },
+ "fin": {
+ "official": "Ahvenanmaan maakunta",
+ "common": "Ahvenanmaa"
+ },
+ "fra": {
+ "official": "Ahvenanmaa",
+ "common": "Ahvenanmaa"
+ },
+ "hrv": {
+ "official": "Aland Islands",
+ "common": "\u00c5landski otoci"
+ },
+ "hun": {
+ "official": "\u00c5land-szigetek",
+ "common": "\u00c5land-szigetek"
+ },
+ "ita": {
+ "official": "Isole \u00c5land",
+ "common": "Isole Aland"
+ },
+ "jpn": {
+ "official": "\u30aa\u30fc\u30e9\u30f3\u30c9\u8af8\u5cf6",
+ "common": "\u30aa\u30fc\u30e9\u30f3\u30c9"
+ },
+ "kor": {
+ "official": "\uc62c\ub780\ub4dc \uc81c\ub3c4",
+ "common": "\uc62c\ub780\ub4dc \uc81c\ub3c4"
+ },
+ "nld": {
+ "official": "\u00c5land eilanden",
+ "common": "\u00c5landeilanden"
+ },
+ "per": {
+ "official": "\u062c\u0632\u0627\u06cc\u0631 \u0627\u0644\u0646\u062f",
+ "common": "\u062c\u0632\u0627\u06cc\u0631 \u0627\u0644\u0646\u062f"
+ },
+ "pol": {
+ "official": "Wyspy Alandzkie",
+ "common": "Wyspy Alandzkie"
+ },
+ "por": {
+ "official": "Ilhas \u00c5land",
+ "common": "Al\u00e2ndia"
+ },
+ "rus": {
+ "official": "\u0410\u043b\u0430\u043d\u0434\u0441\u043a\u0438\u0435 \u043e\u0441\u0442\u0440\u043e\u0432\u0430",
+ "common": "\u0410\u043b\u0430\u043d\u0434\u0441\u043a\u0438\u0435 \u043e\u0441\u0442\u0440\u043e\u0432\u0430"
+ },
+ "slk": {
+ "official": "Alandsk\u00e9 ostrovy",
+ "common": "Alandy"
+ },
+ "spa": {
+ "official": "Islas \u00c5land",
+ "common": "Alandia"
+ },
+ "srp": {
+ "official": "Olandska Ostrva",
+ "common": "Olandska Ostrva"
+ },
+ "swe": {
+ "official": "\u00c5land",
+ "common": "\u00c5land"
+ },
+ "tur": {
+ "official": "\u00c5land Adalar\u0131",
+ "common": "\u00c5land"
+ },
+ "urd": {
+ "official": "\u062c\u0632\u0627\u0626\u0631 \u0627\u0648\u0644\u0646\u062f",
+ "common": "\u062c\u0632\u0627\u0626\u0631 \u0627\u0648\u0644\u0646\u062f"
+ },
+ "zho": {
+ "official": "\u5965\u5170\u7fa4\u5c9b",
+ "common": "\u5965\u5170\u7fa4\u5c9b"
+ }
+ },
+ "latlng": [
+ 60.116667,
+ 19.9
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 1580,
+ "flag": "\ud83c\udde6\ud83c\uddfd",
+ "demonyms": {
+ "eng": {
+ "f": "\u00c5landish",
+ "m": "\u00c5landish"
+ },
+ "fra": {
+ "f": "\u00c5landaise",
+ "m": "\u00c5landais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Albania",
+ "official": "Republic of Albania",
+ "native": {
+ "sqi": {
+ "official": "Republika e Shqip\u00ebris\u00eb",
+ "common": "Shqip\u00ebria"
+ }
+ }
+ },
+ "tld": [
+ ".al"
+ ],
+ "cca2": "AL",
+ "ccn3": "008",
+ "cca3": "ALB",
+ "cioc": "ALB",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "ALL": {
+ "name": "Albanian lek",
+ "symbol": "L"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "55"
+ ]
+ },
+ "capital": [
+ "Tirana"
+ ],
+ "altSpellings": [
+ "AL",
+ "Shqip\u00ebri",
+ "Shqip\u00ebria",
+ "Shqipnia"
+ ],
+ "region": "Europe",
+ "subregion": "Southeast Europe",
+ "languages": {
+ "sqi": "Albanian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0623\u0644\u0628\u0627\u0646\u064a\u0627",
+ "common": "\u0623\u0644\u0628\u0627\u0646\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Albania",
+ "common": "Albania"
+ },
+ "ces": {
+ "official": "Alb\u00e1nsk\u00e1 republika",
+ "common": "Alb\u00e1nie"
+ },
+ "deu": {
+ "official": "Republik Albanien",
+ "common": "Albanien"
+ },
+ "est": {
+ "official": "Albaania Vabariik",
+ "common": "Albaania"
+ },
+ "fin": {
+ "official": "Albanian tasavalta",
+ "common": "Albania"
+ },
+ "fra": {
+ "official": "R\u00e9publique d'Albanie",
+ "common": "Albanie"
+ },
+ "hrv": {
+ "official": "Republika Albanija",
+ "common": "Albanija"
+ },
+ "hun": {
+ "official": "Alb\u00e1n K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Alb\u00e1nia"
+ },
+ "ita": {
+ "official": "Repubblica d'Albania",
+ "common": "Albania"
+ },
+ "jpn": {
+ "official": "\u30a2\u30eb\u30d0\u30cb\u30a2\u5171\u548c\u56fd",
+ "common": "\u30a2\u30eb\u30d0\u30cb\u30a2"
+ },
+ "kor": {
+ "official": "\uc54c\ubc14\ub2c8\uc544 \uacf5\ud654\uad6d",
+ "common": "\uc54c\ubc14\ub2c8\uc544"
+ },
+ "nld": {
+ "official": "Republiek Albani\u00eb",
+ "common": "Albani\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0622\u0644\u0628\u0627\u0646\u06cc",
+ "common": "\u0622\u0644\u0628\u0627\u0646\u06cc"
+ },
+ "pol": {
+ "official": "Republika Albanii",
+ "common": "Albania"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Alb\u00e2nia",
+ "common": "Alb\u00e2nia"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0410\u043b\u0431\u0430\u043d\u0438\u044f",
+ "common": "\u0410\u043b\u0431\u0430\u043d\u0438\u044f"
+ },
+ "slk": {
+ "official": "Alb\u00e1nska republika",
+ "common": "Alb\u00e1nsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Albania",
+ "common": "Albania"
+ },
+ "srp": {
+ "official": "Republika Albanija",
+ "common": "Albanija"
+ },
+ "swe": {
+ "official": "Republiken Albanien",
+ "common": "Albanien"
+ },
+ "tur": {
+ "official": "Arnavutluk Cumhuriyeti",
+ "common": "Arnavutluk"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0627\u0644\u0628\u0627\u0646\u06cc\u0627",
+ "common": "\u0627\u0644\u0628\u0627\u0646\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u963f\u5c14\u5df4\u5c3c\u4e9a\u5171\u548c\u56fd",
+ "common": "\u963f\u5c14\u5df4\u5c3c\u4e9a"
+ }
+ },
+ "latlng": [
+ 41,
+ 20
+ ],
+ "landlocked": false,
+ "borders": [
+ "MNE",
+ "GRC",
+ "MKD",
+ "UNK"
+ ],
+ "area": 28748,
+ "flag": "\ud83c\udde6\ud83c\uddf1",
+ "demonyms": {
+ "eng": {
+ "f": "Albanian",
+ "m": "Albanian"
+ },
+ "fra": {
+ "f": "Albanaise",
+ "m": "Albanais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Andorra",
+ "official": "Principality of Andorra",
+ "native": {
+ "cat": {
+ "official": "Principat d'Andorra",
+ "common": "Andorra"
+ }
+ }
+ },
+ "tld": [
+ ".ad"
+ ],
+ "cca2": "AD",
+ "ccn3": "020",
+ "cca3": "AND",
+ "cioc": "AND",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "76"
+ ]
+ },
+ "capital": [
+ "Andorra la Vella"
+ ],
+ "altSpellings": [
+ "AD",
+ "Principality of Andorra",
+ "Principat d'Andorra"
+ ],
+ "region": "Europe",
+ "subregion": "Southern Europe",
+ "languages": {
+ "cat": "Catalan"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0625\u0645\u0627\u0631\u0629 \u0623\u0646\u062f\u0648\u0631\u0627",
+ "common": "\u0623\u0646\u062f\u0648\u0631\u0627"
+ },
+ "bre": {
+ "official": "Priñselezh Andorra",
+ "common": "Andorra"
+ },
+ "ces": {
+ "official": "Andorrsk\u00e9 kn\u00ed\u017eectv\u00ed",
+ "common": "Andorra"
+ },
+ "deu": {
+ "official": "F\u00fcrstentum Andorra",
+ "common": "Andorra"
+ },
+ "est": {
+ "official": "Andorra V\u00fcrstiriik",
+ "common": "Andorra"
+ },
+ "fin": {
+ "official": "Andorran ruhtinaskunta",
+ "common": "Andorra"
+ },
+ "fra": {
+ "official": "Principaut\u00e9 d'Andorre",
+ "common": "Andorre"
+ },
+ "hrv": {
+ "official": "Kne\u017eevina Andora",
+ "common": "Andora"
+ },
+ "hun": {
+ "official": "Andorra",
+ "common": "Andorra"
+ },
+ "ita": {
+ "official": "Principato di Andorra",
+ "common": "Andorra"
+ },
+ "jpn": {
+ "official": "\u30a2\u30f3\u30c9\u30e9\u516c\u56fd",
+ "common": "\u30a2\u30f3\u30c9\u30e9"
+ },
+ "kor": {
+ "official": "\uc548\ub3c4\ub77c \uacf5\uad6d",
+ "common": "\uc548\ub3c4\ub77c"
+ },
+ "nld": {
+ "official": "Prinsdom Andorra",
+ "common": "Andorra"
+ },
+ "per": {
+ "official": "\u0634\u0627\u0647\u0632\u0627\u062f\u0647\u200c\u0646\u0634\u06cc\u0646 \u0622\u0646\u062f\u0648\u0631\u0627",
+ "common": "\u0622\u0646\u062f\u0648\u0631\u0627"
+ },
+ "pol": {
+ "official": "Ksi\u0119stwo Andory",
+ "common": "Andora"
+ },
+ "por": {
+ "official": "Principado de Andorra",
+ "common": "Andorra"
+ },
+ "rus": {
+ "official": "\u041a\u043d\u044f\u0436\u0435\u0441\u0442\u0432\u043e \u0410\u043d\u0434\u043e\u0440\u0440\u0430",
+ "common": "\u0410\u043d\u0434\u043e\u0440\u0440\u0430"
+ },
+ "slk": {
+ "official": "Andorrsk\u00e9 knie\u017eatstvo",
+ "common": "Andorra"
+ },
+ "spa": {
+ "official": "Principado de Andorra",
+ "common": "Andorra"
+ },
+ "srp": {
+ "official": "Kne\u017eevina Andora",
+ "common": "Andora"
+ },
+ "swe": {
+ "official": "Furstend\u00f6met Andorra",
+ "common": "Andorra"
+ },
+ "tur": {
+ "official": "Andorra Prensli\u011fi",
+ "common": "Andorra"
+ },
+ "urd": {
+ "official": "\u0627\u0645\u0627\u0631\u0627\u062a\u0650 \u0627\u0646\u0688\u0648\u0631\u0627",
+ "common": "\u0627\u0646\u0688\u0648\u0631\u0627"
+ },
+ "zho": {
+ "official": "\u5b89\u9053\u5c14\u516c\u56fd",
+ "common": "\u5b89\u9053\u5c14"
+ }
+ },
+ "latlng": [
+ 42.5,
+ 1.5
+ ],
+ "landlocked": true,
+ "borders": [
+ "FRA",
+ "ESP"
+ ],
+ "area": 468,
+ "flag": "\ud83c\udde6\ud83c\udde9",
+ "demonyms": {
+ "eng": {
+ "f": "Andorran",
+ "m": "Andorran"
+ },
+ "fra": {
+ "f": "Andorrane",
+ "m": "Andorran"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "United Arab Emirates",
+ "official": "United Arab Emirates",
+ "native": {
+ "ara": {
+ "official": "\u0627\u0644\u0625\u0645\u0627\u0631\u0627\u062a \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0645\u062a\u062d\u062f\u0629",
+ "common": "\u0627\u0644\u0625\u0645\u0627\u0631\u0627\u062a"
+ }
+ }
+ },
+ "tld": [
+ ".ae",
+ "\u0627\u0645\u0627\u0631\u0627\u062a."
+ ],
+ "cca2": "AE",
+ "ccn3": "784",
+ "cca3": "ARE",
+ "cioc": "UAE",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "AED": {
+ "name": "United Arab Emirates dirham",
+ "symbol": "\u062f.\u0625"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "71"
+ ]
+ },
+ "capital": [
+ "Abu Dhabi"
+ ],
+ "altSpellings": [
+ "AE",
+ "UAE",
+ "Emirates"
+ ],
+ "region": "Asia",
+ "subregion": "Western Asia",
+ "languages": {
+ "ara": "Arabic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u0625\u0645\u0627\u0631\u0627\u062a \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0645\u062a\u062d\u062f\u0629",
+ "common": "\u0627\u0644\u0625\u0645\u0627\u0631\u0627\u062a"
+ },
+ "bre": {
+ "official": "Emirelezhio\u00f9 Arab Unanet",
+ "common": "Emirelezhio\u00f9 Arab Unanet"
+ },
+ "ces": {
+ "official": "Spojen\u00e9 arabsk\u00e9 emir\u00e1ty",
+ "common": "Spojen\u00e9 arabsk\u00e9 emir\u00e1ty"
+ },
+ "deu": {
+ "official": "Vereinigte Arabische Emirate",
+ "common": "Vereinigte Arabische Emirate"
+ },
+ "est": {
+ "official": "Araabia \u00dchendemiraadid",
+ "common": "Araabia \u00dchendemiraadid"
+ },
+ "fin": {
+ "official": "Yhdistyneet arabiemiirikunnat",
+ "common": "Arabiemiraatit"
+ },
+ "fra": {
+ "official": "\u00c9mirats arabes unis",
+ "common": "\u00c9mirats arabes unis"
+ },
+ "hrv": {
+ "official": "Ujedinjeni Arapski Emirati",
+ "common": "Ujedinjeni Arapski Emirati"
+ },
+ "hun": {
+ "official": "Egyes\u00fclt Arab Em\u00edrs\u00e9gek",
+ "common": "Egyes\u00fclt Arab Em\u00edrs\u00e9gek"
+ },
+ "ita": {
+ "official": "Emirati Arabi Uniti",
+ "common": "Emirati Arabi Uniti"
+ },
+ "jpn": {
+ "official": "\u30a2\u30e9\u30d6\u9996\u9577\u56fd\u9023\u90a6",
+ "common": "UAE"
+ },
+ "kor": {
+ "official": "\uc544\ub78d \ud1a0\ud6c4\uad6d \uc5f0\ubc29",
+ "common": "\uc544\ub78d\uc5d0\ubbf8\ub9ac\ud2b8"
+ },
+ "nld": {
+ "official": "Verenigde Arabische Emiraten",
+ "common": "Verenigde Arabische Emiraten"
+ },
+ "per": {
+ "official": "\u0627\u0645\u0627\u0631\u0627\u062a \u0645\u062a\u062d\u062f\u0647 \u0639\u0631\u0628\u06cc",
+ "common": "\u0627\u0645\u0627\u0631\u0627\u062a"
+ },
+ "pol": {
+ "official": "Zjednoczone Emiraty Arabskie",
+ "common": "Zjednoczone Emiraty Arabskie"
+ },
+ "por": {
+ "official": "Emirados \u00c1rabes Unidos",
+ "common": "Emirados \u00c1rabes Unidos"
+ },
+ "rus": {
+ "official": "\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0435\u043d\u043d\u044b\u0435 \u0410\u0440\u0430\u0431\u0441\u043a\u0438\u0435 \u042d\u043c\u0438\u0440\u0430\u0442\u044b",
+ "common": "\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0451\u043d\u043d\u044b\u0435 \u0410\u0440\u0430\u0431\u0441\u043a\u0438\u0435 \u042d\u043c\u0438\u0440\u0430\u0442\u044b"
+ },
+ "slk": {
+ "official": "Spojen\u00e9 arabsk\u00e9 emir\u00e1ty",
+ "common": "Spojen\u00e9 arabsk\u00e9 emir\u00e1ty"
+ },
+ "spa": {
+ "official": "Emiratos \u00c1rabes Unidos",
+ "common": "Emiratos \u00c1rabes Unidos"
+ },
+ "srp": {
+ "official": "Ujedinjeni Arapski Emirati",
+ "common": "Ujedinjeni Arapski Emirati"
+ },
+ "swe": {
+ "official": "F\u00f6renade Arabemiraten",
+ "common": "F\u00f6renade Arabemiraten"
+ },
+ "tur": {
+ "official": "Birle\u015fik Arap Emirlikleri",
+ "common": "Birle\u015fik Arap Emirlikleri"
+ },
+ "urd": {
+ "official": "\u0645\u062a\u062d\u062f\u06c1 \u0639\u0631\u0628 \u0627\u0645\u0627\u0631\u0627\u062a",
+ "common": "\u0645\u062a\u062d\u062f\u06c1 \u0639\u0631\u0628 \u0627\u0645\u0627\u0631\u0627\u062a"
+ },
+ "zho": {
+ "official": "\u963f\u62c9\u4f2f\u8054\u5408\u914b\u957f\u56fd",
+ "common": "\u963f\u62c9\u4f2f\u8054\u5408\u914b\u957f\u56fd"
+ }
+ },
+ "latlng": [
+ 24,
+ 54
+ ],
+ "landlocked": false,
+ "borders": [
+ "OMN",
+ "SAU"
+ ],
+ "area": 83600,
+ "flag": "\ud83c\udde6\ud83c\uddea",
+ "demonyms": {
+ "eng": {
+ "f": "Emirati",
+ "m": "Emirati"
+ },
+ "fra": {
+ "f": "Emirienne",
+ "m": "Emirien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Argentina",
+ "official": "Argentine Republic",
+ "native": {
+ "grn": {
+ "official": "Argentine Republic",
+ "common": "Argentina"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Argentina",
+ "common": "Argentina"
+ }
+ }
+ },
+ "tld": [
+ ".ar"
+ ],
+ "cca2": "AR",
+ "ccn3": "032",
+ "cca3": "ARG",
+ "cioc": "ARG",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "ARS": {
+ "name": "Argentine peso",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "4"
+ ]
+ },
+ "capital": [
+ "Buenos Aires"
+ ],
+ "altSpellings": [
+ "AR",
+ "Argentine Republic",
+ "Rep\u00fablica Argentina"
+ ],
+ "region": "Americas",
+ "subregion": "South America",
+ "languages": {
+ "grn": "Guaran\u00ed",
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0623\u0631\u062c\u0646\u062a\u064a\u0646",
+ "common": "\u0627\u0644\u0623\u0631\u062c\u0646\u062a\u064a\u0646"
+ },
+ "bre": {
+ "official": "Republik Arc'hantina",
+ "common": "Arc'hantina"
+ },
+ "ces": {
+ "official": "Argentinsk\u00e1 republika",
+ "common": "Argentina"
+ },
+ "deu": {
+ "official": "Argentinische Republik",
+ "common": "Argentinien"
+ },
+ "est": {
+ "official": "Argentina Vabariik",
+ "common": "Argentina"
+ },
+ "fin": {
+ "official": "Argentiinan tasavalta",
+ "common": "Argentiina"
+ },
+ "fra": {
+ "official": "R\u00e9publique argentine",
+ "common": "Argentine"
+ },
+ "hrv": {
+ "official": "Argentinski Republika",
+ "common": "Argentina"
+ },
+ "hun": {
+ "official": "Argentin K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Argent\u00edna"
+ },
+ "ita": {
+ "official": "Repubblica Argentina",
+ "common": "Argentina"
+ },
+ "jpn": {
+ "official": "\u30a2\u30eb\u30bc\u30f3\u30c1\u30f3\u5171\u548c\u56fd",
+ "common": "\u30a2\u30eb\u30bc\u30f3\u30c1\u30f3"
+ },
+ "kor": {
+ "official": "\uc544\ub974\ud5e8\ud2f0\ub098 \uacf5\ud654\uad6d",
+ "common": "\uc544\ub974\ud5e8\ud2f0\ub098"
+ },
+ "nld": {
+ "official": "Argentijnse Republiek",
+ "common": "Argentini\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0622\u0631\u0698\u0627\u0646\u062a\u06cc\u0646",
+ "common": "\u0622\u0631\u0698\u0627\u0646\u062a\u06cc\u0646"
+ },
+ "pol": {
+ "official": "Republika Argenty\u0144ska",
+ "common": "Argentyna"
+ },
+ "por": {
+ "official": "Rep\u00fablica Argentina",
+ "common": "Argentina"
+ },
+ "rus": {
+ "official": "\u0410\u0440\u0433\u0435\u043d\u0442\u0438\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0410\u0440\u0433\u0435\u043d\u0442\u0438\u043d\u0430"
+ },
+ "slk": {
+ "official": "Argent\u00ednska republika",
+ "common": "Argent\u00edna"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Argentina",
+ "common": "Argentina"
+ },
+ "srp": {
+ "official": "Republika Argentina",
+ "common": "Argentina"
+ },
+ "swe": {
+ "official": "Republiken Argentina",
+ "common": "Argentina"
+ },
+ "tur": {
+ "official": "Arjantin Cumhuriyeti",
+ "common": "Arjantin"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0627\u0631\u062c\u0646\u0679\u0627\u0626\u0646",
+ "common": "\u0627\u0631\u062c\u0646\u0679\u0627\u0626\u0646"
+ },
+ "zho": {
+ "official": "\u963f\u6839\u5ef7\u5171\u548c\u56fd",
+ "common": "\u963f\u6839\u5ef7"
+ }
+ },
+ "latlng": [
+ -34,
+ -64
+ ],
+ "landlocked": false,
+ "borders": [
+ "BOL",
+ "BRA",
+ "CHL",
+ "PRY",
+ "URY"
+ ],
+ "area": 2780400,
+ "flag": "\ud83c\udde6\ud83c\uddf7",
+ "demonyms": {
+ "eng": {
+ "f": "Argentine",
+ "m": "Argentine"
+ },
+ "fra": {
+ "f": "Argentine",
+ "m": "Argentin"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Armenia",
+ "official": "Republic of Armenia",
+ "native": {
+ "hye": {
+ "official": "\u0540\u0561\u0575\u0561\u057d\u057f\u0561\u0576\u056b \u0540\u0561\u0576\u0580\u0561\u057a\u0565\u057f\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
+ "common": "\u0540\u0561\u0575\u0561\u057d\u057f\u0561\u0576"
+ }
+ }
+ },
+ "tld": [
+ ".am"
+ ],
+ "cca2": "AM",
+ "ccn3": "051",
+ "cca3": "ARM",
+ "cioc": "ARM",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "AMD": {
+ "name": "Armenian dram",
+ "symbol": "\u058f"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "74"
+ ]
+ },
+ "capital": [
+ "Yerevan"
+ ],
+ "altSpellings": [
+ "AM",
+ "Hayastan",
+ "Republic of Armenia",
+ "\u0540\u0561\u0575\u0561\u057d\u057f\u0561\u0576\u056b \u0540\u0561\u0576\u0580\u0561\u057a\u0565\u057f\u0578\u0582\u0569\u0575\u0578\u0582\u0576"
+ ],
+ "region": "Asia",
+ "subregion": "Western Asia",
+ "languages": {
+ "hye": "Armenian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0623\u0631\u0645\u064a\u0646\u064a\u0627",
+ "common": "\u0623\u0631\u0645\u064a\u0646\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Armenia",
+ "common": "Armenia"
+ },
+ "ces": {
+ "official": "Arm\u00e9nsk\u00e1 republika",
+ "common": "Arm\u00e9nie"
+ },
+ "deu": {
+ "official": "Republik Armenien",
+ "common": "Armenien"
+ },
+ "est": {
+ "official": "Armeenia Vabariik",
+ "common": "Armeenia"
+ },
+ "fin": {
+ "official": "Armenian tasavalta",
+ "common": "Armenia"
+ },
+ "fra": {
+ "official": "R\u00e9publique d'Arm\u00e9nie",
+ "common": "Arm\u00e9nie"
+ },
+ "hrv": {
+ "official": "Republika Armenija",
+ "common": "Armenija"
+ },
+ "hun": {
+ "official": "\u00d6rm\u00e9nyorsz\u00e1g",
+ "common": "\u00d6rm\u00e9nyorsz\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica di Armenia",
+ "common": "Armenia"
+ },
+ "jpn": {
+ "official": "\u30a2\u30eb\u30e1\u30cb\u30a2\u5171\u548c\u56fd",
+ "common": "\u30a2\u30eb\u30e1\u30cb\u30a2"
+ },
+ "kor": {
+ "official": "\uc544\ub974\uba54\ub2c8\uc544 \uacf5\ud654\uad6d",
+ "common": "\uc544\ub974\uba54\ub2c8\uc544"
+ },
+ "nld": {
+ "official": "Republiek Armeni\u00eb",
+ "common": "Armeni\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0631\u0645\u0646\u0633\u062a\u0627\u0646",
+ "common": "\u0627\u0631\u0645\u0646\u0633\u062a\u0627\u0646"
+ },
+ "pol": {
+ "official": "Republika Armenii",
+ "common": "Armenia"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Arm\u00e9nia",
+ "common": "Arm\u00e9nia"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0410\u0440\u043c\u0435\u043d\u0438\u044f",
+ "common": "\u0410\u0440\u043c\u0435\u043d\u0438\u044f"
+ },
+ "slk": {
+ "official": "Arm\u00e9nska republika",
+ "common": "Arm\u00e9nsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Armenia",
+ "common": "Armenia"
+ },
+ "srp": {
+ "official": "Republika Jermenija",
+ "common": "Jermenija"
+ },
+ "swe": {
+ "official": "Republiken Armenien",
+ "common": "Armenien"
+ },
+ "tur": {
+ "official": "Ermenistan Cumhuriyeti",
+ "common": "Ermenistan"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0622\u0631\u0645\u06cc\u0646\u06cc\u0627",
+ "common": "\u0622\u0631\u0645\u06cc\u0646\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u4e9a\u7f8e\u5c3c\u4e9a\u5171\u548c\u56fd",
+ "common": "\u4e9a\u7f8e\u5c3c\u4e9a"
+ }
+ },
+ "latlng": [
+ 40,
+ 45
+ ],
+ "landlocked": true,
+ "borders": [
+ "AZE",
+ "GEO",
+ "IRN",
+ "TUR"
+ ],
+ "area": 29743,
+ "flag": "\ud83c\udde6\ud83c\uddf2",
+ "demonyms": {
+ "eng": {
+ "f": "Armenian",
+ "m": "Armenian"
+ },
+ "fra": {
+ "f": "Arm\u00e9nienne",
+ "m": "Arm\u00e9nien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "American Samoa",
+ "official": "American Samoa",
+ "native": {
+ "eng": {
+ "official": "American Samoa",
+ "common": "American Samoa"
+ },
+ "smo": {
+ "official": "S\u0101moa Amelika",
+ "common": "S\u0101moa Amelika"
+ }
+ }
+ },
+ "tld": [
+ ".as"
+ ],
+ "cca2": "AS",
+ "ccn3": "016",
+ "cca3": "ASM",
+ "cioc": "ASA",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "684"
+ ]
+ },
+ "capital": [
+ "Pago Pago"
+ ],
+ "altSpellings": [
+ "AS",
+ "Amerika S\u0101moa",
+ "Amelika S\u0101moa",
+ "S\u0101moa Amelika"
+ ],
+ "region": "Oceania",
+ "subregion": "Polynesia",
+ "languages": {
+ "eng": "English",
+ "smo": "Samoan"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0633\u0627\u0645\u0648\u0627 \u0627\u0644\u0623\u0645\u0631\u064a\u0643\u064a\u0629",
+ "common": "\u0633\u0627\u0645\u0648\u0627 \u0627\u0644\u0623\u0645\u0631\u064a\u0643\u064a\u0629"
+ },
+ "bre": {
+ "official": "Samoa Amerikan",
+ "common": "Samoa Amerikan"
+ },
+ "ces": {
+ "official": "Americk\u00e1 Samoa",
+ "common": "Americk\u00e1 Samoa"
+ },
+ "deu": {
+ "official": "Amerikanisch-Samoa",
+ "common": "Amerikanisch-Samoa"
+ },
+ "est": {
+ "official": "Ameerika Samoa",
+ "common": "Ameerika Samoa"
+ },
+ "fin": {
+ "official": "Amerikan Samoa",
+ "common": "Amerikan Samoa"
+ },
+ "fra": {
+ "official": "Samoa am\u00e9ricaines",
+ "common": "Samoa am\u00e9ricaines"
+ },
+ "hrv": {
+ "official": "ameri\u010dka Samoa",
+ "common": "Ameri\u010dka Samoa"
+ },
+ "hun": {
+ "official": "Szamoa",
+ "common": "Szamoa"
+ },
+ "ita": {
+ "official": "Samoa americane",
+ "common": "Samoa Americane"
+ },
+ "jpn": {
+ "official": "\u7c73\u9818\u30b5\u30e2\u30a2",
+ "common": "\u30a2\u30e1\u30ea\u30ab\u9818\u30b5\u30e2\u30a2"
+ },
+ "kor": {
+ "official": "\uc544\uba54\ub9ac\uce78\uc0ac\ubaa8\uc544",
+ "common": "\uc544\uba54\ub9ac\uce78\uc0ac\ubaa8\uc544"
+ },
+ "nld": {
+ "official": "Amerikaans Samoa",
+ "common": "Amerikaans Samoa"
+ },
+ "per": {
+ "official": "\u0633\u0627\u0645\u0648\u0622\u06cc \u0622\u0645\u0631\u06cc\u06a9\u0627",
+ "common": "\u0633\u0627\u0645\u0648\u0622\u06cc \u0622\u0645\u0631\u06cc\u06a9\u0627"
+ },
+ "pol": {
+ "official": "Samoa Ameryka\u0144skie",
+ "common": "Samoa Ameryka\u0144skie"
+ },
+ "por": {
+ "official": "Samoa americana",
+ "common": "Samoa Americana"
+ },
+ "rus": {
+ "official": "\u0430\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0435 \u0421\u0430\u043c\u043e\u0430",
+ "common": "\u0410\u043c\u0435\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u043e\u0435 \u0421\u0430\u043c\u043e\u0430"
+ },
+ "slk": {
+ "official": "Americk\u00e1 Samoa",
+ "common": "Americk\u00e1 Samoa"
+ },
+ "spa": {
+ "official": "Samoa Americana",
+ "common": "Samoa Americana"
+ },
+ "srp": {
+ "official": "Ameri\u010dka Samoa",
+ "common": "Ameri\u010dka Samoa"
+ },
+ "swe": {
+ "official": "Amerikanska Samoa",
+ "common": "Amerikanska Samoa"
+ },
+ "tur": {
+ "official": "Amerikan Samoas\u0131",
+ "common": "Amerikan Samoas\u0131"
+ },
+ "urd": {
+ "official": "\u0627\u0645\u0631\u06cc\u06a9\u06cc \u0633\u0645\u0648\u0648\u0627",
+ "common": "\u0627\u0645\u0631\u06cc\u06a9\u06cc \u0633\u0645\u0648\u0648\u0627"
+ },
+ "zho": {
+ "official": "\u7f8e\u5c5e\u8428\u6469\u4e9a",
+ "common": "\u7f8e\u5c5e\u8428\u6469\u4e9a"
+ }
+ },
+ "latlng": [
+ -14.33333333,
+ -170
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 199,
+ "flag": "\ud83c\udde6\ud83c\uddf8",
+ "demonyms": {
+ "eng": {
+ "f": "American Samoan",
+ "m": "American Samoan"
+ },
+ "fra": {
+ "f": "Samoane",
+ "m": "Samoan"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Antarctica",
+ "official": "Antarctica",
+ "native": {}
+ },
+ "tld": [
+ ".aq"
+ ],
+ "cca2": "AQ",
+ "ccn3": "010",
+ "cca3": "ATA",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {},
+ "idd": {
+ "root": "",
+ "suffixes": []
+ },
+ "capital": [],
+ "altSpellings": [
+ "AQ"
+ ],
+ "region": "Antarctic",
+ "subregion": "",
+ "languages": {},
+ "translations": {
+ "ara": {
+ "official": "\u0623\u0646\u062a\u0627\u0631\u062a\u064a\u0643\u0627",
+ "common": "\u0623\u0646\u062a\u0627\u0631\u062a\u064a\u0643\u0627"
+ },
+ "bre": {
+ "official": "Antarktika",
+ "common": "Antarktika"
+ },
+ "ces": {
+ "official": "Antarktida",
+ "common": "Antarktida"
+ },
+ "deu": {
+ "official": "Antarktika",
+ "common": "Antarktis"
+ },
+ "est": {
+ "official": "Antarktika",
+ "common": "Antarktika"
+ },
+ "fin": {
+ "official": "Etel\u00e4manner",
+ "common": "Etel\u00e4manner"
+ },
+ "fra": {
+ "official": "Antarctique",
+ "common": "Antarctique"
+ },
+ "hrv": {
+ "official": "Antarktika",
+ "common": "Antarktika"
+ },
+ "hun": {
+ "official": "Antarktisz",
+ "common": "Antarktisz"
+ },
+ "ita": {
+ "official": "Antartide",
+ "common": "Antartide"
+ },
+ "jpn": {
+ "official": "\u5357\u6975",
+ "common": "\u5357\u6975\u5927\u9678"
+ },
+ "kor": {
+ "official": "\ub0a8\uadf9",
+ "common": "\ub0a8\uadf9"
+ },
+ "nld": {
+ "official": "Antarctica",
+ "common": "Antarctica"
+ },
+ "per": {
+ "official": "\u062c\u0646\u0648\u0628\u06af\u0627\u0646",
+ "common": "\u062c\u0646\u0648\u0628\u06af\u0627\u0646"
+ },
+ "pol": {
+ "official": "Antarktyka",
+ "common": "Antarktyka"
+ },
+ "por": {
+ "official": "Ant\u00e1rtica",
+ "common": "Ant\u00e1rtida"
+ },
+ "rus": {
+ "official": "\u0410\u043d\u0442\u0430\u0440\u043a\u0442\u0438\u0434\u0430",
+ "common": "\u0410\u043d\u0442\u0430\u0440\u043a\u0442\u0438\u0434\u0430"
+ },
+ "slk": {
+ "official": "Antarkt\u00edda",
+ "common": "Antarkt\u00edda"
+ },
+ "spa": {
+ "official": "Ant\u00e1rtida",
+ "common": "Ant\u00e1rtida"
+ },
+ "srp": {
+ "official": "Antarktik",
+ "common": "Antarktik"
+ },
+ "swe": {
+ "official": "Antarktis",
+ "common": "Antarktis"
+ },
+ "tur": {
+ "official": "Antarktika",
+ "common": "Antarktika"
+ },
+ "urd": {
+ "official": "\u0627\u0646\u0679\u0627\u0631\u06a9\u0679\u06a9\u0627",
+ "common": "\u0627\u0646\u0679\u0627\u0631\u06a9\u0679\u06a9\u0627"
+ },
+ "zho": {
+ "official": "\u5357\u6781\u6d32",
+ "common": "\u5357\u6781\u6d32"
+ }
+ },
+ "latlng": [
+ -90,
+ 0
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 14000000,
+ "flag": "\ud83c\udde6\ud83c\uddf6",
+ "demonyms": {
+ "eng": {
+ "f": "Antarctican",
+ "m": "Antarctican"
+ },
+ "fra": {
+ "f": "Antarcticaine",
+ "m": "Antarcticain"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "French Southern and Antarctic Lands",
+ "official": "Territory of the French Southern and Antarctic Lands",
+ "native": {
+ "fra": {
+ "official": "Territoire des Terres australes et antarctiques fran\u00e7aises",
+ "common": "Terres australes et antarctiques fran\u00e7aises"
+ }
+ }
+ },
+ "tld": [
+ ".tf"
+ ],
+ "cca2": "TF",
+ "ccn3": "260",
+ "cca3": "ATF",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "62"
+ ]
+ },
+ "capital": [
+ "Port-aux-Fran\u00e7ais"
+ ],
+ "altSpellings": [
+ "TF",
+ "French Southern Territories"
+ ],
+ "region": "Antarctic",
+ "subregion": "",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0642\u0627\u0637\u0639\u0627\u062a \u0648\u0623\u0642\u0627\u0644\u064a\u0645 \u0645\u0627 \u0648\u0631\u0627\u0621 \u0627\u0644\u0628\u062d\u0627\u0631 \u0627\u0644\u0641\u0631\u0646\u0633\u064a\u0629",
+ "common": "\u0623\u0631\u0627\u0636 \u0641\u0631\u0646\u0633\u064a\u0629 \u062c\u0646\u0648\u0628\u064a\u0629 \u0648\u0623\u0646\u062a\u0627\u0631\u062a\u064a\u0643\u064a\u0629"
+ },
+ "bre": {
+ "official": "Tiriad Douaro\u00f9 Aostral hag Antarktikel Fra\u00f1s",
+ "common": "Douaro\u00f9 Aostral hag Antarktikel Fra\u00f1s"
+ },
+ "ces": {
+ "official": "Teritorium Francouzsk\u00e1 ji\u017en\u00ed a antarktick\u00e1 \u00fazem\u00ed",
+ "common": "Francouzsk\u00e1 ji\u017en\u00ed a antarktick\u00e1 \u00fazem\u00ed"
+ },
+ "deu": {
+ "official": "Gebiet der Franz\u00f6sisch S\u00fcd- und Antarktisgebiete",
+ "common": "Franz\u00f6sische S\u00fcd- und Antarktisgebiete"
+ },
+ "est": {
+ "official": "Prantsuse L\u00f5unaalad",
+ "common": "Prantsuse L\u00f5unaalad"
+ },
+ "fin": {
+ "official": "Ranskan etel\u00e4iset ja antarktiset alueet",
+ "common": "Ranskan etel\u00e4iset ja antarktiset alueet"
+ },
+ "fra": {
+ "official": "Territoire des Terres australes et antarctiques fran\u00e7aises",
+ "common": "Terres australes et antarctiques fran\u00e7aises"
+ },
+ "hrv": {
+ "official": "Teritoriju Francuski ju\u017eni i antarkti\u010dki teritoriji",
+ "common": "Francuski ju\u017eni i antarkti\u010dki teritoriji"
+ },
+ "hun": {
+ "official": "Francia d\u00e9li \u00e9s antarktiszi ter\u00fcletek",
+ "common": "Francia d\u00e9li \u00e9s antarktiszi ter\u00fcletek"
+ },
+ "ita": {
+ "official": "Territorio della australi e antartiche francesi Terre",
+ "common": "Territori Francesi del Sud"
+ },
+ "jpn": {
+ "official": "\u30d5\u30e9\u30f3\u30b9\u9818\u6975\u5357\u8af8\u5cf6",
+ "common": "\u30d5\u30e9\u30f3\u30b9\u9818\u5357\u65b9\u30fb\u5357\u6975\u5730\u57df"
+ },
+ "kor": {
+ "official": "\ud504\ub791\uc2a4\ub839 \ub0a8\ubd80\uc640 \ub0a8\uadf9 \uc9c0\uc5ed",
+ "common": "\ud504\ub791\uc2a4\ub839 \ub0a8\ubd80\uc640 \ub0a8\uadf9 \uc9c0\uc5ed"
+ },
+ "nld": {
+ "official": "Grondgebied van de Franse Zuidelijke en Antarctische gebieden",
+ "common": "Franse Gebieden in de zuidelijke Indische Oceaan"
+ },
+ "per": {
+ "official": "\u0633\u0631\u0632\u0645\u06cc\u0646\u200c\u0647\u0627\u06cc \u062c\u0646\u0648\u0628\u06cc \u0648 \u062c\u0646\u0648\u0628\u06af\u0627\u0646\u06cc \u0641\u0631\u0627\u0646\u0633\u0647",
+ "common": "\u0633\u0631\u0632\u0645\u06cc\u0646\u200c\u0647\u0627\u06cc \u062c\u0646\u0648\u0628\u06cc \u0648 \u062c\u0646\u0648\u0628\u06af\u0627\u0646\u06cc \u0641\u0631\u0627\u0646\u0633\u0647"
+ },
+ "pol": {
+ "official": "Francuskie Terytoria Po\u0142udniowe i Antarktyczne",
+ "common": "Francuskie Terytoria Po\u0142udniowe i Antarktyczne"
+ },
+ "por": {
+ "official": "Territ\u00f3rio do Sul e Ant\u00e1rtica Francesa",
+ "common": "Terras Austrais e Ant\u00e1rticas Francesas"
+ },
+ "rus": {
+ "official": "\u0422\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0438\u0435 \u042e\u0436\u043d\u044b\u0435 \u0438 \u0410\u043d\u0442\u0430\u0440\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0437\u0435\u043c\u043b\u0438",
+ "common": "\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0438\u0435 \u042e\u0436\u043d\u044b\u0435 \u0438 \u0410\u043d\u0442\u0430\u0440\u043a\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u0438"
+ },
+ "slk": {
+ "official": "Franc\u00fazske ju\u017en\u00e9 a antarktick\u00e9 \u00fazemia",
+ "common": "Franc\u00fazske ju\u017dn\u00e9 a antarktick\u00e9 \u00fazemia"
+ },
+ "spa": {
+ "official": "Territorio del Franc\u00e9s Tierras australes y ant\u00e1rticas",
+ "common": "Tierras Australes y Ant\u00e1rticas Francesas"
+ },
+ "srp": {
+ "official": "Francuske ju\u017ene i antarkti\u010dke zemlje",
+ "common": "Francuske ju\u017ene i antarkti\u010dke zemlje"
+ },
+ "swe": {
+ "official": "Franska syd- och Antarktisterritorierna",
+ "common": "Franska s\u00f6dra territorierna"
+ },
+ "tur": {
+ "official": "Frans\u0131z G\u00fcney ve Antarktika Topraklar\u0131",
+ "common": "Frans\u0131z G\u00fcney ve Antarktika Topraklar\u0131"
+ },
+ "urd": {
+ "official": "\u0633\u0631\u0632\u0645\u06cc\u0646\u0650 \u062c\u0646\u0648\u0628\u06cc \u0641\u0631\u0627\u0646\u0633\u06cc\u0633\u06cc\u06c1 \u0648 \u0627\u0646\u0679\u0627\u0631\u06a9\u0679\u06cc\u06a9\u06c1",
+ "common": "\u0633\u0631\u0632\u0645\u06cc\u0646 \u062c\u0646\u0648\u0628\u06cc \u0641\u0631\u0627\u0646\u0633\u06cc\u0633\u06cc\u06c1 \u0648 \u0627\u0646\u0679\u0627\u0631\u06a9\u0679\u06cc\u06a9\u0627"
+ },
+ "zho": {
+ "official": "\u6cd5\u56fd\u5357\u90e8\u548c\u5357\u6781\u571f\u5730",
+ "common": "\u6cd5\u56fd\u5357\u90e8\u548c\u5357\u6781\u571f\u5730"
+ }
+ },
+ "latlng": [
+ -49.25,
+ 69.167
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 7747,
+ "flag": "\ud83c\uddf9\ud83c\uddeb",
+ "demonyms": {
+ "eng": {
+ "f": "French",
+ "m": "French"
+ },
+ "fra": {
+ "f": "Fran\u00e7aise",
+ "m": "Fran\u00e7ais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Antigua and Barbuda",
+ "official": "Antigua and Barbuda",
+ "native": {
+ "eng": {
+ "official": "Antigua and Barbuda",
+ "common": "Antigua and Barbuda"
+ }
+ }
+ },
+ "tld": [
+ ".ag"
+ ],
+ "cca2": "AG",
+ "ccn3": "028",
+ "cca3": "ATG",
+ "cioc": "ANT",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "XCD": {
+ "name": "Eastern Caribbean dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "268"
+ ]
+ },
+ "capital": [
+ "Saint John's"
+ ],
+ "altSpellings": [
+ "AG"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0623\u0646\u062a\u064a\u063a\u0648\u0627 \u0648\u0628\u0627\u0631\u0628\u0648\u062f\u0627",
+ "common": "\u0623\u0646\u062a\u064a\u063a\u0648\u0627 \u0648\u0628\u0627\u0631\u0628\u0648\u062f\u0627"
+ },
+ "bre": {
+ "official": "Antigua ha Barbuda",
+ "common": "Antigua ha Barbuda"
+ },
+ "ces": {
+ "official": "Antigua a Barbuda",
+ "common": "Antigua a Barbuda"
+ },
+ "deu": {
+ "official": "Antigua und Barbuda",
+ "common": "Antigua und Barbuda"
+ },
+ "est": {
+ "official": "Antigua ja Barbuda",
+ "common": "Antigua ja Barbuda"
+ },
+ "fin": {
+ "official": "Antigua ja Barbuda",
+ "common": "Antigua ja Barbuda"
+ },
+ "fra": {
+ "official": "Antigua -et-Barbuda",
+ "common": "Antigua-et-Barbuda"
+ },
+ "hrv": {
+ "official": "Antigva i Barbuda",
+ "common": "Antigva i Barbuda"
+ },
+ "hun": {
+ "official": "Antigua \u00e9s Barbuda",
+ "common": "Antigua \u00e9s Barbuda"
+ },
+ "ita": {
+ "official": "Antigua e Barbuda",
+ "common": "Antigua e Barbuda"
+ },
+ "jpn": {
+ "official": "\u30a2\u30f3\u30c6\u30a3\u30b0\u30a2\u30fb\u30d0\u30fc\u30d6\u30fc\u30c0",
+ "common": "\u30a2\u30f3\u30c6\u30a3\u30b0\u30a2\u30fb\u30d0\u30fc\u30d6\u30fc\u30c0"
+ },
+ "kor": {
+ "official": "\uc564\ud2f0\uac00 \ubc14\ubd80\ub2e4",
+ "common": "\uc564\ud2f0\uac00 \ubc14\ubd80\ub2e4"
+ },
+ "nld": {
+ "official": "Antigua en Barbuda",
+ "common": "Antigua en Barbuda"
+ },
+ "per": {
+ "official": "\u0622\u0646\u062a\u06cc\u06af\u0648\u0627 \u0648 \u0628\u0627\u0631\u0628\u0648\u062f\u0627",
+ "common": "\u0622\u0646\u062a\u06cc\u06af\u0648\u0627 \u0648 \u0628\u0627\u0631\u0628\u0648\u062f\u0627"
+ },
+ "pol": {
+ "official": "Antigua i Barbuda",
+ "common": "Antigua i Barbuda"
+ },
+ "por": {
+ "official": "Antigua e Barbuda",
+ "common": "Ant\u00edgua e Barbuda"
+ },
+ "rus": {
+ "official": "\u0410\u043d\u0442\u0438\u0433\u0443\u0430 \u0438 \u0411\u0430\u0440\u0431\u0443\u0434\u0430",
+ "common": "\u0410\u043d\u0442\u0438\u0433\u0443\u0430 \u0438 \u0411\u0430\u0440\u0431\u0443\u0434\u0430"
+ },
+ "slk": {
+ "official": "Antigua a Barbuda",
+ "common": "Antigua a Barbuda"
+ },
+ "spa": {
+ "official": "Antigua y Barbuda",
+ "common": "Antigua y Barbuda"
+ },
+ "srp": {
+ "official": "Antigva i Barbuda",
+ "common": "Antigva i Barbuda"
+ },
+ "swe": {
+ "official": "Antigua och Barbuda",
+ "common": "Antigua och Barbuda"
+ },
+ "tur": {
+ "official": "Antigua ve Barbuda",
+ "common": "Antigua ve Barbuda"
+ },
+ "urd": {
+ "official": "\u0627\u06cc\u0646\u0679\u06cc\u06af\u0648\u0627 \u0648 \u0628\u0627\u0631\u0628\u0648\u0688\u0627",
+ "common": "\u0627\u06cc\u0646\u0679\u06cc\u06af\u0648\u0627 \u0648 \u0628\u0627\u0631\u0628\u0648\u0688\u0627"
+ },
+ "zho": {
+ "official": "\u5b89\u63d0\u74dc\u548c\u5df4\u5e03\u8fbe",
+ "common": "\u5b89\u63d0\u74dc\u548c\u5df4\u5e03\u8fbe"
+ }
+ },
+ "latlng": [
+ 17.05,
+ -61.8
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 442,
+ "flag": "\ud83c\udde6\ud83c\uddec",
+ "demonyms": {
+ "eng": {
+ "f": "Antiguan, Barbudan",
+ "m": "Antiguan, Barbudan"
+ },
+ "fra": {
+ "f": "Antiguaise et barbudienne",
+ "m": "Antiguaise et barbudien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Australia",
+ "official": "Commonwealth of Australia",
+ "native": {
+ "eng": {
+ "official": "Commonwealth of Australia",
+ "common": "Australia"
+ }
+ }
+ },
+ "tld": [
+ ".au"
+ ],
+ "cca2": "AU",
+ "ccn3": "036",
+ "cca3": "AUS",
+ "cioc": "AUS",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "AUD": {
+ "name": "Australian dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "1"
+ ]
+ },
+ "capital": [
+ "Canberra"
+ ],
+ "altSpellings": [
+ "AU"
+ ],
+ "region": "Oceania",
+ "subregion": "Australia and New Zealand",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0643\u0648\u0645\u0648\u0646\u0648\u0644\u062b \u0623\u0633\u062a\u0631\u0627\u0644\u064a\u0627",
+ "common": "\u0623\u0633\u062a\u0631\u0627\u0644\u064a\u0627"
+ },
+ "bre": {
+ "official": "Kenglad Aostralia",
+ "common": "Aostralia"
+ },
+ "ces": {
+ "official": "Australsk\u00e9 spole\u010denstv\u00ed",
+ "common": "Austr\u00e1lie"
+ },
+ "deu": {
+ "official": "Commonwealth Australien",
+ "common": "Australien"
+ },
+ "est": {
+ "official": "Austraalia \u00dchendus",
+ "common": "Austraalia"
+ },
+ "fin": {
+ "official": "Australian liittovaltio",
+ "common": "Australia"
+ },
+ "fra": {
+ "official": "Australie",
+ "common": "Australie"
+ },
+ "hrv": {
+ "official": "Commonwealth of Australia",
+ "common": "Australija"
+ },
+ "hun": {
+ "official": "Ausztr\u00e1l \u00c1llamsz\u00f6vets\u00e9g",
+ "common": "Ausztr\u00e1lia"
+ },
+ "ita": {
+ "official": "Commonwealth dell'Australia",
+ "common": "Australia"
+ },
+ "jpn": {
+ "official": "\u30aa\u30fc\u30b9\u30c8\u30e9\u30ea\u30a2\u9023\u90a6",
+ "common": "\u30aa\u30fc\u30b9\u30c8\u30e9\u30ea\u30a2"
+ },
+ "kor": {
+ "official": "\uc624\uc2a4\ud2b8\ub808\uc77c\ub9ac\uc544 \uc5f0\ubc29",
+ "common": "\ud638\uc8fc"
+ },
+ "nld": {
+ "official": "Gemenebest van Australi\u00eb",
+ "common": "Australi\u00eb"
+ },
+ "per": {
+ "official": "\u0642\u0644\u0645\u0631\u0648 \u0647\u0645\u0633\u0648\u062f \u0627\u0633\u062a\u0631\u0627\u0644\u06cc\u0627",
+ "common": "\u0627\u0633\u062a\u0631\u0627\u0644\u06cc\u0627"
+ },
+ "pol": {
+ "official": "Zwi\u0105zek Australijski",
+ "common": "Australia"
+ },
+ "por": {
+ "official": "Comunidade da Austr\u00e1lia",
+ "common": "Austr\u00e1lia"
+ },
+ "rus": {
+ "official": "\u0421\u043e\u0434\u0440\u0443\u0436\u0435\u0441\u0442\u0432\u043e \u0410\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u0438",
+ "common": "\u0410\u0432\u0441\u0442\u0440\u0430\u043b\u0438\u044f"
+ },
+ "slk": {
+ "official": "Austr\u00e1lsky zv\u00e4z",
+ "common": "Austr\u00e1lia"
+ },
+ "spa": {
+ "official": "Mancomunidad de Australia",
+ "common": "Australia"
+ },
+ "srp": {
+ "official": "Komonvelt Australija",
+ "common": "Australija"
+ },
+ "swe": {
+ "official": "Australiska statsf\u00f6rbundet",
+ "common": "Australien"
+ },
+ "tur": {
+ "official": "Avustralya Federal Devleti",
+ "common": "Avustralya"
+ },
+ "urd": {
+ "official": "\u062f\u0648\u0644\u062a\u0650 \u0645\u0634\u062a\u0631\u06a9\u06c1 \u0622\u0633\u0679\u0631\u06cc\u0644\u06cc\u0627",
+ "common": "\u0622\u0633\u0679\u0631\u06cc\u0644\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u6fb3\u5927\u5229\u4e9a\u8054\u90a6",
+ "common": "\u6fb3\u5927\u5229\u4e9a"
+ }
+ },
+ "latlng": [
+ -27,
+ 133
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 7692024,
+ "flag": "\ud83c\udde6\ud83c\uddfa",
+ "demonyms": {
+ "eng": {
+ "f": "Australian",
+ "m": "Australian"
+ },
+ "fra": {
+ "f": "Australienne",
+ "m": "Australien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Austria",
+ "official": "Republic of Austria",
+ "native": {
+ "bar": {
+ "official": "Republik \u00d6sterreich",
+ "common": "\u00d6sterreich"
+ }
+ }
+ },
+ "tld": [
+ ".at"
+ ],
+ "cca2": "AT",
+ "ccn3": "040",
+ "cca3": "AUT",
+ "cioc": "AUT",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+4",
+ "suffixes": [
+ "3"
+ ]
+ },
+ "capital": [
+ "Vienna"
+ ],
+ "altSpellings": [
+ "AT",
+ "Osterreich",
+ "Oesterreich"
+ ],
+ "region": "Europe",
+ "subregion": "Central Europe",
+ "languages": {
+ "bar": "Austro-Bavarian German"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0646\u0645\u0633\u0627",
+ "common": "\u0627\u0644\u0646\u0645\u0633\u0627"
+ },
+ "bre": {
+ "official": "Republik Aostria",
+ "common": "Aostria"
+ },
+ "ces": {
+ "official": "Rakousk\u00e1 republika",
+ "common": "Rakousko"
+ },
+ "deu": {
+ "official": "Republik \u00d6sterreich",
+ "common": "\u00d6sterreich"
+ },
+ "est": {
+ "official": "Austria Vabariik",
+ "common": "Austria"
+ },
+ "fin": {
+ "official": "It\u00e4vallan tasavalta",
+ "common": "It\u00e4valta"
+ },
+ "fra": {
+ "official": "R\u00e9publique d'Autriche",
+ "common": "Autriche"
+ },
+ "hrv": {
+ "official": "Republika Austrija",
+ "common": "Austrija"
+ },
+ "hun": {
+ "official": "Ausztria",
+ "common": "Ausztria"
+ },
+ "ita": {
+ "official": "Repubblica d'Austria",
+ "common": "Austria"
+ },
+ "jpn": {
+ "official": "\u30aa\u30fc\u30b9\u30c8\u30ea\u30a2\u5171\u548c\u56fd",
+ "common": "\u30aa\u30fc\u30b9\u30c8\u30ea\u30a2"
+ },
+ "kor": {
+ "official": "\uc624\uc2a4\ud2b8\ub9ac\uc544 \uacf5\ud654\uad6d",
+ "common": "\uc624\uc2a4\ud2b8\ub9ac\uc544"
+ },
+ "nld": {
+ "official": "Republiek Oostenrijk",
+ "common": "Oostenrijk"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u062a\u0631\u06cc\u0634",
+ "common": "\u0627\u062a\u0631\u06cc\u0634"
+ },
+ "pol": {
+ "official": "Republika Austrii",
+ "common": "Austria"
+ },
+ "por": {
+ "official": "Rep\u00fablica da \u00c1ustria",
+ "common": "\u00c1ustria"
+ },
+ "rus": {
+ "official": "\u0410\u0432\u0441\u0442\u0440\u0438\u0439\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0410\u0432\u0441\u0442\u0440\u0438\u044f"
+ },
+ "slk": {
+ "official": "Rak\u00faska republika",
+ "common": "Rak\u00fasko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Austria",
+ "common": "Austria"
+ },
+ "srp": {
+ "official": "Republika Austrija",
+ "common": "Austrija"
+ },
+ "swe": {
+ "official": "Republiken \u00d6sterrike",
+ "common": "\u00d6sterrike"
+ },
+ "tur": {
+ "official": "Avusturya Cumhuriyeti",
+ "common": "Avusturya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0622\u0633\u0679\u0631\u06cc\u0627",
+ "common": "\u0622\u0633\u0679\u0631\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u5965\u5730\u5229\u5171\u548c\u56fd",
+ "common": "\u5965\u5730\u5229"
+ }
+ },
+ "latlng": [
+ 47.33333333,
+ 13.33333333
+ ],
+ "landlocked": true,
+ "borders": [
+ "CZE",
+ "DEU",
+ "HUN",
+ "ITA",
+ "LIE",
+ "SVK",
+ "SVN",
+ "CHE"
+ ],
+ "area": 83871,
+ "flag": "\ud83c\udde6\ud83c\uddf9",
+ "demonyms": {
+ "eng": {
+ "f": "Austrian",
+ "m": "Austrian"
+ },
+ "fra": {
+ "f": "Autrichienne",
+ "m": "Autrichien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Azerbaijan",
+ "official": "Republic of Azerbaijan",
+ "native": {
+ "aze": {
+ "official": "Az\u0259rbaycan Respublikas\u0131",
+ "common": "Az\u0259rbaycan"
+ },
+ "rus": {
+ "official": "\u0410\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0410\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043d"
+ }
+ }
+ },
+ "tld": [
+ ".az"
+ ],
+ "cca2": "AZ",
+ "ccn3": "031",
+ "cca3": "AZE",
+ "cioc": "AZE",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "AZN": {
+ "name": "Azerbaijani manat",
+ "symbol": "\u20bc"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "94"
+ ]
+ },
+ "capital": [
+ "Baku"
+ ],
+ "altSpellings": [
+ "AZ",
+ "Republic of Azerbaijan",
+ "Az\u0259rbaycan Respublikas\u0131"
+ ],
+ "region": "Asia",
+ "subregion": "Western Asia",
+ "languages": {
+ "aze": "Azerbaijani",
+ "rus": "Russian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0623\u0630\u0631\u0628\u064a\u062c\u0627\u0646",
+ "common": "\u0623\u0630\u0631\u0628\u064a\u062c\u0627\u0646"
+ },
+ "bre": {
+ "official": "Republik Azerbaidjan",
+ "common": "Azerbaidjan"
+ },
+ "ces": {
+ "official": "\u00c1zerb\u00e1jd\u017e\u00e1nsk\u00e1 republika",
+ "common": "\u00c1zerb\u00e1jd\u017e\u00e1n"
+ },
+ "deu": {
+ "official": "Republik Aserbaidschan",
+ "common": "Aserbaidschan"
+ },
+ "est": {
+ "official": "Aserbaid\u017eaani Vabariik",
+ "common": "Aserbaid\u017eaan"
+ },
+ "fin": {
+ "official": "Azerbaidzanin tasavalta",
+ "common": "Azerbaidzan"
+ },
+ "fra": {
+ "official": "R\u00e9publique d'Azerba\u00efdjan",
+ "common": "Azerba\u00efdjan"
+ },
+ "hrv": {
+ "official": "Republika Azerbajd\u017ean",
+ "common": "Azerbajd\u017ean"
+ },
+ "hun": {
+ "official": "Azerbajdzs\u00e1n",
+ "common": "Azerbajdzs\u00e1n"
+ },
+ "ita": {
+ "official": "Repubblica dell'Azerbaigian",
+ "common": "Azerbaijan"
+ },
+ "jpn": {
+ "official": "\u30a2\u30bc\u30eb\u30d0\u30a4\u30b8\u30e3\u30f3\u5171\u548c\u56fd",
+ "common": "\u30a2\u30bc\u30eb\u30d0\u30a4\u30b8\u30e3\u30f3"
+ },
+ "kor": {
+ "official": "\uc544\uc81c\ub974\ubc14\uc774\uc794 \uacf5\ud654\uad6d",
+ "common": "\uc544\uc81c\ub974\ubc14\uc774\uc794"
+ },
+ "nld": {
+ "official": "Republiek Azerbeidzjan",
+ "common": "Azerbeidzjan"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0622\u0630\u0631\u0628\u0627\u06cc\u062c\u0627\u0646",
+ "common": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0622\u0630\u0631\u0628\u0627\u06cc\u062c\u0627\u0646"
+ },
+ "pol": {
+ "official": "Republika Azerbejd\u017canu",
+ "common": "Azerbejd\u017can"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Azerbaij\u00e3o",
+ "common": "Azerbeij\u00e3o"
+ },
+ "rus": {
+ "official": "\u0410\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0410\u0437\u0435\u0440\u0431\u0430\u0439\u0434\u0436\u0430\u043d"
+ },
+ "slk": {
+ "official": "Azerbaj\u01c6ansk\u00e1 republika",
+ "common": "Azerbaj\u01c7an"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Azerbaiy\u00e1n",
+ "common": "Azerbaiy\u00e1n"
+ },
+ "srp": {
+ "official": "Republika Azerbejd\u017ean",
+ "common": "Azerbejd\u017ean"
+ },
+ "swe": {
+ "official": "Republiken Azerbajdzjan",
+ "common": "Azerbajdzjan"
+ },
+ "tur": {
+ "official": "Azerbaycan Cumhuriyeti",
+ "common": "Azerbaycan"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0622\u0630\u0631\u0628\u0627\u0626\u06cc\u062c\u0627\u0646",
+ "common": "\u0622\u0630\u0631\u0628\u0627\u0626\u06cc\u062c\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u963f\u585e\u62dc\u7586\u5171\u548c\u56fd",
+ "common": "\u963f\u585e\u62dc\u7586"
+ }
+ },
+ "latlng": [
+ 40.5,
+ 47.5
+ ],
+ "landlocked": true,
+ "borders": [
+ "ARM",
+ "GEO",
+ "IRN",
+ "RUS",
+ "TUR"
+ ],
+ "area": 86600,
+ "flag": "\ud83c\udde6\ud83c\uddff",
+ "demonyms": {
+ "eng": {
+ "f": "Azerbaijani",
+ "m": "Azerbaijani"
+ },
+ "fra": {
+ "f": "Azerba\u00efdjanaise",
+ "m": "Azerba\u00efdjanais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Burundi",
+ "official": "Republic of Burundi",
+ "native": {
+ "fra": {
+ "official": "R\u00e9publique du Burundi",
+ "common": "Burundi"
+ },
+ "run": {
+ "official": "Republika y'Uburundi ",
+ "common": "Uburundi"
+ }
+ }
+ },
+ "tld": [
+ ".bi"
+ ],
+ "cca2": "BI",
+ "ccn3": "108",
+ "cca3": "BDI",
+ "cioc": "BDI",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "BIF": {
+ "name": "Burundian franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "57"
+ ]
+ },
+ "capital": [
+ "Gitega"
+ ],
+ "altSpellings": [
+ "BI",
+ "Republic of Burundi",
+ "Republika y'Uburundi",
+ "R\u00e9publique du Burundi"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "fra": "French",
+ "run": "Kirundi"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0628\u0648\u0631\u0648\u0646\u062f\u064a",
+ "common": "\u0628\u0648\u0631\u0648\u0646\u062f\u064a"
+ },
+ "bre": {
+ "official": "Republik Burundi",
+ "common": "Burundi"
+ },
+ "ces": {
+ "official": "Burundsk\u00e1 republika",
+ "common": "Burundi"
+ },
+ "deu": {
+ "official": "Republik Burundi",
+ "common": "Burundi"
+ },
+ "est": {
+ "official": "Burundi Vabariik",
+ "common": "Burundi"
+ },
+ "fin": {
+ "official": "Burundin tasavalta",
+ "common": "Burundi"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Burundi",
+ "common": "Burundi"
+ },
+ "hrv": {
+ "official": "Burundi",
+ "common": "Burundi"
+ },
+ "hun": {
+ "official": "Burundi",
+ "common": "Burundi"
+ },
+ "ita": {
+ "official": "Repubblica del Burundi",
+ "common": "Burundi"
+ },
+ "jpn": {
+ "official": "\u30d6\u30eb\u30f3\u30b8\u5171\u548c\u56fd",
+ "common": "\u30d6\u30eb\u30f3\u30b8"
+ },
+ "kor": {
+ "official": "\ubd80\ub8ec\ub514",
+ "common": "\ubd80\ub8ec\ub514"
+ },
+ "nld": {
+ "official": "Republiek Burundi",
+ "common": "Burundi"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0628\u0648\u0631\u0648\u0646\u062f\u06cc",
+ "common": "\u0628\u0648\u0631\u0648\u0646\u062f\u06cc"
+ },
+ "pol": {
+ "official": "Republika Burundi",
+ "common": "Burundi"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Burundi",
+ "common": "Burundi"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0411\u0443\u0440\u0443\u043d\u0434\u0438",
+ "common": "\u0411\u0443\u0440\u0443\u043d\u0434\u0438"
+ },
+ "slk": {
+ "official": "Burundsk\u00e1 republika",
+ "common": "Burundi"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Burundi",
+ "common": "Burundi"
+ },
+ "srp": {
+ "official": "Republika Burundi",
+ "common": "Burundi"
+ },
+ "swe": {
+ "official": "Republiken Burundi",
+ "common": "Burundi"
+ },
+ "tur": {
+ "official": "Burundi Cumhuriyeti",
+ "common": "Burundi"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0628\u0631\u0648\u0646\u0688\u06cc",
+ "common": "\u0628\u0631\u0648\u0646\u0688\u06cc"
+ },
+ "zho": {
+ "official": "\u5e03\u9686\u8fea\u5171\u548c\u56fd",
+ "common": "\u5e03\u9686\u8fea"
+ }
+ },
+ "latlng": [
+ -3.5,
+ 30
+ ],
+ "landlocked": true,
+ "borders": [
+ "COD",
+ "RWA",
+ "TZA"
+ ],
+ "area": 27834,
+ "flag": "\ud83c\udde7\ud83c\uddee",
+ "demonyms": {
+ "eng": {
+ "f": "Burundian",
+ "m": "Burundian"
+ },
+ "fra": {
+ "f": "Burundaise",
+ "m": "Burundais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Belgium",
+ "official": "Kingdom of Belgium",
+ "native": {
+ "deu": {
+ "official": "K\u00f6nigreich Belgien",
+ "common": "Belgien"
+ },
+ "fra": {
+ "official": "Royaume de Belgique",
+ "common": "Belgique"
+ },
+ "nld": {
+ "official": "Koninkrijk Belgi\u00eb",
+ "common": "Belgi\u00eb"
+ }
+ }
+ },
+ "tld": [
+ ".be"
+ ],
+ "cca2": "BE",
+ "ccn3": "056",
+ "cca3": "BEL",
+ "cioc": "BEL",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "2"
+ ]
+ },
+ "capital": [
+ "Brussels"
+ ],
+ "altSpellings": [
+ "BE",
+ "Belgi\u00eb",
+ "Belgie",
+ "Belgien",
+ "Belgique",
+ "Kingdom of Belgium",
+ "Koninkrijk Belgi\u00eb",
+ "Royaume de Belgique",
+ "K\u00f6nigreich Belgien"
+ ],
+ "region": "Europe",
+ "subregion": "Western Europe",
+ "languages": {
+ "deu": "German",
+ "fra": "French",
+ "nld": "Dutch"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0645\u0644\u0643\u0629 \u0628\u0644\u062c\u064a\u0643\u0627",
+ "common": "\u0628\u0644\u062c\u064a\u0643\u0627"
+ },
+ "bre": {
+ "official": "Rouantelezh Belgia",
+ "common": "Belgia"
+ },
+ "ces": {
+ "official": "Belgick\u00e9 kr\u00e1lovstv\u00ed",
+ "common": "Belgie"
+ },
+ "deu": {
+ "official": "K\u00f6nigreich Belgien",
+ "common": "Belgien"
+ },
+ "est": {
+ "official": "Belgia Kuningriik",
+ "common": "Belgia"
+ },
+ "fin": {
+ "official": "Belgian kuningaskunta",
+ "common": "Belgia"
+ },
+ "fra": {
+ "official": "Royaume de Belgique",
+ "common": "Belgique"
+ },
+ "hrv": {
+ "official": "Kraljevina Belgija",
+ "common": "Belgija"
+ },
+ "hun": {
+ "official": "Belga Kir\u00e1lys\u00e1g",
+ "common": "Belgium"
+ },
+ "ita": {
+ "official": "Regno del Belgio",
+ "common": "Belgio"
+ },
+ "jpn": {
+ "official": "\u30d9\u30eb\u30ae\u30fc\u738b\u56fd",
+ "common": "\u30d9\u30eb\u30ae\u30fc"
+ },
+ "kor": {
+ "official": "\ubca8\uae30\uc5d0 \uc655\uad6d",
+ "common": "\ubca8\uae30\uc5d0"
+ },
+ "nld": {
+ "official": "Koninkrijk Belgi\u00eb",
+ "common": "Belgi\u00eb"
+ },
+ "per": {
+ "official": "\u067e\u0627\u062f\u0634\u0627\u0647\u06cc \u0628\u0644\u0698\u06cc\u06a9",
+ "common": "\u0628\u0644\u0698\u06cc\u06a9"
+ },
+ "pol": {
+ "official": "Kr\u00f3lestwo Belgii",
+ "common": "Belgia"
+ },
+ "por": {
+ "official": "Reino da B\u00e9lgica",
+ "common": "B\u00e9lgica"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u0440\u043e\u043b\u0435\u0432\u0441\u0442\u0432\u043e \u0411\u0435\u043b\u044c\u0433\u0438\u044f",
+ "common": "\u0411\u0435\u043b\u044c\u0433\u0438\u044f"
+ },
+ "slk": {
+ "official": "Belgick\u00e9 kr\u00e1\u013eovstvo",
+ "common": "Belgicko"
+ },
+ "spa": {
+ "official": "Reino de B\u00e9lgica",
+ "common": "B\u00e9lgica"
+ },
+ "srp": {
+ "official": "Kraljevina Belgija",
+ "common": "Belgija"
+ },
+ "swe": {
+ "official": "Konungariket Belgien",
+ "common": "Belgien"
+ },
+ "tur": {
+ "official": "Bel\u00e7ika Krall\u0131\u011f\u0131",
+ "common": "Bel\u00e7ika"
+ },
+ "urd": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a\u0650 \u0628\u0644\u062c\u0626\u06cc\u0645",
+ "common": "\u0628\u0644\u062c\u0626\u06cc\u0645"
+ },
+ "zho": {
+ "official": "\u6bd4\u5229\u65f6\u738b\u56fd",
+ "common": "\u6bd4\u5229\u65f6"
+ }
+ },
+ "latlng": [
+ 50.83333333,
+ 4
+ ],
+ "landlocked": false,
+ "borders": [
+ "FRA",
+ "DEU",
+ "LUX",
+ "NLD"
+ ],
+ "area": 30528,
+ "flag": "\ud83c\udde7\ud83c\uddea",
+ "demonyms": {
+ "eng": {
+ "f": "Belgian",
+ "m": "Belgian"
+ },
+ "fra": {
+ "f": "Belge",
+ "m": "Belge"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Benin",
+ "official": "Republic of Benin",
+ "native": {
+ "fra": {
+ "official": "R\u00e9publique du B\u00e9nin",
+ "common": "B\u00e9nin"
+ }
+ }
+ },
+ "tld": [
+ ".bj"
+ ],
+ "cca2": "BJ",
+ "ccn3": "204",
+ "cca3": "BEN",
+ "cioc": "BEN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "XOF": {
+ "name": "West African CFA franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "29"
+ ]
+ },
+ "capital": [
+ "Porto-Novo"
+ ],
+ "altSpellings": [
+ "BJ",
+ "Republic of Benin",
+ "R\u00e9publique du B\u00e9nin"
+ ],
+ "region": "Africa",
+ "subregion": "Western Africa",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0628\u0646\u064a\u0646",
+ "common": "\u0628\u0646\u064a\u0646"
+ },
+ "bre": {
+ "official": "Republik Benin",
+ "common": "Benin"
+ },
+ "ces": {
+ "official": "Beninsk\u00e1 republika",
+ "common": "Benin"
+ },
+ "deu": {
+ "official": "Republik Benin",
+ "common": "Benin"
+ },
+ "est": {
+ "official": "Benini Vabariik",
+ "common": "Benin"
+ },
+ "fin": {
+ "official": "Beninin tasavalta",
+ "common": "Benin"
+ },
+ "fra": {
+ "official": "R\u00e9publique du B\u00e9nin",
+ "common": "B\u00e9nin"
+ },
+ "hrv": {
+ "official": "Republika Benin",
+ "common": "Benin"
+ },
+ "hun": {
+ "official": "Benini K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Benin"
+ },
+ "ita": {
+ "official": "Repubblica del Benin",
+ "common": "Benin"
+ },
+ "jpn": {
+ "official": "\u30d9\u30ca\u30f3\u5171\u548c\u56fd",
+ "common": "\u30d9\u30ca\u30f3"
+ },
+ "kor": {
+ "official": "\ubca0\ub0c9 \uacf5\ud654\uad6d",
+ "common": "\ubca0\ub0c9"
+ },
+ "nld": {
+ "official": "Republiek Benin",
+ "common": "Benin"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0628\u0646\u06cc\u0646",
+ "common": "\u0628\u0646\u06cc\u0646"
+ },
+ "pol": {
+ "official": "Benin",
+ "common": "Benin"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Benin",
+ "common": "Benin"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0411\u0435\u043d\u0438\u043d",
+ "common": "\u0411\u0435\u043d\u0438\u043d"
+ },
+ "slk": {
+ "official": "Beninsk\u00e1 republika",
+ "common": "Benin"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Benin",
+ "common": "Ben\u00edn"
+ },
+ "srp": {
+ "official": "Republika Benin",
+ "common": "Benin"
+ },
+ "swe": {
+ "official": "Republiken Benin",
+ "common": "Benin"
+ },
+ "tur": {
+ "official": "Benin Cumhuriyeti",
+ "common": "Benin"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0628\u06cc\u0646\u0646",
+ "common": "\u0628\u06cc\u0646\u0646"
+ },
+ "zho": {
+ "official": "\u8d1d\u5b81\u5171\u548c\u56fd",
+ "common": "\u8d1d\u5b81"
+ }
+ },
+ "latlng": [
+ 9.5,
+ 2.25
+ ],
+ "landlocked": false,
+ "borders": [
+ "BFA",
+ "NER",
+ "NGA",
+ "TGO"
+ ],
+ "area": 112622,
+ "flag": "\ud83c\udde7\ud83c\uddef",
+ "demonyms": {
+ "eng": {
+ "f": "Beninese",
+ "m": "Beninese"
+ },
+ "fra": {
+ "f": "B\u00e9ninoise",
+ "m": "B\u00e9ninois"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Burkina Faso",
+ "official": "Burkina Faso",
+ "native": {
+ "fra": {
+ "official": "R\u00e9publique du Burkina",
+ "common": "Burkina Faso"
+ }
+ }
+ },
+ "tld": [
+ ".bf"
+ ],
+ "cca2": "BF",
+ "ccn3": "854",
+ "cca3": "BFA",
+ "cioc": "BUR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "XOF": {
+ "name": "West African CFA franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "26"
+ ]
+ },
+ "capital": [
+ "Ouagadougou"
+ ],
+ "altSpellings": [
+ "BF"
+ ],
+ "region": "Africa",
+ "subregion": "Western Africa",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0628\u0648\u0631\u0643\u064a\u0646\u0627 \u0641\u0627\u0633\u0648",
+ "common": "\u0628\u0648\u0631\u0643\u064a\u0646\u0627 \u0641\u0627\u0633\u0648"
+ },
+ "bre": {
+ "official": "Burkina Faso",
+ "common": "Burkina Faso"
+ },
+ "ces": {
+ "official": "Burkina Faso",
+ "common": "Burkina Faso"
+ },
+ "deu": {
+ "official": "Burkina Faso",
+ "common": "Burkina Faso"
+ },
+ "est": {
+ "official": "Burkina Faso",
+ "common": "Burkina Faso"
+ },
+ "fin": {
+ "official": "Burkina Faso",
+ "common": "Burkina Faso"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Burkina",
+ "common": "Burkina Faso"
+ },
+ "hrv": {
+ "official": "Burkina Faso",
+ "common": "Burkina Faso"
+ },
+ "hun": {
+ "official": "Burkina Faso",
+ "common": "Burkina"
+ },
+ "ita": {
+ "official": "Burkina Faso",
+ "common": "Burkina Faso"
+ },
+ "jpn": {
+ "official": "\u30d6\u30eb\u30ad\u30ca\u30d5\u30a1\u30bd",
+ "common": "\u30d6\u30eb\u30ad\u30ca\u30d5\u30a1\u30bd"
+ },
+ "kor": {
+ "official": "\ubd80\ub974\ud0a4\ub098\ud30c\uc18c",
+ "common": "\ubd80\ub974\ud0a4\ub098\ud30c\uc18c"
+ },
+ "nld": {
+ "official": "Burkina Faso",
+ "common": "Burkina Faso"
+ },
+ "per": {
+ "official": "\u0628\u0648\u0631\u06a9\u06cc\u0646\u0627\u0641\u0627\u0633\u0648",
+ "common": "\u0628\u0648\u0631\u06a9\u06cc\u0646\u0627\u0641\u0627\u0633\u0648"
+ },
+ "pol": {
+ "official": "Burkina Faso",
+ "common": "Burkina Faso"
+ },
+ "por": {
+ "official": "Burkina Faso",
+ "common": "Burkina Faso"
+ },
+ "rus": {
+ "official": "\u0411\u0443\u0440\u043a\u0438\u043d\u0430 -\u0424\u0430\u0441\u043e",
+ "common": "\u0411\u0443\u0440\u043a\u0438\u043d\u0430-\u0424\u0430\u0441\u043e"
+ },
+ "slk": {
+ "official": "Burkina Faso",
+ "common": "Burkina Faso"
+ },
+ "spa": {
+ "official": "Burkina Faso",
+ "common": "Burkina Faso"
+ },
+ "srp": {
+ "official": "Burkina Faso",
+ "common": "Burkina Faso"
+ },
+ "swe": {
+ "official": "Burkina Faso",
+ "common": "Burkina Faso"
+ },
+ "tur": {
+ "official": "Burkina Faso",
+ "common": "Burkina Faso"
+ },
+ "urd": {
+ "official": "\u0628\u0631\u06a9\u06cc\u0646\u0627 \u0641\u0627\u0633\u0648",
+ "common": "\u0628\u0631\u06a9\u06cc\u0646\u0627 \u0641\u0627\u0633\u0648"
+ },
+ "zho": {
+ "official": "\u5e03\u57fa\u7eb3\u6cd5\u7d22",
+ "common": "\u5e03\u57fa\u7eb3\u6cd5\u7d22"
+ }
+ },
+ "latlng": [
+ 13,
+ -2
+ ],
+ "landlocked": true,
+ "borders": [
+ "BEN",
+ "CIV",
+ "GHA",
+ "MLI",
+ "NER",
+ "TGO"
+ ],
+ "area": 272967,
+ "flag": "\ud83c\udde7\ud83c\uddeb",
+ "demonyms": {
+ "eng": {
+ "f": "Burkinabe",
+ "m": "Burkinabe"
+ },
+ "fra": {
+ "f": "Burkinab\u00e9e",
+ "m": "Burkinab\u00e9"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Bangladesh",
+ "official": "People's Republic of Bangladesh",
+ "native": {
+ "ben": {
+ "official": "\u09ac\u09be\u0982\u09b2\u09be\u09a6\u09c7\u09b6 \u0997\u09a3\u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c0",
+ "common": "\u09ac\u09be\u0982\u09b2\u09be\u09a6\u09c7\u09b6"
+ }
+ }
+ },
+ "tld": [
+ ".bd"
+ ],
+ "cca2": "BD",
+ "ccn3": "050",
+ "cca3": "BGD",
+ "cioc": "BAN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "BDT": {
+ "name": "Bangladeshi taka",
+ "symbol": "\u09f3"
+ }
+ },
+ "idd": {
+ "root": "+8",
+ "suffixes": [
+ "80"
+ ]
+ },
+ "capital": [
+ "Dhaka"
+ ],
+ "altSpellings": [
+ "BD",
+ "People's Republic of Bangladesh",
+ "G\u00f4n\u00f4pr\u00f4jat\u00f4ntri Bangladesh"
+ ],
+ "region": "Asia",
+ "subregion": "Southern Asia",
+ "languages": {
+ "ben": "Bengali"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0628\u0646\u063a\u0644\u0627\u062f\u064a\u0634 \u0627\u0644\u0634\u0639\u0628\u064a\u0629",
+ "common": "\u0628\u0646\u063a\u0644\u0627\u062f\u064a\u0634"
+ },
+ "bre": {
+ "official": "Republik pobl Bangladesh",
+ "common": "Bangladesh"
+ },
+ "ces": {
+ "official": "Banglad\u00e9\u0161sk\u00e1 lidov\u00e1 republika",
+ "common": "Banglad\u00e9\u0161"
+ },
+ "deu": {
+ "official": "Volksrepublik Bangladesch",
+ "common": "Bangladesch"
+ },
+ "est": {
+ "official": "Bangladeshi Rahvavabariik",
+ "common": "Bangladesh"
+ },
+ "fin": {
+ "official": "Bangladeshin kansantasavalta",
+ "common": "Bangladesh"
+ },
+ "fra": {
+ "official": "La R\u00e9publique populaire du Bangladesh",
+ "common": "Bangladesh"
+ },
+ "hrv": {
+ "official": "Narodna Republika Banglade\u0161",
+ "common": "Banglade\u0161"
+ },
+ "hun": {
+ "official": "Banglades",
+ "common": "Banglades"
+ },
+ "ita": {
+ "official": "Repubblica popolare del Bangladesh",
+ "common": "Bangladesh"
+ },
+ "jpn": {
+ "official": "\u30d0\u30f3\u30b0\u30e9\u30c7\u30b7\u30e5\u4eba\u6c11\u5171\u548c\u56fd",
+ "common": "\u30d0\u30f3\u30b0\u30e9\u30c7\u30b7\u30e5"
+ },
+ "kor": {
+ "official": "\ubc29\uae00\ub77c\ub370\uc2dc \uc778\ubbfc \uacf5\ud654\uad6d",
+ "common": "\ubc29\uae00\ub77c\ub370\uc2dc"
+ },
+ "nld": {
+ "official": "Volksrepubliek Bangladesh",
+ "common": "Bangladesh"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062e\u0644\u0642 \u0628\u0646\u06af\u0644\u0627\u062f\u0634",
+ "common": "\u0628\u0646\u06af\u0644\u0627\u062f\u0634"
+ },
+ "pol": {
+ "official": "Ludowa Republika Bangladeszu",
+ "common": "Bangladesz"
+ },
+ "por": {
+ "official": "Rep\u00fablica Popular do Bangladesh",
+ "common": "Bangladesh"
+ },
+ "rus": {
+ "official": "\u041d\u0430\u0440\u043e\u0434\u043d\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0411\u0430\u043d\u0433\u043b\u0430\u0434\u0435\u0448",
+ "common": "\u0411\u0430\u043d\u0433\u043b\u0430\u0434\u0435\u0448"
+ },
+ "slk": {
+ "official": "Banglad\u00e9\u0161ska \u013eudov\u00e1 republika",
+ "common": "Banglad\u00e9\u0161"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Popular de Bangladesh",
+ "common": "Bangladesh"
+ },
+ "srp": {
+ "official": "Narodna Republika Banglade\u0161",
+ "common": "Banglade\u0161"
+ },
+ "swe": {
+ "official": "Folkrepubliken Bangladesh",
+ "common": "Bangladesh"
+ },
+ "tur": {
+ "official": "Banglade\u015f Halk Cumhuriyeti",
+ "common": "Banglade\u015f"
+ },
+ "urd": {
+ "official": "\u0639\u0648\u0627\u0645\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0628\u0646\u06af\u0644\u06c1 \u062f\u06cc\u0634",
+ "common": "\u0628\u0646\u06af\u0644\u06c1 \u062f\u06cc\u0634"
+ },
+ "zho": {
+ "official": "\u5b5f\u52a0\u62c9\u4eba\u6c11\u5171\u548c\u56fd",
+ "common": "\u5b5f\u52a0\u62c9\u56fd"
+ }
+ },
+ "latlng": [
+ 24,
+ 90
+ ],
+ "landlocked": false,
+ "borders": [
+ "MMR",
+ "IND"
+ ],
+ "area": 147570,
+ "flag": "\ud83c\udde7\ud83c\udde9",
+ "demonyms": {
+ "eng": {
+ "f": "Bangladeshi",
+ "m": "Bangladeshi"
+ },
+ "fra": {
+ "f": "Bangladaise",
+ "m": "Bangladais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Bulgaria",
+ "official": "Republic of Bulgaria",
+ "native": {
+ "bul": {
+ "official": "\u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0411\u044a\u043b\u0433\u0430\u0440\u0438\u044f",
+ "common": "\u0411\u044a\u043b\u0433\u0430\u0440\u0438\u044f"
+ }
+ }
+ },
+ "tld": [
+ ".bg"
+ ],
+ "cca2": "BG",
+ "ccn3": "100",
+ "cca3": "BGR",
+ "cioc": "BUL",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "BGN": {
+ "name": "Bulgarian lev",
+ "symbol": "\u043b\u0432"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "59"
+ ]
+ },
+ "capital": [
+ "Sofia"
+ ],
+ "altSpellings": [
+ "BG",
+ "Republic of Bulgaria",
+ "\u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0411\u044a\u043b\u0433\u0430\u0440\u0438\u044f"
+ ],
+ "region": "Europe",
+ "subregion": "Southeast Europe",
+ "languages": {
+ "bul": "Bulgarian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0628\u0644\u063a\u0627\u0631\u064a\u0627",
+ "common": "\u0628\u0644\u063a\u0627\u0631\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Bulgaria",
+ "common": "Bulgaria"
+ },
+ "ces": {
+ "official": "Bulharsk\u00e1 republika",
+ "common": "Bulharsko"
+ },
+ "deu": {
+ "official": "Republik Bulgarien",
+ "common": "Bulgarien"
+ },
+ "est": {
+ "official": "Bulgaaria Vabariik",
+ "common": "Bulgaaria"
+ },
+ "fin": {
+ "official": "Bulgarian tasavalta",
+ "common": "Bulgaria"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Bulgarie",
+ "common": "Bulgarie"
+ },
+ "hrv": {
+ "official": "Republika Bugarska",
+ "common": "Bugarska"
+ },
+ "hun": {
+ "official": "Bolg\u00e1r K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Bulg\u00e1ria"
+ },
+ "ita": {
+ "official": "Repubblica di Bulgaria",
+ "common": "Bulgaria"
+ },
+ "jpn": {
+ "official": "\u30d6\u30eb\u30ac\u30ea\u30a2\u5171\u548c\u56fd",
+ "common": "\u30d6\u30eb\u30ac\u30ea\u30a2"
+ },
+ "kor": {
+ "official": "\ubd88\uac00\ub9ac\uc544 \uacf5\ud654\uad6d",
+ "common": "\ubd88\uac00\ub9ac\uc544"
+ },
+ "nld": {
+ "official": "Republiek Bulgarije",
+ "common": "Bulgarije"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0628\u0644\u063a\u0627\u0631\u0633\u062a\u0627\u0646",
+ "common": "\u0628\u0644\u063a\u0627\u0631\u0633\u062a\u0627\u0646"
+ },
+ "pol": {
+ "official": "Republika Bu\u0142garii",
+ "common": "Bu\u0142garia"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Bulg\u00e1ria",
+ "common": "Bulg\u00e1ria"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0411\u043e\u043b\u0433\u0430\u0440\u0438\u044f",
+ "common": "\u0411\u043e\u043b\u0433\u0430\u0440\u0438\u044f"
+ },
+ "slk": {
+ "official": "Bulharsk\u00e1 republika",
+ "common": "Bulharsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Bulgaria",
+ "common": "Bulgaria"
+ },
+ "srp": {
+ "official": "Republika Bugarska",
+ "common": "Bugarska"
+ },
+ "swe": {
+ "official": "Republiken Bulgarien",
+ "common": "Bulgarien"
+ },
+ "tur": {
+ "official": "Bulgaristan Cumhuriyeti",
+ "common": "Bulgaristan"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0628\u0644\u063a\u0627\u0631\u06cc\u06c1",
+ "common": "\u0628\u0644\u063a\u0627\u0631\u06cc\u06c1"
+ },
+ "zho": {
+ "official": "\u4fdd\u52a0\u5229\u4e9a\u5171\u548c\u56fd",
+ "common": "\u4fdd\u52a0\u5229\u4e9a"
+ }
+ },
+ "latlng": [
+ 43,
+ 25
+ ],
+ "landlocked": false,
+ "borders": [
+ "GRC",
+ "MKD",
+ "ROU",
+ "SRB",
+ "TUR"
+ ],
+ "area": 110879,
+ "flag": "\ud83c\udde7\ud83c\uddec",
+ "demonyms": {
+ "eng": {
+ "f": "Bulgarian",
+ "m": "Bulgarian"
+ },
+ "fra": {
+ "f": "Bulgare",
+ "m": "Bulgare"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Bahrain",
+ "official": "Kingdom of Bahrain",
+ "native": {
+ "ara": {
+ "official": "\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0628\u062d\u0631\u064a\u0646",
+ "common": "\u0627\u0644\u0628\u062d\u0631\u064a\u0646"
+ }
+ }
+ },
+ "tld": [
+ ".bh"
+ ],
+ "cca2": "BH",
+ "ccn3": "048",
+ "cca3": "BHR",
+ "cioc": "BRN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "BHD": {
+ "name": "Bahraini dinar",
+ "symbol": ".\u062f.\u0628"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "73"
+ ]
+ },
+ "capital": [
+ "Manama"
+ ],
+ "altSpellings": [
+ "BH",
+ "Kingdom of Bahrain",
+ "Mamlakat al-Ba\u1e25rayn"
+ ],
+ "region": "Asia",
+ "subregion": "Western Asia",
+ "languages": {
+ "ara": "Arabic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0628\u062d\u0631\u064a\u0646",
+ "common": "\u0627\u0644\u0628\u062d\u0631\u064a\u0646"
+ },
+ "bre": {
+ "official": "Rouantelezh Bahrein",
+ "common": "Bahrein"
+ },
+ "ces": {
+ "official": "Kr\u00e1lovstv\u00ed Bahrajn",
+ "common": "Bahrajn"
+ },
+ "deu": {
+ "official": "K\u00f6nigreich Bahrain",
+ "common": "Bahrain"
+ },
+ "est": {
+ "official": "Bahreini Kuningriik",
+ "common": "Bahrein"
+ },
+ "fin": {
+ "official": "Bahrainin kuningaskunta",
+ "common": "Bahrain"
+ },
+ "fra": {
+ "official": "Royaume de Bahre\u00efn",
+ "common": "Bahre\u00efn"
+ },
+ "hrv": {
+ "official": "Kraljevina Bahrein",
+ "common": "Bahrein"
+ },
+ "hun": {
+ "official": "Bahreini Kir\u00e1lys\u00e1g",
+ "common": "Bahrein"
+ },
+ "ita": {
+ "official": "Regno del Bahrain",
+ "common": "Bahrein"
+ },
+ "jpn": {
+ "official": "\u30d0\u30fc\u30ec\u30fc\u30f3\u738b\u56fd",
+ "common": "\u30d0\u30fc\u30ec\u30fc\u30f3"
+ },
+ "kor": {
+ "official": "\ubc14\ub808\uc778 \uc655\uad6d",
+ "common": "\ubc14\ub808\uc778"
+ },
+ "nld": {
+ "official": "Koninkrijk Bahrein",
+ "common": "Bahrein"
+ },
+ "per": {
+ "official": "\u067e\u0627\u062f\u0634\u0627\u0647\u06cc \u0628\u062d\u0631\u06cc\u0646",
+ "common": "\u0628\u062d\u0631\u06cc\u0646"
+ },
+ "pol": {
+ "official": "Kr\u00f3lestwo Bahrajnu",
+ "common": "Bahrajn"
+ },
+ "por": {
+ "official": "Reino do Bahrein",
+ "common": "Bahrein"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u0440\u043e\u043b\u0435\u0432\u0441\u0442\u0432\u043e \u0411\u0430\u0445\u0440\u0435\u0439\u043d",
+ "common": "\u0411\u0430\u0445\u0440\u0435\u0439\u043d"
+ },
+ "slk": {
+ "official": "Bahrajnsk\u00e9 kr\u00e1\u013eovstvo",
+ "common": "Bahrajn"
+ },
+ "spa": {
+ "official": "Reino de Bahrein",
+ "common": "Bahrein"
+ },
+ "srp": {
+ "official": "Kraljevina Bahrein",
+ "common": "Bahrein"
+ },
+ "swe": {
+ "official": "Konungariket Bahrain",
+ "common": "Bahrain"
+ },
+ "tur": {
+ "official": "Bahreyn Krall\u0131\u011f\u0131",
+ "common": "Bahreyn"
+ },
+ "urd": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a\u0650 \u0628\u062d\u0631\u06cc\u0646",
+ "common": "\u0628\u062d\u0631\u06cc\u0646"
+ },
+ "zho": {
+ "official": "\u5df4\u6797\u738b\u56fd",
+ "common": "\u5df4\u6797"
+ }
+ },
+ "latlng": [
+ 26,
+ 50.55
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 765,
+ "flag": "\ud83c\udde7\ud83c\udded",
+ "demonyms": {
+ "eng": {
+ "f": "Bahraini",
+ "m": "Bahraini"
+ },
+ "fra": {
+ "f": "Bahre\u00efnienne",
+ "m": "Bahre\u00efnien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Bahamas",
+ "official": "Commonwealth of the Bahamas",
+ "native": {
+ "eng": {
+ "official": "Commonwealth of the Bahamas",
+ "common": "Bahamas"
+ }
+ }
+ },
+ "tld": [
+ ".bs"
+ ],
+ "cca2": "BS",
+ "ccn3": "044",
+ "cca3": "BHS",
+ "cioc": "BAH",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "BSD": {
+ "name": "Bahamian dollar",
+ "symbol": "$"
+ },
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "242"
+ ]
+ },
+ "capital": [
+ "Nassau"
+ ],
+ "altSpellings": [
+ "BS",
+ "Commonwealth of the Bahamas"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0643\u0648\u0645\u0646\u0648\u0644\u062b \u062c\u0632\u0631 \u0627\u0644\u0628\u0647\u0627\u0645\u0627",
+ "common": "\u0627\u0644\u0628\u0647\u0627\u0645\u0627"
+ },
+ "bre": {
+ "official": "Kenglad ar Bahamas",
+ "common": "Bahamas"
+ },
+ "ces": {
+ "official": "Bahamsk\u00e9 spole\u010denstv\u00ed",
+ "common": "Bahamy"
+ },
+ "deu": {
+ "official": "Commonwealth der Bahamas",
+ "common": "Bahamas"
+ },
+ "est": {
+ "official": "Bahama \u00dchendus",
+ "common": "Bahama"
+ },
+ "fin": {
+ "official": "Bahaman liittovaltio",
+ "common": "Bahamasaaret"
+ },
+ "fra": {
+ "official": "Commonwealth des Bahamas",
+ "common": "Bahamas"
+ },
+ "hrv": {
+ "official": "Zajednica Bahama",
+ "common": "Bahami"
+ },
+ "hun": {
+ "official": "Bahamai K\u00f6z\u00f6ss\u00e9g",
+ "common": "Bahama-szigetek"
+ },
+ "ita": {
+ "official": "Commonwealth delle Bahamas",
+ "common": "Bahamas"
+ },
+ "jpn": {
+ "official": "\u30d0\u30cf\u30de\u56fd",
+ "common": "\u30d0\u30cf\u30de"
+ },
+ "kor": {
+ "official": "\ubc14\ud558\ub9c8 \uc5f0\ubc29",
+ "common": "\ubc14\ud558\ub9c8"
+ },
+ "nld": {
+ "official": "Gemenebest van de Bahama's",
+ "common": "Bahama\u2019s"
+ },
+ "per": {
+ "official": "\u0642\u0644\u0645\u0631\u0648 \u0647\u0645\u0633\u0648\u062f \u0628\u0627\u0647\u0627\u0645\u0627",
+ "common": "\u0628\u0627\u0647\u0627\u0645\u0627"
+ },
+ "pol": {
+ "official": "Bahamy",
+ "common": "Bahamy"
+ },
+ "por": {
+ "official": "Comunidade das Bahamas",
+ "common": "Bahamas"
+ },
+ "rus": {
+ "official": "\u0421\u043e\u0434\u0440\u0443\u0436\u0435\u0441\u0442\u0432\u043e \u0411\u0430\u0433\u0430\u043c\u0441\u043a\u0438\u0445 \u041e\u0441\u0442\u0440\u043e\u0432\u043e\u0432",
+ "common": "\u0411\u0430\u0433\u0430\u043c\u0441\u043a\u0438\u0435 \u041e\u0441\u0442\u0440\u043e\u0432\u0430"
+ },
+ "slk": {
+ "official": "Bahamsk\u00e9 spolo\u010denstvo",
+ "common": "Bahamy"
+ },
+ "spa": {
+ "official": "Commonwealth de las Bahamas",
+ "common": "Bahamas"
+ },
+ "srp": {
+ "official": "Komonvelt Bahama",
+ "common": "Bahami"
+ },
+ "swe": {
+ "official": "Samv\u00e4ldet Bahamas",
+ "common": "Bahamas"
+ },
+ "tur": {
+ "official": "Bahama Milletler Toplulu\u011fu",
+ "common": "Bahamalar"
+ },
+ "urd": {
+ "official": "\u062f\u0648\u0644\u062a\u0650 \u0645\u0634\u062a\u0631\u06a9\u06c1 \u0628\u06c1\u0627\u0645\u0627\u0633",
+ "common": "\u0628\u06c1\u0627\u0645\u0627\u0633"
+ },
+ "zho": {
+ "official": "\u5df4\u54c8\u9a6c\u8054\u90a6",
+ "common": "\u5df4\u54c8\u9a6c"
+ }
+ },
+ "latlng": [
+ 24.25,
+ -76
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 13943,
+ "flag": "\ud83c\udde7\ud83c\uddf8",
+ "demonyms": {
+ "eng": {
+ "f": "Bahamian",
+ "m": "Bahamian"
+ },
+ "fra": {
+ "f": "Bahamienne",
+ "m": "Bahamien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Bosnia and Herzegovina",
+ "official": "Bosnia and Herzegovina",
+ "native": {
+ "bos": {
+ "official": "Bosna i Hercegovina",
+ "common": "Bosna i Hercegovina"
+ },
+ "hrv": {
+ "official": "Bosna i Hercegovina",
+ "common": "Bosna i Hercegovina"
+ },
+ "srp": {
+ "official": "\u0411\u043e\u0441\u043da \u0438 \u0425\u0435\u0440\u0446\u0435\u0433\u043e\u0432\u0438\u043d\u0430",
+ "common": "\u0411\u043e\u0441\u043da \u0438 \u0425\u0435\u0440\u0446\u0435\u0433\u043e\u0432\u0438\u043d\u0430"
+ }
+ }
+ },
+ "tld": [
+ ".ba"
+ ],
+ "cca2": "BA",
+ "ccn3": "070",
+ "cca3": "BIH",
+ "cioc": "BIH",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "BAM": {
+ "name": "Bosnia and Herzegovina convertible mark",
+ "symbol": "KM"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "87"
+ ]
+ },
+ "capital": [
+ "Sarajevo"
+ ],
+ "altSpellings": [
+ "BA",
+ "Bosnia-Herzegovina",
+ "\u0411\u043e\u0441\u043d\u0430 \u0438 \u0425\u0435\u0440\u0446\u0435\u0433\u043e\u0432\u0438\u043d\u0430"
+ ],
+ "region": "Europe",
+ "subregion": "Southeast Europe",
+ "languages": {
+ "bos": "Bosnian",
+ "hrv": "Croatian",
+ "srp": "Serbian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u0628\u0648\u0633\u0646\u0629 \u0648\u0627\u0644\u0647\u0631\u0633\u0643",
+ "common": "\u0627\u0644\u0628\u0648\u0633\u0646\u0629 \u0648\u0627\u0644\u0647\u0631\u0633\u0643"
+ },
+ "bre": {
+ "official": "Bosnia-ha-Herzegovina",
+ "common": "Bosnia-ha-Herzegovina"
+ },
+ "ces": {
+ "official": "Bosna a Hercegovina",
+ "common": "Bosna a Hercegovina"
+ },
+ "deu": {
+ "official": "Bosnien und Herzegowina",
+ "common": "Bosnien und Herzegowina"
+ },
+ "est": {
+ "official": "Bosnia ja Hertsegoviina",
+ "common": "Bosnia ja Hertsegoviina"
+ },
+ "fin": {
+ "official": "Bosnia ja Hertsegovina",
+ "common": "Bosnia ja Hertsegovina"
+ },
+ "fra": {
+ "official": "Bosnie-et-Herz\u00e9govine",
+ "common": "Bosnie-Herz\u00e9govine"
+ },
+ "hrv": {
+ "official": "Bosna i Hercegovina",
+ "common": "Bosna i Hercegovina"
+ },
+ "hun": {
+ "official": "Bosznia-Hercegovina",
+ "common": "Bosznia-Hercegovina"
+ },
+ "ita": {
+ "official": "Bosnia-Erzegovina",
+ "common": "Bosnia ed Erzegovina"
+ },
+ "jpn": {
+ "official": "\u30dc\u30b9\u30cb\u30a2\u30fb\u30d8\u30eb\u30c4\u30a7\u30b4\u30d3\u30ca",
+ "common": "\u30dc\u30b9\u30cb\u30a2\u30fb\u30d8\u30eb\u30c4\u30a7\u30b4\u30d3\u30ca"
+ },
+ "kor": {
+ "official": "\ubcf4\uc2a4\ub2c8\uc544 \ud5e4\ub974\uccb4\uace0\ube44\ub098",
+ "common": "\ubcf4\uc2a4\ub2c8\uc544 \ud5e4\ub974\uccb4\uace0\ube44\ub098"
+ },
+ "nld": {
+ "official": "Bosni\u00eb-Herzegovina",
+ "common": "Bosni\u00eb en Herzegovina"
+ },
+ "per": {
+ "official": "\u0628\u0648\u0633\u0646\u06cc \u0648 \u0647\u0631\u0632\u06af\u0648\u06cc\u0646",
+ "common": "\u0628\u0648\u0633\u0646\u06cc \u0648 \u0647\u0631\u0632\u06af\u0648\u06cc\u0646"
+ },
+ "pol": {
+ "official": "Bo\u015bnia i Hercegowina",
+ "common": "Bo\u015bnia i Hercegowina"
+ },
+ "por": {
+ "official": "B\u00f3snia e Herzegovina",
+ "common": "B\u00f3snia e Herzegovina"
+ },
+ "rus": {
+ "official": "\u0411\u043e\u0441\u043d\u0438\u044f \u0438 \u0413\u0435\u0440\u0446\u0435\u0433\u043e\u0432\u0438\u043d\u0430",
+ "common": "\u0411\u043e\u0441\u043d\u0438\u044f \u0438 \u0413\u0435\u0440\u0446\u0435\u0433\u043e\u0432\u0438\u043d\u0430"
+ },
+ "slk": {
+ "official": "Republika Bosny a Hercegoviny",
+ "common": "Bosna a Hercegovina"
+ },
+ "spa": {
+ "official": "Bosnia y Herzegovina",
+ "common": "Bosnia y Herzegovina"
+ },
+ "srp": {
+ "official": "Bosna i Hercegovina",
+ "common": "Bosna i Hercegovina"
+ },
+ "swe": {
+ "official": "Bosnien och Hercegovina",
+ "common": "Bosnien och Hercegovina"
+ },
+ "tur": {
+ "official": "Bosna ve Hersek",
+ "common": "Bosna-Hersek"
+ },
+ "urd": {
+ "official": "\u0628\u0648\u0633\u0646\u06cc\u0627 \u0648 \u06c1\u0631\u0632\u06cc\u06af\u0648\u0648\u06cc\u0646\u0627",
+ "common": "\u0628\u0648\u0633\u0646\u06cc\u0627 \u0648 \u06c1\u0631\u0632\u06cc\u06af\u0648\u0648\u06cc\u0646\u0627"
+ },
+ "zho": {
+ "official": "\u6ce2\u65af\u5c3c\u4e9a\u548c\u9ed1\u585e\u54e5\u7ef4\u90a3",
+ "common": "\u6ce2\u65af\u5c3c\u4e9a\u548c\u9ed1\u585e\u54e5\u7ef4\u90a3"
+ }
+ },
+ "latlng": [
+ 44,
+ 18
+ ],
+ "landlocked": false,
+ "borders": [
+ "HRV",
+ "MNE",
+ "SRB"
+ ],
+ "area": 51209,
+ "flag": "\ud83c\udde7\ud83c\udde6",
+ "demonyms": {
+ "eng": {
+ "f": "Bosnian, Herzegovinian",
+ "m": "Bosnian, Herzegovinian"
+ },
+ "fra": {
+ "f": "Bosnienne",
+ "m": "Bosnien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Saint Barth\u00e9lemy",
+ "official": "Collectivity of Saint Barth\u00e9lemy",
+ "native": {
+ "fra": {
+ "official": "Collectivit\u00e9 de Saint-Barth\u00e9lemy",
+ "common": "Saint-Barth\u00e9lemy"
+ }
+ }
+ },
+ "tld": [
+ ".bl"
+ ],
+ "cca2": "BL",
+ "ccn3": "652",
+ "cca3": "BLM",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "90"
+ ]
+ },
+ "capital": [
+ "Gustavia"
+ ],
+ "altSpellings": [
+ "BL",
+ "St. Barthelemy",
+ "Collectivity of Saint Barth\u00e9lemy",
+ "Collectivit\u00e9 de Saint-Barth\u00e9lemy"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u062a\u062c\u0645\u0639 \u0627\u0644\u0625\u0642\u0644\u064a\u0645\u064a \u0644\u0633\u0627\u0646\u062a \u0628\u0627\u0631\u062a\u064a\u0644\u064a\u0645\u064a",
+ "common": "\u0633\u0627\u0646 \u0628\u0627\u0631\u062a\u0644\u064a\u0645\u064a"
+ },
+ "bre": {
+ "official": "Saint-Barth\u00e9lemy",
+ "common": "Saint-Barth\u00e9lemy"
+ },
+ "ces": {
+ "official": "Svat\u00fd Bartolom\u011bj",
+ "common": "Svat\u00fd Bartolom\u011bj"
+ },
+ "deu": {
+ "official": "Gebietsk\u00f6rperschaft Saint-Barth\u00e9lemy",
+ "common": "Saint-Barth\u00e9lemy"
+ },
+ "est": {
+ "official": "Saint-Barth\u00e9lemy territoriaal\u00fchendus",
+ "common": "Saint-Barth\u00e9lemy"
+ },
+ "fin": {
+ "official": "Saint-Barth\u00e9lemyn yhteis\u00f6",
+ "common": "Saint-Barth\u00e9lemy"
+ },
+ "fra": {
+ "official": "Collectivit\u00e9 de Saint-Barth\u00e9lemy",
+ "common": "Saint-Barth\u00e9lemy"
+ },
+ "hrv": {
+ "official": "Kolektivnost sv Barth\u00e9lemy",
+ "common": "Saint Barth\u00e9lemy"
+ },
+ "hun": {
+ "official": "Saint-Barth\u00e9lemy",
+ "common": "Saint-Barth\u00e9lemy"
+ },
+ "ita": {
+ "official": "Collettivit\u00e0 di Saint Barth\u00e9lemy",
+ "common": "Antille Francesi"
+ },
+ "jpn": {
+ "official": "\u30b5\u30f3\u30d0\u30eb\u30c6\u30eb\u30df\u30fc",
+ "common": "\u30b5\u30f3\u30fb\u30d0\u30eb\u30c6\u30eb\u30df\u30fc\u5cf6"
+ },
+ "kor": {
+ "official": "\uc0dd\ubc14\ub974\ud154\ub808\ubbf8",
+ "common": "\uc0dd\ubc14\ub974\ud154\ub808\ubbf8"
+ },
+ "nld": {
+ "official": "Gemeenschap Saint Barth\u00e9lemy",
+ "common": "Saint Barth\u00e9lemy"
+ },
+ "per": {
+ "official": "\u0633\u0646 \u0628\u0627\u0631\u062a\u0644\u0645\u06cc",
+ "common": "\u0633\u0646 \u0628\u0627\u0631\u062a\u0644\u0645\u06cc"
+ },
+ "pol": {
+ "official": "Saint-Barth\u00e9lemy",
+ "common": "Saint-Barth\u00e9lemy"
+ },
+ "por": {
+ "official": "Coletividade de Saint Barth\u00e9lemy",
+ "common": "S\u00e3o Bartolomeu"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u043b\u043b\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u0421\u0430\u043d\u043a\u0442 -\u0411\u0430\u0440\u0442\u0435\u043b\u044c\u043c\u0438",
+ "common": "\u0421\u0435\u043d-\u0411\u0430\u0440\u0442\u0435\u043b\u0435\u043c\u0438"
+ },
+ "slk": {
+ "official": "Sv\u00e4t\u00fd Bartolomej",
+ "common": "Sv\u00e4t\u00fd Bartolomej"
+ },
+ "spa": {
+ "official": "Colectividad de San Barth\u00e9lemy",
+ "common": "San Bartolom\u00e9"
+ },
+ "srp": {
+ "official": "Sveti Bartolomej",
+ "common": "kolektivitet Sveti Bartolomej"
+ },
+ "swe": {
+ "official": "Saint-Barth\u00e9lemy",
+ "common": "Saint-Barth\u00e9lemy"
+ },
+ "tur": {
+ "official": "Saint Barth\u00e9lemy",
+ "common": "Saint Barth\u00e9lemy"
+ },
+ "urd": {
+ "official": "\u0633\u06cc\u0646\u0679 \u0628\u0627\u0631\u062a\u06be\u06cc\u0645\u0644\u06d2",
+ "common": "\u0633\u06cc\u0646\u0679 \u0628\u0627\u0631\u062a\u06be\u06cc\u0645\u0644\u06d2"
+ },
+ "zho": {
+ "official": "\u5723\u5df4\u6cf0\u52d2\u7c73\u96c6\u4f53",
+ "common": "\u5723\u5df4\u6cf0\u52d2\u7c73"
+ }
+ },
+ "latlng": [
+ 18.5,
+ -63.41666666
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 21,
+ "flag": "\ud83c\udde7\ud83c\uddf1",
+ "demonyms": {
+ "eng": {
+ "f": "Saint Barth\u00e9lemy Islander",
+ "m": "Saint Barth\u00e9lemy Islander"
+ },
+ "fra": {
+ "f": "Barth\u00e9lom\u00e9enne",
+ "m": "Barth\u00e9lom\u00e9en"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Saint Helena, Ascension and Tristan da Cunha",
+ "official": "Saint Helena, Ascension and Tristan da Cunha",
+ "native": {
+ "eng": {
+ "official": "Saint Helena, Ascension and Tristan da Cunha",
+ "common": "Saint Helena, Ascension and Tristan da Cunha"
+ }
+ }
+ },
+ "tld": [
+ ".sh",
+ ".ac"
+ ],
+ "cca2": "SH",
+ "ccn3": "654",
+ "cca3": "SHN",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "GBP": {
+ "name": "Pound sterling",
+ "symbol": "\u00a3"
+ },
+ "SHP": {
+ "name": "Saint Helena pound",
+ "symbol": "\u00a3"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "90",
+ "47"
+ ]
+ },
+ "capital": [
+ "Jamestown"
+ ],
+ "altSpellings": [
+ "Saint Helena",
+ "St. Helena, Ascension and Tristan da Cunha"
+ ],
+ "region": "Africa",
+ "subregion": "Western Africa",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0633\u0627\u0646\u062a \u0647\u064a\u0644\u064a\u0646\u0627 \u0648\u0623\u0633\u064a\u0646\u0634\u064a\u0646 \u0648\u062a\u0631\u064a\u0633\u062a\u0627\u0646 \u062f\u0627 \u0643\u0648\u0646\u0627",
+ "common": "\u0633\u0627\u0646\u062a \u0647\u064a\u0644\u064a\u0646\u0627 \u0648\u0623\u0633\u064a\u0646\u0634\u064a\u0646 \u0648\u062a\u0631\u064a\u0633\u062a\u0627\u0646 \u062f\u0627 \u0643\u0648\u0646\u0627"
+ },
+ "bre": {
+ "official": "Saint Helena, Ascension ha Tristan da Cunha",
+ "common": "Saint Helena, Ascension ha Tristan da Cunha"
+ },
+ "ces": {
+ "official": "Svat\u00e1 Helena, Ascension a Tristan da Cunha",
+ "common": "Svat\u00e1 Helena, Ascension a Tristan da Cunha"
+ },
+ "deu": {
+ "official": "Sankt Helena, Ascension und Tristan da Cunha",
+ "common": "St. Helena, Ascension und Tristan da Cunha"
+ },
+ "est": {
+ "official": "Saint Helena, Ascension ja Tristan da Cunha",
+ "common": "Saint Helena, Ascension ja Tristan da Cunha"
+ },
+ "fin": {
+ "official": "Saint Helena, Ascension ja Tristan da Cunha",
+ "common": "Saint Helena, Ascension ja Tristan da Cunha"
+ },
+ "fra": {
+ "official": "Sainte-H\u00e9l\u00e8ne, Ascension et Tristan da Cunha",
+ "common": "Sainte-H\u00e9l\u00e8ne, Ascension et Tristan da Cunha"
+ },
+ "hrv": {
+ "official": "Sveta Helena",
+ "common": "Sveta Helena"
+ },
+ "hun": {
+ "official": "Szent Ilona",
+ "common": "Szent Ilona-sziget"
+ },
+ "ita": {
+ "official": "Sant'Elena, Ascensione e Tristan da Cunha",
+ "common": "Sant'Elena, Ascensione e Tristan da Cunha"
+ },
+ "jpn": {
+ "official": "\u30bb\u30f3\u30c8\u30d8\u30ec\u30ca\u30fb\u30a2\u30bb\u30f3\u30b7\u30e7\u30f3\u30fb\u30c8\u30ea\u30b9\u30bf\u30f3\u30c0\u30af\u30fc\u30cb\u30e3",
+ "common": "\u30bb\u30f3\u30c8\u30d8\u30ec\u30ca"
+ },
+ "kor": {
+ "official": "\uc138\uc778\ud2b8\ud5ec\ub808\ub098",
+ "common": "\uc138\uc778\ud2b8\ud5ec\ub808\ub098"
+ },
+ "nld": {
+ "official": "Sint-Helena, Ascension en Tristan da Cunha",
+ "common": "Sint-Helena, Ascension en Tristan da Cunha"
+ },
+ "per": {
+ "official": "\u0633\u0646\u062a \u0647\u0644\u0646",
+ "common": "\u0633\u0646\u062a \u0647\u0644\u0646"
+ },
+ "pol": {
+ "official": "Wyspa \u015awi\u0119tej Heleny, Wyspa Wniebowst\u0105pienia i Tristan da Cunha",
+ "common": "Wyspa \u015awi\u0119tej Heleny, Wyspa Wniebowst\u0105pienia i Tristan da Cunha"
+ },
+ "por": {
+ "official": "Santa Helena, Ascens\u00e3o e Trist\u00e3o da Cunha",
+ "common": "Santa Helena, Ascens\u00e3o e Trist\u00e3o da Cunha"
+ },
+ "rus": {
+ "official": "\u041e\u0441\u0442\u0440\u043e\u0432\u0430 \u0421\u0432\u044f\u0442\u043e\u0439 \u0415\u043b\u0435\u043d\u044b, \u0412\u043e\u0437\u043d\u0435\u0441\u0435\u043d\u0438\u044f \u0438 \u0422\u0440\u0438\u0441\u0442\u0430\u043d-\u0434\u0430-\u041a\u0443\u043d\u044c\u044f",
+ "common": "\u041e\u0441\u0442\u0440\u043e\u0432\u0430 \u0421\u0432\u044f\u0442\u043e\u0439 \u0415\u043b\u0435\u043d\u044b, \u0412\u043e\u0437\u043d\u0435\u0441\u0435\u043d\u0438\u044f \u0438 \u0422\u0440\u0438\u0441\u0442\u0430\u043d-\u0434\u0430-\u041a\u0443\u043d\u044c\u044f"
+ },
+ "slk": {
+ "official": "Sv\u00e4t\u00e1 Helena (z\u00e1morsk\u00e9 \u00fazemie)",
+ "common": "Sv\u00e4t\u00e1 Helena (z\u00e1morsk\u00e9 \u00fazemie)"
+ },
+ "spa": {
+ "official": "Santa Elena, Ascensi\u00f3n y Trist\u00e1n de Acu\u00f1a",
+ "common": "Santa Elena, Ascensi\u00f3n y Trist\u00e1n de Acu\u00f1a"
+ },
+ "srp": {
+ "official": "Sveta Jelena",
+ "common": "Sveta Jelena"
+ },
+ "swe": {
+ "official": "Sankta Helena",
+ "common": "Sankta Helena"
+ },
+ "tur": {
+ "official": "Saint Helena",
+ "common": "Saint Helena"
+ },
+ "urd": {
+ "official": "\u0633\u06cc\u0646\u0679 \u06c1\u0644\u06cc\u0646\u0627\u060c \u0627\u0633\u06cc\u0646\u0634\u0646 \u0648 \u062a\u0631\u0633\u0679\u0627\u0646 \u062f\u0627 \u06a9\u0648\u0646\u06cc\u0627",
+ "common": "\u0633\u06cc\u0646\u0679 \u06c1\u0644\u06cc\u0646\u0627\u060c \u0627\u0633\u06cc\u0646\u0634\u0646 \u0648 \u062a\u0631\u0633\u0679\u0627\u0646 \u062f\u0627 \u06a9\u0648\u0646\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u5723\u8d6b\u52d2\u62ff\u3001\u963f\u68ee\u677e\u548c\u7279\u91cc\u65af\u5766-\u8fbe\u5e93\u5c3c\u4e9a",
+ "common": "\u5723\u8d6b\u52d2\u62ff\u3001\u963f\u68ee\u677e\u548c\u7279\u91cc\u65af\u5766-\u8fbe\u5e93\u5c3c\u4e9a"
+ }
+ },
+ "latlng": [
+ -15.95,
+ -5.72
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 394,
+ "flag": "\ud83c\uddf8\ud83c\udded",
+ "demonyms": {
+ "eng": {
+ "f": "Saint Helenian",
+ "m": "Saint Helenian"
+ },
+ "fra": {
+ "f": "Sainte-H\u00e9l\u00e9noise",
+ "m": "Sainte-H\u00e9l\u00e8nois"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Belarus",
+ "official": "Republic of Belarus",
+ "native": {
+ "bel": {
+ "official": "\u0420\u044d\u0441\u043f\u0443\u0431\u043b\u0456\u043a\u0430 \u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c",
+ "common": "\u0411\u0435\u043b\u0430\u0440\u0443\u0301\u0441\u044c"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c",
+ "common": "\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c"
+ }
+ }
+ },
+ "tld": [
+ ".by"
+ ],
+ "cca2": "BY",
+ "ccn3": "112",
+ "cca3": "BLR",
+ "cioc": "BLR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "BYN": {
+ "name": "Belarusian ruble",
+ "symbol": "Br"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "75"
+ ]
+ },
+ "capital": [
+ "Minsk"
+ ],
+ "altSpellings": [
+ "BY",
+ "Bielaru\u015b",
+ "Republic of Belarus",
+ "\u0411\u0435\u043b\u043e\u0440\u0443\u0441\u0441\u0438\u044f",
+ "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0411\u0435\u043b\u043e\u0440\u0443\u0441\u0441\u0438\u044f"
+ ],
+ "region": "Europe",
+ "subregion": "Eastern Europe",
+ "languages": {
+ "bel": "Belarusian",
+ "rus": "Russian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0628\u064a\u0644\u0627\u0631\u0648\u0633\u064a\u0627",
+ "common": "\u0628\u064a\u0644\u0627\u0631\u0648\u0633\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Belarus",
+ "common": "Belarus"
+ },
+ "ces": {
+ "official": "B\u011blorusk\u00e1 republika",
+ "common": "B\u011blorusko"
+ },
+ "deu": {
+ "official": "Republik Belarus",
+ "common": "Belarus"
+ },
+ "est": {
+ "official": "Valgevene Vabariik",
+ "common": "Valgevene"
+ },
+ "fin": {
+ "official": "Valko-Ven\u00e4j\u00e4n tasavalta",
+ "common": "Valko-Ven\u00e4j\u00e4"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Bi\u00e9lorussie",
+ "common": "Bi\u00e9lorussie"
+ },
+ "hrv": {
+ "official": "Republika Bjelorusija",
+ "common": "Bjelorusija"
+ },
+ "hun": {
+ "official": "Feh\u00e9rorosz K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Feh\u00e9roroszorsz\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica di Belarus",
+ "common": "Bielorussia"
+ },
+ "jpn": {
+ "official": "\u30d9\u30e9\u30eb\u30fc\u30b7\u5171\u548c\u56fd",
+ "common": "\u30d9\u30e9\u30eb\u30fc\u30b7"
+ },
+ "kor": {
+ "official": "\ubca8\ub77c\ub8e8\uc2a4 \uacf5\ud654\uad6d",
+ "common": "\ubca8\ub77c\ub8e8\uc2a4"
+ },
+ "nld": {
+ "official": "Republiek Belarus",
+ "common": "Wit-Rusland"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0628\u0644\u0627\u0631\u0648\u0633",
+ "common": "\u0628\u0644\u0627\u0631\u0648\u0633"
+ },
+ "pol": {
+ "official": "Republika Bia\u0142orusi",
+ "common": "Bia\u0142oru\u015b"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Bielorr\u00fassia",
+ "common": "Bielor\u00fassia"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c",
+ "common": "\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u044c"
+ },
+ "slk": {
+ "official": "Bielorusk\u00e1 republika",
+ "common": "Bielorusko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Belar\u00fas",
+ "common": "Bielorrusia"
+ },
+ "srp": {
+ "official": "Republika Belorusija",
+ "common": "Belorusija"
+ },
+ "swe": {
+ "official": "Republiken Vitryssland",
+ "common": "Belarus"
+ },
+ "tur": {
+ "official": "Belarus Cumhuriyeti",
+ "common": "Belarus"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0628\u06cc\u0644\u0627\u0631\u0648\u0633",
+ "common": "\u0628\u06cc\u0644\u0627\u0631\u0648\u0633"
+ },
+ "zho": {
+ "official": "\u767d\u4fc4\u7f57\u65af\u5171\u548c\u56fd",
+ "common": "\u767d\u4fc4\u7f57\u65af"
+ }
+ },
+ "latlng": [
+ 53,
+ 28
+ ],
+ "landlocked": true,
+ "borders": [
+ "LVA",
+ "LTU",
+ "POL",
+ "RUS",
+ "UKR"
+ ],
+ "area": 207600,
+ "flag": "\ud83c\udde7\ud83c\uddfe",
+ "demonyms": {
+ "eng": {
+ "f": "Belarusian",
+ "m": "Belarusian"
+ },
+ "fra": {
+ "f": "Bi\u00e9lorusse",
+ "m": "Bi\u00e9lorusse"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Belize",
+ "official": "Belize",
+ "native": {
+ "bjz": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "eng": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "spa": {
+ "official": "Belice",
+ "common": "Belice"
+ }
+ }
+ },
+ "tld": [
+ ".bz"
+ ],
+ "cca2": "BZ",
+ "ccn3": "084",
+ "cca3": "BLZ",
+ "cioc": "BIZ",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "BZD": {
+ "name": "Belize dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "01"
+ ]
+ },
+ "capital": [
+ "Belmopan"
+ ],
+ "altSpellings": [
+ "BZ"
+ ],
+ "region": "Americas",
+ "subregion": "Central America",
+ "languages": {
+ "bjz": "Belizean Creole",
+ "eng": "English",
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0628\u0644\u064a\u0632",
+ "common": "\u0628\u0644\u064a\u0632"
+ },
+ "bre": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "ces": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "deu": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "est": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "fin": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "fra": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "hrv": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "hun": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "ita": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "jpn": {
+ "official": "\u30d9\u30ea\u30fc\u30ba",
+ "common": "\u30d9\u30ea\u30fc\u30ba"
+ },
+ "kor": {
+ "official": "\ubca8\ub9ac\uc988",
+ "common": "\ubca8\ub9ac\uc988"
+ },
+ "nld": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "per": {
+ "official": "\u0628\u0644\u06cc\u0632",
+ "common": "\u0628\u0644\u06cc\u0632"
+ },
+ "pol": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "por": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "rus": {
+ "official": "\u0411\u0435\u043b\u0438\u0437",
+ "common": "\u0411\u0435\u043b\u0438\u0437"
+ },
+ "slk": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "spa": {
+ "official": "Belice",
+ "common": "Belice"
+ },
+ "srp": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "swe": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "tur": {
+ "official": "Belize",
+ "common": "Belize"
+ },
+ "urd": {
+ "official": "\u0628\u06cc\u0644\u06cc\u0632",
+ "common": "\u0628\u06cc\u0644\u06cc\u0632"
+ },
+ "zho": {
+ "official": "\u4f2f\u5229\u5179",
+ "common": "\u4f2f\u5229\u5179"
+ }
+ },
+ "latlng": [
+ 17.25,
+ -88.75
+ ],
+ "landlocked": false,
+ "borders": [
+ "GTM",
+ "MEX"
+ ],
+ "area": 22966,
+ "flag": "\ud83c\udde7\ud83c\uddff",
+ "demonyms": {
+ "eng": {
+ "f": "Belizean",
+ "m": "Belizean"
+ },
+ "fra": {
+ "f": "B\u00e9lizienne",
+ "m": "B\u00e9lizien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Bermuda",
+ "official": "Bermuda",
+ "native": {
+ "eng": {
+ "official": "Bermuda",
+ "common": "Bermuda"
+ }
+ }
+ },
+ "tld": [
+ ".bm"
+ ],
+ "cca2": "BM",
+ "ccn3": "060",
+ "cca3": "BMU",
+ "cioc": "BER",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "BMD": {
+ "name": "Bermudian dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "441"
+ ]
+ },
+ "capital": [
+ "Hamilton"
+ ],
+ "altSpellings": [
+ "BM",
+ "The Islands of Bermuda",
+ "The Bermudas",
+ "Somers Isles"
+ ],
+ "region": "Americas",
+ "subregion": "North America",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0628\u0631\u0645\u0648\u062f\u0627",
+ "common": "\u0628\u0631\u0645\u0648\u062f\u0627"
+ },
+ "bre": {
+ "official": "Bermuda",
+ "common": "Bermuda"
+ },
+ "ces": {
+ "official": "Bermudsk\u00e9 ostrovy",
+ "common": "Bermudy"
+ },
+ "deu": {
+ "official": "Bermuda",
+ "common": "Bermuda"
+ },
+ "est": {
+ "official": "Bermuda",
+ "common": "Bermuda"
+ },
+ "fin": {
+ "official": "Bermuda",
+ "common": "Bermuda"
+ },
+ "fra": {
+ "official": "Bermudes",
+ "common": "Bermudes"
+ },
+ "hrv": {
+ "official": "Bermuda",
+ "common": "Bermudi"
+ },
+ "hun": {
+ "official": "Bermuda",
+ "common": "Bermuda"
+ },
+ "ita": {
+ "official": "Bermuda",
+ "common": "Bermuda"
+ },
+ "jpn": {
+ "official": "\u30d0\u30df\u30e5\u30fc\u30c0\u8af8\u5cf6",
+ "common": "\u30d0\u30df\u30e5\u30fc\u30c0"
+ },
+ "kor": {
+ "official": "\ubc84\ubba4\ub2e4",
+ "common": "\ubc84\ubba4\ub2e4"
+ },
+ "nld": {
+ "official": "Bermuda",
+ "common": "Bermuda"
+ },
+ "per": {
+ "official": "\u062c\u0632\u0627\u06cc\u0631 \u0628\u0631\u0645\u0648\u062f\u0627",
+ "common": "\u0628\u0631\u0645\u0648\u062f\u0627"
+ },
+ "pol": {
+ "official": "Bermudy",
+ "common": "Bermudy"
+ },
+ "por": {
+ "official": "Bermudas",
+ "common": "Bermudas"
+ },
+ "rus": {
+ "official": "\u0411\u0435\u0440\u043c\u0443\u0434\u0441\u043a\u0438\u0435 \u043e\u0441\u0442\u0440\u043e\u0432\u0430",
+ "common": "\u0411\u0435\u0440\u043c\u0443\u0434\u0441\u043a\u0438\u0435 \u041e\u0441\u0442\u0440\u043e\u0432\u0430"
+ },
+ "slk": {
+ "official": "Bermudy",
+ "common": "Bermudy"
+ },
+ "spa": {
+ "official": "Bermuda",
+ "common": "Bermudas"
+ },
+ "srp": {
+ "official": "Bermuda",
+ "common": "Bermudi"
+ },
+ "swe": {
+ "official": "Bermuda",
+ "common": "Bermuda"
+ },
+ "tur": {
+ "official": "Bermuda",
+ "common": "Bermuda"
+ },
+ "urd": {
+ "official": "\u0628\u0631\u0645\u0648\u062f\u0627",
+ "common": "\u0628\u0631\u0645\u0648\u062f\u0627"
+ },
+ "zho": {
+ "official": "\u767e\u6155\u5927",
+ "common": "\u767e\u6155\u5927"
+ }
+ },
+ "latlng": [
+ 32.33333333,
+ -64.75
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 54,
+ "flag": "\ud83c\udde7\ud83c\uddf2",
+ "demonyms": {
+ "eng": {
+ "f": "Bermudian",
+ "m": "Bermudian"
+ },
+ "fra": {
+ "f": "Bermudienne",
+ "m": "Bermudien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Bolivia",
+ "official": "Plurinational State of Bolivia",
+ "native": {
+ "aym": {
+ "official": "Wuliwya Suyu",
+ "common": "Wuliwya"
+ },
+ "grn": {
+ "official": "Tet\u00e3 Vol\u00edvia",
+ "common": "Vol\u00edvia"
+ },
+ "que": {
+ "official": "Buliwya Mamallaqta",
+ "common": "Buliwya"
+ },
+ "spa": {
+ "official": "Estado Plurinacional de Bolivia",
+ "common": "Bolivia"
+ }
+ }
+ },
+ "tld": [
+ ".bo"
+ ],
+ "cca2": "BO",
+ "ccn3": "068",
+ "cca3": "BOL",
+ "cioc": "BOL",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "BOB": {
+ "name": "Bolivian boliviano",
+ "symbol": "Bs."
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "91"
+ ]
+ },
+ "capital": [
+ "Sucre"
+ ],
+ "altSpellings": [
+ "BO",
+ "Buliwya",
+ "Wuliwya",
+ "Bolivia, Plurinational State of",
+ "Plurinational State of Bolivia",
+ "Estado Plurinacional de Bolivia",
+ "Buliwya Mamallaqta",
+ "Wuliwya Suyu",
+ "Tet\u00e3 Vol\u00edvia"
+ ],
+ "region": "Americas",
+ "subregion": "South America",
+ "languages": {
+ "aym": "Aymara",
+ "grn": "Guaran\u00ed",
+ "que": "Quechua",
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062f\u0648\u0644\u0629 \u0628\u0648\u0644\u064a\u0641\u064a\u0627 \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629 \u0627\u0644\u0642\u0648\u0645\u064a\u0627\u062a",
+ "common": "\u0628\u0648\u0644\u064a\u0641\u064a\u0627"
+ },
+ "bre": {
+ "official": "Stad Liesvroadel Bolivia",
+ "common": "Bolivia"
+ },
+ "ces": {
+ "official": "Mnohon\u00e1rodnostn\u00ed st\u00e1t Bol\u00edvie",
+ "common": "Bol\u00edvie"
+ },
+ "deu": {
+ "official": "Plurinationaler Staat Bolivien",
+ "common": "Bolivien"
+ },
+ "est": {
+ "official": "Boliivia Paljurahvuseline Riik",
+ "common": "Boliivia"
+ },
+ "fin": {
+ "official": "Bolivian monikansainen valtio",
+ "common": "Bolivia"
+ },
+ "fra": {
+ "official": "\u00c9tat plurinational de Bolivie",
+ "common": "Bolivie"
+ },
+ "hrv": {
+ "official": "Plurinational State of Bolivia",
+ "common": "Bolivija"
+ },
+ "hun": {
+ "official": "Bol\u00edviai T\u00f6bbnemzetis\u00e9g\u0171 \u00c1llam",
+ "common": "Bol\u00edvia"
+ },
+ "ita": {
+ "official": "Stato Plurinazionale della Bolivia",
+ "common": "Bolivia"
+ },
+ "jpn": {
+ "official": "\u30dc\u30ea\u30d3\u30a2\u591a\u6c11\u65cf\u56fd",
+ "common": "\u30dc\u30ea\u30d3\u30a2"
+ },
+ "kor": {
+ "official": "\ubcfc\ub9ac\ube44\uc544 \ub2e4\ubbfc\uc871\uad6d",
+ "common": "\ubcfc\ub9ac\ube44\uc544"
+ },
+ "nld": {
+ "official": "Plurinationale Staat van Bolivia",
+ "common": "Bolivia"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0628\u0648\u0644\u06cc\u0648\u06cc",
+ "common": "\u0628\u0648\u0644\u06cc\u0648\u06cc"
+ },
+ "pol": {
+ "official": "Wielonarodowe Pa\u0144stwo Boliwia",
+ "common": "Boliwia"
+ },
+ "por": {
+ "official": "Estado Plurinacional da Bol\u00edvia",
+ "common": "Bol\u00edvia"
+ },
+ "rus": {
+ "official": "\u041c\u043d\u043e\u0433\u043e\u043d\u0430\u0446\u0438\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0435 \u0413\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u043e \u0411\u043e\u043b\u0438\u0432\u0438\u044f",
+ "common": "\u0411\u043e\u043b\u0438\u0432\u0438\u044f"
+ },
+ "slk": {
+ "official": "Bol\u00edvijsk\u00e1 republika",
+ "common": "Bol\u00edvia"
+ },
+ "spa": {
+ "official": "Estado Plurinacional de Bolivia",
+ "common": "Bolivia"
+ },
+ "srp": {
+ "official": "Vi\u0161enacionalna Dr\u017eava Bolivija",
+ "common": "Bolivija"
+ },
+ "swe": {
+ "official": "M\u00e5ngnationella staten Bolivia",
+ "common": "Bolivia"
+ },
+ "tur": {
+ "official": "Bolivya \u00e7okuluslu Devleti",
+ "common": "Bolivya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0628\u0648\u0644\u06cc\u0648\u06cc\u0627",
+ "common": "\u0628\u0648\u0644\u06cc\u0648\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u591a\u6c11\u65cf\u73bb\u5229\u7ef4\u4e9a\u56fd",
+ "common": "\u73bb\u5229\u7ef4\u4e9a"
+ }
+ },
+ "latlng": [
+ -17,
+ -65
+ ],
+ "landlocked": true,
+ "borders": [
+ "ARG",
+ "BRA",
+ "CHL",
+ "PRY",
+ "PER"
+ ],
+ "area": 1098581,
+ "flag": "\ud83c\udde7\ud83c\uddf4",
+ "demonyms": {
+ "eng": {
+ "f": "Bolivian",
+ "m": "Bolivian"
+ },
+ "fra": {
+ "f": "Bolivienne",
+ "m": "Bolivien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Caribbean Netherlands",
+ "official": "Bonaire, Sint Eustatius and Saba",
+ "native": {
+ "nld": {
+ "official": "Bonaire, Sint Eustatius en Saba",
+ "common": "Caribisch Nederland"
+ },
+ "pap": {
+ "official": "Boneiru, Sint Eustatius y Saba",
+ "common": "Boneiru, Sint Eustatius y Saba"
+ }
+ }
+ },
+ "tld": [
+ ".bq",
+ ".nl"
+ ],
+ "cca2": "BQ",
+ "ccn3": "535",
+ "cca3": "BES",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "99"
+ ]
+ },
+ "capital": [
+ "Kralendijk",
+ "Oranjestad",
+ "The Bottom"
+ ],
+ "altSpellings": [
+ "BES islands",
+ "Bonaire Sint Eustatius and Saba"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English",
+ "nld": "Dutch",
+ "pap": "Papiamento"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0628\u0648\u0646\u064a\u0631 \u0648\u0633\u064a\u0646\u062a \u0623\u0648\u0633\u062a\u0627\u062a\u064a\u0648\u0633 \u0648\u0633\u0627\u0628\u0627",
+ "common": "\u0627\u0644\u062c\u0632\u0631 \u0627\u0644\u0643\u0627\u0631\u064a\u0628\u064a\u0629 \u0627\u0644\u0647\u0648\u0644\u0646\u062f\u064a\u0629"
+ },
+ "bre": {
+ "official": "Bonaire, Sint Eustatius ha Saba",
+ "common": "Bonaire, Sint Eustatius ha Saba"
+ },
+ "ces": {
+ "official": "Karibsk\u00e9 Nizozemsko",
+ "common": "Karibsk\u00e9 Nizozemsko"
+ },
+ "deu": {
+ "official": "Bonaire, Sint Eustatius und Saba",
+ "common": "Karibische Niederlande"
+ },
+ "est": {
+ "official": "Bonaire, Sint Eustatius ja Saba",
+ "common": "Bonaire, Sint Eustatius ja Saba"
+ },
+ "fin": {
+ "official": "Bonaire, Sint Eustatius ja Saba",
+ "common": "Bonaire, Sint Eustatius ja Saba"
+ },
+ "fra": {
+ "official": "Bonaire, Saint-Eustache et Saba",
+ "common": "Pays-Bas carib\u00e9ens"
+ },
+ "hrv": {
+ "official": "Bonaire, Sint Eustatius i Saba",
+ "common": "Bonaire, Sint Eustatius i Saba"
+ },
+ "hun": {
+ "official": "Bonaire",
+ "common": "Bonaire"
+ },
+ "ita": {
+ "official": "Bonaire, Sint Eustatius e Saba",
+ "common": "Paesi Bassi caraibici"
+ },
+ "jpn": {
+ "official": "\u30aa\u30e9\u30f3\u30c0\u30ab\u30ea\u30d6\u9818\u57df",
+ "common": "BES\u8af8\u5cf6"
+ },
+ "kor": {
+ "official": "\ubcf4\ub124\ub974, \uc2e0\ud2b8\uc678\uc2a4\ud0c0\ud2f0\uc704\uc2a4, \uc0ac\ubc14",
+ "common": "\uce74\ub9ac\ube0c \ub124\ub35c\ub780\ub4dc"
+ },
+ "nld": {
+ "official": "Bonaire, Sint Eustatius en Saba",
+ "common": "Caribisch Nederland"
+ },
+ "per": {
+ "official": "\u062c\u0632\u0627\u06cc\u0631 \u06a9\u0627\u0631\u0627\u0626\u06cc\u0628 \u0647\u0644\u0646\u062f",
+ "common": "\u062c\u0632\u0627\u06cc\u0631 \u06a9\u0627\u0631\u0627\u0626\u06cc\u0628 \u0647\u0644\u0646\u062f"
+ },
+ "pol": {
+ "official": "Bonaire, Sint Eustatius i Saba",
+ "common": "Antyle Holenderskie"
+ },
+ "por": {
+ "official": "Bonaire, Saba e Santo Eust\u00e1quio",
+ "common": "Pa\u00edses Baixos Caribenhos"
+ },
+ "rus": {
+ "official": "\u0411\u043e\u043d\u044d\u0439\u0440, \u0421\u0438\u043d\u0442-\u042d\u0441\u0442\u0430\u0442\u0438\u0443\u0441 \u0438 \u0421\u0430\u0431\u0430",
+ "common": "\u041a\u0430\u0440\u0438\u0431\u0441\u043a\u0438\u0435 \u041d\u0438\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u044b"
+ },
+ "slk": {
+ "official": "Bonaire, Sint Eustatius a Saba",
+ "common": "Bonaire, Sint Eustatius a Saba"
+ },
+ "spa": {
+ "official": "Bonaire, San Eustaquio y Saba",
+ "common": "Caribe Neerland\u00e9s"
+ },
+ "srp": {
+ "official": "Karipska Holandija",
+ "common": "Karipska Holandija"
+ },
+ "swe": {
+ "official": "Bonaire, Sint Eustatius and Saba",
+ "common": "Karibiska Nederl\u00e4nderna"
+ },
+ "tur": {
+ "official": "Karayip Hollandas\u0131",
+ "common": "Karayip Hollandas\u0131"
+ },
+ "urd": {
+ "official": "\u0628\u0648\u0646\u0627\u06cc\u0631\u060c \u0633\u06cc\u0646\u0679 \u0627\u06cc\u0648\u0633\u0679\u0627\u0626\u06cc\u0633 \u0627\u0648\u0631 \u0633\u0627\u0628\u0627",
+ "common": "\u06a9\u06cc\u0631\u06cc\u0628\u06cc\u0646 \u0646\u06cc\u062f\u0631\u0644\u06cc\u0646\u0688\u0632"
+ },
+ "zho": {
+ "official": "\u8377\u862d\u52a0\u52d2\u6bd4\u5340",
+ "common": "\u8377\u862d\u52a0\u52d2\u6bd4\u5340"
+ }
+ },
+ "latlng": [
+ 12.18,
+ -68.25
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 328,
+ "flag": "",
+ "demonyms": {
+ "eng": {
+ "f": "Dutch",
+ "m": "Dutch"
+ },
+ "fra": {
+ "f": "N\u00e9erlandaise",
+ "m": "N\u00e9erlandais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Brazil",
+ "official": "Federative Republic of Brazil",
+ "native": {
+ "por": {
+ "official": "Rep\u00fablica Federativa do Brasil",
+ "common": "Brasil"
+ }
+ }
+ },
+ "tld": [
+ ".br"
+ ],
+ "cca2": "BR",
+ "ccn3": "076",
+ "cca3": "BRA",
+ "cioc": "BRA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "BRL": {
+ "name": "Brazilian real",
+ "symbol": "R$"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "5"
+ ]
+ },
+ "capital": [
+ "Bras\u00edlia"
+ ],
+ "altSpellings": [
+ "BR",
+ "Brasil",
+ "Federative Republic of Brazil",
+ "Rep\u00fablica Federativa do Brasil"
+ ],
+ "region": "Americas",
+ "subregion": "South America",
+ "languages": {
+ "por": "Portuguese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644 \u0627\u0644\u0627\u062a\u062d\u0627\u062f\u064a\u0629",
+ "common": "\u0627\u0644\u0628\u0631\u0627\u0632\u064a\u0644"
+ },
+ "bre": {
+ "official": "Republik Kevreel Brazil",
+ "common": "Brazil"
+ },
+ "ces": {
+ "official": "Brazilsk\u00e1 federativn\u00ed republika",
+ "common": "Braz\u00edlie"
+ },
+ "deu": {
+ "official": "F\u00f6derative Republik Brasilien",
+ "common": "Brasilien"
+ },
+ "est": {
+ "official": "Brasiilia Liitvabariik",
+ "common": "Brasiilia"
+ },
+ "fin": {
+ "official": "Brasilian liittotasavalta",
+ "common": "Brasilia"
+ },
+ "fra": {
+ "official": "R\u00e9publique f\u00e9d\u00e9rative du Br\u00e9sil",
+ "common": "Br\u00e9sil"
+ },
+ "hrv": {
+ "official": "Savezne Republike Brazil",
+ "common": "Brazil"
+ },
+ "hun": {
+ "official": "Brazil Sz\u00f6vets\u00e9gi K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Braz\u00edlia"
+ },
+ "ita": {
+ "official": "Repubblica federativa del Brasile",
+ "common": "Brasile"
+ },
+ "jpn": {
+ "official": "\u30d6\u30e9\u30b8\u30eb\u9023\u90a6\u5171\u548c\u56fd",
+ "common": "\u30d6\u30e9\u30b8\u30eb"
+ },
+ "kor": {
+ "official": "\ube0c\ub77c\uc9c8 \uc5f0\ubc29 \uacf5\ud654\uad6d",
+ "common": "\ube0c\ub77c\uc9c8"
+ },
+ "nld": {
+ "official": "Federale Republiek Brazili\u00eb",
+ "common": "Brazili\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0641\u062f\u0631\u0627\u062a\u06cc\u0648 \u0628\u0631\u0632\u06cc\u0644",
+ "common": "\u0628\u0631\u0632\u06cc\u0644"
+ },
+ "pol": {
+ "official": "Federacyjna Republika Brazylii",
+ "common": "Brazylia"
+ },
+ "por": {
+ "official": "Rep\u00fablica Federativa do Brasil",
+ "common": "Brasil"
+ },
+ "rus": {
+ "official": "\u0424\u0435\u0434\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0411\u0440\u0430\u0437\u0438\u043b\u0438\u044f",
+ "common": "\u0411\u0440\u0430\u0437\u0438\u043b\u0438\u044f"
+ },
+ "slk": {
+ "official": "Braz\u00edlska federat\u00edvna republika",
+ "common": "Braz\u00edlia"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Federativa del Brasil",
+ "common": "Brasil"
+ },
+ "srp": {
+ "official": "Federativna Republika Brazil",
+ "common": "Brazil"
+ },
+ "swe": {
+ "official": "F\u00f6rbundsrepubliken Brasilien",
+ "common": "Brasilien"
+ },
+ "tur": {
+ "official": "Brezilya Federal Cumhuriyeti",
+ "common": "Brezilya"
+ },
+ "urd": {
+ "official": "\u0648\u0641\u0627\u0642\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0628\u0631\u0627\u0632\u06cc\u0644",
+ "common": "\u0628\u0631\u0627\u0632\u06cc\u0644"
+ },
+ "zho": {
+ "official": "\u5df4\u897f\u8054\u90a6\u5171\u548c\u56fd",
+ "common": "\u5df4\u897f"
+ }
+ },
+ "latlng": [
+ -10,
+ -55
+ ],
+ "landlocked": false,
+ "borders": [
+ "ARG",
+ "BOL",
+ "COL",
+ "GUF",
+ "GUY",
+ "PRY",
+ "PER",
+ "SUR",
+ "URY",
+ "VEN"
+ ],
+ "area": 8515767,
+ "flag": "\ud83c\udde7\ud83c\uddf7",
+ "demonyms": {
+ "eng": {
+ "f": "Brazilian",
+ "m": "Brazilian"
+ },
+ "fra": {
+ "f": "Br\u00e9silienne",
+ "m": "Br\u00e9silien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Barbados",
+ "official": "Barbados",
+ "native": {
+ "eng": {
+ "official": "Barbados",
+ "common": "Barbados"
+ }
+ }
+ },
+ "tld": [
+ ".bb"
+ ],
+ "cca2": "BB",
+ "ccn3": "052",
+ "cca3": "BRB",
+ "cioc": "BAR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "BBD": {
+ "name": "Barbadian dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "246"
+ ]
+ },
+ "capital": [
+ "Bridgetown"
+ ],
+ "altSpellings": [
+ "BB"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0628\u0627\u0631\u0628\u0627\u062f\u0648\u0633",
+ "common": "\u0628\u0627\u0631\u0628\u0627\u062f\u0648\u0633"
+ },
+ "bre": {
+ "official": "Barbados",
+ "common": "Barbados"
+ },
+ "ces": {
+ "official": "Barbados",
+ "common": "Barbados"
+ },
+ "deu": {
+ "official": "Barbados",
+ "common": "Barbados"
+ },
+ "est": {
+ "official": "Barbados",
+ "common": "Barbados"
+ },
+ "fin": {
+ "official": "Barbados",
+ "common": "Barbados"
+ },
+ "fra": {
+ "official": "Barbade",
+ "common": "Barbade"
+ },
+ "hrv": {
+ "official": "Barbados",
+ "common": "Barbados"
+ },
+ "hun": {
+ "official": "Barbados",
+ "common": "Barbados"
+ },
+ "ita": {
+ "official": "Barbados",
+ "common": "Barbados"
+ },
+ "jpn": {
+ "official": "\u30d0\u30eb\u30d0\u30c9\u30b9",
+ "common": "\u30d0\u30eb\u30d0\u30c9\u30b9"
+ },
+ "kor": {
+ "official": "\ubc14\ubca0\uc774\ub3c4\uc2a4",
+ "common": "\ubc14\ubca0\uc774\ub3c4\uc2a4"
+ },
+ "nld": {
+ "official": "Barbados",
+ "common": "Barbados"
+ },
+ "per": {
+ "official": "\u0628\u0627\u0631\u0628\u0627\u062f\u0648\u0633",
+ "common": "\u0628\u0627\u0631\u0628\u0627\u062f\u0648\u0633"
+ },
+ "pol": {
+ "official": "Barbados",
+ "common": "Barbados"
+ },
+ "por": {
+ "official": "Barbados",
+ "common": "Barbados"
+ },
+ "rus": {
+ "official": "\u0411\u0430\u0440\u0431\u0430\u0434\u043e\u0441",
+ "common": "\u0411\u0430\u0440\u0431\u0430\u0434\u043e\u0441"
+ },
+ "slk": {
+ "official": "Barbados",
+ "common": "Barbados"
+ },
+ "spa": {
+ "official": "Barbados",
+ "common": "Barbados"
+ },
+ "srp": {
+ "official": "Barbados",
+ "common": "Barbados"
+ },
+ "swe": {
+ "official": "Barbados",
+ "common": "Barbados"
+ },
+ "tur": {
+ "official": "Barbados",
+ "common": "Barbados"
+ },
+ "urd": {
+ "official": "\u0628\u0627\u0631\u0628\u0627\u0688\u0648\u0633",
+ "common": "\u0628\u0627\u0631\u0628\u0627\u0688\u0648\u0633"
+ },
+ "zho": {
+ "official": "\u5df4\u5df4\u591a\u65af",
+ "common": "\u5df4\u5df4\u591a\u65af"
+ }
+ },
+ "latlng": [
+ 13.16666666,
+ -59.53333333
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 430,
+ "flag": "\ud83c\udde7\ud83c\udde7",
+ "demonyms": {
+ "eng": {
+ "f": "Barbadian",
+ "m": "Barbadian"
+ },
+ "fra": {
+ "f": "Barbadienne",
+ "m": "Barbadien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Brunei",
+ "official": "Nation of Brunei, Abode of Peace",
+ "native": {
+ "msa": {
+ "official": "Nation of Brunei, Abode Damai",
+ "common": "Negara Brunei Darussalam"
+ }
+ }
+ },
+ "tld": [
+ ".bn"
+ ],
+ "cca2": "BN",
+ "ccn3": "096",
+ "cca3": "BRN",
+ "cioc": "BRU",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "BND": {
+ "name": "Brunei dollar",
+ "symbol": "$"
+ },
+ "SGD": {
+ "name": "Singapore dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "73"
+ ]
+ },
+ "capital": [
+ "Bandar Seri Begawan"
+ ],
+ "altSpellings": [
+ "BN",
+ "Brunei Darussalam",
+ "Nation of Brunei",
+ "the Abode of Peace"
+ ],
+ "region": "Asia",
+ "subregion": "South-Eastern Asia",
+ "languages": {
+ "msa": "Malay"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0628\u0631\u0648\u0646\u0627\u064a \u062f\u0627\u0631 \u0627\u0644\u0633\u0644\u0627\u0645",
+ "common": "\u0628\u0631\u0648\u0646\u0627\u064a"
+ },
+ "bre": {
+ "official": "Stad Brunei Darussalam",
+ "common": "Brunei"
+ },
+ "ces": {
+ "official": "Sultan\u00e1t Brunej",
+ "common": "Brunej"
+ },
+ "deu": {
+ "official": "Sultanat Brunei Darussalam",
+ "common": "Brunei"
+ },
+ "est": {
+ "official": "Brunei Darussalami Riik",
+ "common": "Brunei"
+ },
+ "fin": {
+ "official": "Brunei Darussalamin valtio",
+ "common": "Brunei"
+ },
+ "fra": {
+ "official": "\u00c9tat de Brunei Darussalam",
+ "common": "Brunei"
+ },
+ "hrv": {
+ "official": "Nacija od Bruneja, Ku\u0107u Mira",
+ "common": "Brunej"
+ },
+ "hun": {
+ "official": "Brunei Szultan\u00e1tus",
+ "common": "Brunei"
+ },
+ "ita": {
+ "official": "Nazione di Brunei, Dimora della Pace",
+ "common": "Brunei"
+ },
+ "jpn": {
+ "official": "\u30d6\u30eb\u30cd\u30a4\u30fb\u30c0\u30eb\u30b5\u30e9\u30fc\u30e0\u56fd",
+ "common": "\u30d6\u30eb\u30cd\u30a4"
+ },
+ "kor": {
+ "official": "\ube0c\ub8e8\ub098\uc774 \ub2e4\ub8e8\uc0b4\ub78c\uad6d",
+ "common": "\ube0c\ub8e8\ub098\uc774"
+ },
+ "nld": {
+ "official": "Natie van Brunei, de verblijfplaats van de Vrede",
+ "common": "Brunei"
+ },
+ "per": {
+ "official": "\u0628\u0631\u0648\u0646\u0626\u06cc \u0633\u0631\u0627\u06cc \u0635\u0644\u062d",
+ "common": "\u0628\u0631\u0648\u0646\u0626\u06cc"
+ },
+ "pol": {
+ "official": "Pa\u0144stwo Brunei Darussalam",
+ "common": "Brunei"
+ },
+ "por": {
+ "official": "Na\u00e7\u00e3o do Brunei, Morada da Paz",
+ "common": "Brunei"
+ },
+ "rus": {
+ "official": "\u041d\u0430\u0446\u0438\u044f \u0411\u0440\u0443\u043d\u0435\u0439, \u043e\u0431\u0438\u0442\u0435\u043b\u044c \u043c\u0438\u0440\u0430",
+ "common": "\u0411\u0440\u0443\u043d\u0435\u0439"
+ },
+ "slk": {
+ "official": "Brunejsk\u00fd sultan\u00e2t",
+ "common": "Brunej"
+ },
+ "spa": {
+ "official": "Naci\u00f3n de Brunei, Morada de la Paz",
+ "common": "Brunei"
+ },
+ "srp": {
+ "official": "Brunej Darusalam",
+ "common": "Brunej"
+ },
+ "swe": {
+ "official": "Brunei Darussalam",
+ "common": "Brunei"
+ },
+ "tur": {
+ "official": "Brunei Bar\u0131\u015f \u00fclkesi Devleti (Dar\u00fc's-Selam)",
+ "common": "Brunei"
+ },
+ "urd": {
+ "official": "\u0631\u06cc\u0627\u0633\u062a\u0650 \u0628\u0631\u0648\u0646\u0627\u0626\u06cc \u062f\u0627\u0631\u0627\u0644\u0633\u0644\u0627\u0645",
+ "common": "\u0628\u0631\u0648\u0646\u0627\u0626\u06cc"
+ },
+ "zho": {
+ "official": "\u6587\u83b1\u548c\u5e73\u4e4b\u56fd",
+ "common": "\u6587\u83b1"
+ }
+ },
+ "latlng": [
+ 4.5,
+ 114.66666666
+ ],
+ "landlocked": false,
+ "borders": [
+ "MYS"
+ ],
+ "area": 5765,
+ "flag": "\ud83c\udde7\ud83c\uddf3",
+ "demonyms": {
+ "eng": {
+ "f": "Bruneian",
+ "m": "Bruneian"
+ },
+ "fra": {
+ "f": "Brun\u00e9ienne",
+ "m": "Brun\u00e9ien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Bhutan",
+ "official": "Kingdom of Bhutan",
+ "native": {
+ "dzo": {
+ "official": "\u0f60\u0f56\u0fb2\u0f74\u0f42\u0f0b\u0f62\u0f92\u0fb1\u0f63\u0f0b\u0f41\u0f56\u0f0b",
+ "common": "\u0f60\u0f56\u0fb2\u0f74\u0f42\u0f0b\u0f61\u0f74\u0f63\u0f0b"
+ }
+ }
+ },
+ "tld": [
+ ".bt"
+ ],
+ "cca2": "BT",
+ "ccn3": "064",
+ "cca3": "BTN",
+ "cioc": "BHU",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "BTN": {
+ "name": "Bhutanese ngultrum",
+ "symbol": "Nu."
+ },
+ "INR": {
+ "name": "Indian rupee",
+ "symbol": "\u20b9"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "75"
+ ]
+ },
+ "capital": [
+ "Thimphu"
+ ],
+ "altSpellings": [
+ "BT",
+ "Kingdom of Bhutan"
+ ],
+ "region": "Asia",
+ "subregion": "Southern Asia",
+ "languages": {
+ "dzo": "Dzongkha"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0645\u0644\u0643\u0629 \u0628\u0648\u062a\u0627\u0646",
+ "common": "\u0628\u0648\u062a\u0627\u0646"
+ },
+ "bre": {
+ "official": "Rouantelezh Bhoutan",
+ "common": "Bhoutan"
+ },
+ "ces": {
+ "official": "Bh\u00fat\u00e1nsk\u00e9 kr\u00e1lovstv\u00ed",
+ "common": "Bh\u00fat\u00e1n"
+ },
+ "deu": {
+ "official": "K\u00f6nigreich Bhutan",
+ "common": "Bhutan"
+ },
+ "est": {
+ "official": "Bhutani Kuningriik",
+ "common": "Bhutan"
+ },
+ "fin": {
+ "official": "Bhutanin kuningaskunta",
+ "common": "Bhutan"
+ },
+ "fra": {
+ "official": "Royaume du Bhoutan",
+ "common": "Bhoutan"
+ },
+ "hrv": {
+ "official": "Kraljevina Butan",
+ "common": "Butan"
+ },
+ "hun": {
+ "official": "Bhut\u00e1ni Kir\u00e1lys\u00e1g",
+ "common": "Bhut\u00e1n"
+ },
+ "ita": {
+ "official": "Regno del Bhutan",
+ "common": "Bhutan"
+ },
+ "jpn": {
+ "official": "\u30d6\u30fc\u30bf\u30f3\u738b\u56fd",
+ "common": "\u30d6\u30fc\u30bf\u30f3"
+ },
+ "kor": {
+ "official": "\ubd80\ud0c4 \uc655\uad6d",
+ "common": "\ubd80\ud0c4"
+ },
+ "nld": {
+ "official": "Koninkrijk Bhutan",
+ "common": "Bhutan"
+ },
+ "per": {
+ "official": "\u067e\u0627\u062f\u0634\u0627\u0647\u06cc \u0628\u0648\u062a\u0627\u0646",
+ "common": "\u0628\u0648\u062a\u0627\u0646"
+ },
+ "pol": {
+ "official": "Bhutan",
+ "common": "Bhutan"
+ },
+ "por": {
+ "official": "Reino do But\u00e3o",
+ "common": "But\u00e3o"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u0440\u043e\u043b\u0435\u0432\u0441\u0442\u0432\u043e \u0411\u0443\u0442\u0430\u043d",
+ "common": "\u0411\u0443\u0442\u0430\u043d"
+ },
+ "slk": {
+ "official": "Bhut\u00e1nske kr\u00e2\u013eovstvo",
+ "common": "Bhut\u00e1n"
+ },
+ "spa": {
+ "official": "Reino de But\u00e1n",
+ "common": "But\u00e1n"
+ },
+ "srp": {
+ "official": "Kraljevina Butan",
+ "common": "Butan"
+ },
+ "swe": {
+ "official": "Konungariket Bhutan",
+ "common": "Bhutan"
+ },
+ "tur": {
+ "official": "Butan Krall\u0131\u011f\u0131",
+ "common": "Butan"
+ },
+ "urd": {
+ "official": "\u0633\u0644\u0637\u0646\u062a \u0628\u06be\u0648\u0679\u0627\u0646",
+ "common": "\u0628\u06be\u0648\u0679\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u4e0d\u4e39\u738b\u56fd",
+ "common": "\u4e0d\u4e39"
+ }
+ },
+ "latlng": [
+ 27.5,
+ 90.5
+ ],
+ "landlocked": true,
+ "borders": [
+ "CHN",
+ "IND"
+ ],
+ "area": 38394,
+ "flag": "\ud83c\udde7\ud83c\uddf9",
+ "demonyms": {
+ "eng": {
+ "f": "Bhutanese",
+ "m": "Bhutanese"
+ },
+ "fra": {
+ "f": "Bhoutanaise",
+ "m": "Bhoutanais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Bouvet Island",
+ "official": "Bouvet Island",
+ "native": {
+ "nor": {
+ "official": "Bouvet\u00f8ya",
+ "common": "Bouvet\u00f8ya"
+ }
+ }
+ },
+ "tld": [
+ ".bv"
+ ],
+ "cca2": "BV",
+ "ccn3": "074",
+ "cca3": "BVT",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {},
+ "idd": {
+ "root": "+4",
+ "suffixes": [
+ "7"
+ ]
+ },
+ "capital": [],
+ "altSpellings": [
+ "BV",
+ "Bouvet\u00f8ya",
+ "Bouvet-\u00f8ya"
+ ],
+ "region": "Antarctic",
+ "subregion": "",
+ "languages": {
+ "nor": "Norwegian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0632\u0631 \u0628\u0648\u0641\u064a\u0647",
+ "common": "\u062c\u0632\u0631 \u0628\u0648\u0641\u064a\u0647"
+ },
+ "bre": {
+ "official": "Enez Bouvet",
+ "common": "Enez Bouvet"
+ },
+ "ces": {
+ "official": "Bouvet\u016fv ostrov",
+ "common": "Bouvet\u016fv ostrov"
+ },
+ "deu": {
+ "official": "Bouvetinsel",
+ "common": "Bouvetinsel"
+ },
+ "est": {
+ "official": "Bouvet\u2019 saar",
+ "common": "Bouvet\u2019 saar"
+ },
+ "fin": {
+ "official": "Bouvet'nsaari",
+ "common": "Bouvet'nsaari"
+ },
+ "fra": {
+ "official": "\u00cele Bouvet",
+ "common": "\u00cele Bouvet"
+ },
+ "hrv": {
+ "official": "Bouvet Island",
+ "common": "Otok Bouvet"
+ },
+ "hun": {
+ "official": "Bouvet-sziget",
+ "common": "Bouvet-sziget"
+ },
+ "ita": {
+ "official": "Isola Bouvet",
+ "common": "Isola Bouvet"
+ },
+ "jpn": {
+ "official": "\u30d6\u30fc\u30d9\u5cf6",
+ "common": "\u30d6\u30fc\u30d9\u5cf6"
+ },
+ "kor": {
+ "official": "\ubd80\ubca0 \uc12c",
+ "common": "\ubd80\ubca0 \uc12c"
+ },
+ "nld": {
+ "official": "Bouvet Island",
+ "common": "Bouveteiland"
+ },
+ "per": {
+ "official": "\u062c\u0632\u06cc\u0631\u0647\u0654 \u0628\u0648\u0648\u0647",
+ "common": "\u062c\u0632\u06cc\u0631\u0647\u0654 \u0628\u0648\u0648\u0647"
+ },
+ "pol": {
+ "official": "Wyspa Bouveta",
+ "common": "Wyspa Bouveta"
+ },
+ "por": {
+ "official": "Ilha Bouvet",
+ "common": "Ilha Bouvet"
+ },
+ "rus": {
+ "official": "\u041e\u0441\u0442\u0440\u043e\u0432 \u0411\u0443\u0432\u0435",
+ "common": "\u041e\u0441\u0442\u0440\u043e\u0432 \u0411\u0443\u0432\u0435"
+ },
+ "slk": {
+ "official": "Bouvetov ostrov",
+ "common": "Bouvetov ostrov"
+ },
+ "spa": {
+ "official": "Isla Bouvet",
+ "common": "Isla Bouvet"
+ },
+ "srp": {
+ "official": "Ostrvo Buve",
+ "common": "Buve"
+ },
+ "swe": {
+ "official": "Bouvet\u00f6n",
+ "common": "Bouvet\u00f6n"
+ },
+ "tur": {
+ "official": "Bouvet Adas\u0131",
+ "common": "Bouvet Adas\u0131"
+ },
+ "urd": {
+ "official": "\u062c\u0632\u06cc\u0631\u06c1 \u0628\u0648\u0648\u06c1",
+ "common": "\u062c\u0632\u06cc\u0631\u06c1 \u0628\u0648\u0648\u06c1"
+ },
+ "zho": {
+ "official": "\u5e03\u7ef4\u5c9b",
+ "common": "\u5e03\u7ef4\u5c9b"
+ }
+ },
+ "latlng": [
+ -54.43333333,
+ 3.4
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 49,
+ "flag": "\ud83c\udde7\ud83c\uddfb",
+ "demonyms": {
+ "eng": {
+ "f": "",
+ "m": ""
+ },
+ "fra": {
+ "f": "",
+ "m": ""
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Botswana",
+ "official": "Republic of Botswana",
+ "native": {
+ "eng": {
+ "official": "Republic of Botswana",
+ "common": "Botswana"
+ },
+ "tsn": {
+ "official": "Lefatshe la Botswana",
+ "common": "Botswana"
+ }
+ }
+ },
+ "tld": [
+ ".bw"
+ ],
+ "cca2": "BW",
+ "ccn3": "072",
+ "cca3": "BWA",
+ "cioc": "BOT",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "BWP": {
+ "name": "Botswana pula",
+ "symbol": "P"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "67"
+ ]
+ },
+ "capital": [
+ "Gaborone"
+ ],
+ "altSpellings": [
+ "BW",
+ "Republic of Botswana",
+ "Lefatshe la Botswana"
+ ],
+ "region": "Africa",
+ "subregion": "Southern Africa",
+ "languages": {
+ "eng": "English",
+ "tsn": "Tswana"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0628\u0648\u062a\u0633\u0648\u0627\u0646\u0627",
+ "common": "\u0628\u0648\u062a\u0633\u0648\u0627\u0646\u0627"
+ },
+ "bre": {
+ "official": "Republik Botswana",
+ "common": "Botswana"
+ },
+ "ces": {
+ "official": "Botswansk\u00e1 republika",
+ "common": "Botswana"
+ },
+ "deu": {
+ "official": "Republik Botsuana",
+ "common": "Botswana"
+ },
+ "est": {
+ "official": "Botswana Vabariik",
+ "common": "Botswana"
+ },
+ "fin": {
+ "official": "Botswanan tasavalta",
+ "common": "Botswana"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Botswana",
+ "common": "Botswana"
+ },
+ "hrv": {
+ "official": "Republika Bocvana",
+ "common": "Bocvana"
+ },
+ "hun": {
+ "official": "Botswanai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Botswana"
+ },
+ "ita": {
+ "official": "Repubblica del Botswana",
+ "common": "Botswana"
+ },
+ "jpn": {
+ "official": "\u30dc\u30c4\u30ef\u30ca\u5171\u548c\u56fd",
+ "common": "\u30dc\u30c4\u30ef\u30ca"
+ },
+ "kor": {
+ "official": "\ubcf4\uce20\uc640\ub098 \uacf5\ud654\uad6d",
+ "common": "\ubcf4\uce20\uc640\ub098"
+ },
+ "nld": {
+ "official": "Republiek Botswana",
+ "common": "Botswana"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0628\u0648\u062a\u0633\u0648\u0627\u0646\u0627",
+ "common": "\u0628\u0648\u062a\u0633\u0648\u0627\u0646\u0627"
+ },
+ "pol": {
+ "official": "Republika Botswany",
+ "common": "Botswana"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Botswana",
+ "common": "Botswana"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0411\u043e\u0442\u0441\u0432\u0430\u043d\u0430",
+ "common": "\u0411\u043e\u0442\u0441\u0432\u0430\u043d\u0430"
+ },
+ "slk": {
+ "official": "Botswansk\u00e1 republika",
+ "common": "Botswana"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Botswana",
+ "common": "Botswana"
+ },
+ "srp": {
+ "official": "Republika Bocvana",
+ "common": "Bocvana"
+ },
+ "swe": {
+ "official": "Republiken Botswana",
+ "common": "Botswana"
+ },
+ "tur": {
+ "official": "Botsvana Cumhuriyeti",
+ "common": "Botsvana"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0628\u0648\u0679\u0633\u0648\u0627\u0646\u0627",
+ "common": "\u0628\u0648\u0679\u0633\u0648\u0627\u0646\u0627"
+ },
+ "zho": {
+ "official": "\u535a\u8328\u74e6\u7eb3\u5171\u548c\u56fd",
+ "common": "\u535a\u8328\u74e6\u7eb3"
+ }
+ },
+ "latlng": [
+ -22,
+ 24
+ ],
+ "landlocked": true,
+ "borders": [
+ "NAM",
+ "ZAF",
+ "ZMB",
+ "ZWE"
+ ],
+ "area": 582000,
+ "flag": "\ud83c\udde7\ud83c\uddfc",
+ "demonyms": {
+ "eng": {
+ "f": "Motswana",
+ "m": "Motswana"
+ },
+ "fra": {
+ "f": "Botswanaise",
+ "m": "Botswanais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Central African Republic",
+ "official": "Central African Republic",
+ "native": {
+ "fra": {
+ "official": "R\u00e9publique centrafricaine",
+ "common": "R\u00e9publique centrafricaine"
+ },
+ "sag": {
+ "official": "K\u00f6d\u00f6r\u00f6s\u00ease t\u00ee B\u00eaafr\u00eeka",
+ "common": "B\u00eaafr\u00eeka"
+ }
+ }
+ },
+ "tld": [
+ ".cf"
+ ],
+ "cca2": "CF",
+ "ccn3": "140",
+ "cca3": "CAF",
+ "cioc": "CAF",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "XAF": {
+ "name": "Central African CFA franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "36"
+ ]
+ },
+ "capital": [
+ "Bangui"
+ ],
+ "altSpellings": [
+ "CF",
+ "Central African Republic",
+ "R\u00e9publique centrafricaine"
+ ],
+ "region": "Africa",
+ "subregion": "Middle Africa",
+ "languages": {
+ "fra": "French",
+ "sag": "Sango"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0623\u0641\u0631\u064a\u0642\u064a\u0627 \u0627\u0644\u0648\u0633\u0637\u0649",
+ "common": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0623\u0641\u0631\u064a\u0642\u064a\u0627 \u0627\u0644\u0648\u0633\u0637\u0649"
+ },
+ "bre": {
+ "official": "Republik Kreizafrikan",
+ "common": "Republik Kreizafrikan"
+ },
+ "ces": {
+ "official": "St\u0159edoafrick\u00e1 republika",
+ "common": "St\u0159edoafrick\u00e1 republika"
+ },
+ "deu": {
+ "official": "Zentralafrikanische Republik",
+ "common": "Zentralafrikanische Republik"
+ },
+ "est": {
+ "official": "Kesk-Aafrika Vabariik",
+ "common": "Kesk-Aafrika Vabariik"
+ },
+ "fin": {
+ "official": "Keski-Afrikan tasavalta",
+ "common": "Keski-Afrikan tasavalta"
+ },
+ "fra": {
+ "official": "R\u00e9publique centrafricaine",
+ "common": "R\u00e9publique centrafricaine"
+ },
+ "hrv": {
+ "official": "Centralna Afri\u010dka Republika",
+ "common": "Srednjoafri\u010dka Republika"
+ },
+ "hun": {
+ "official": "K\u00f6z\u00e9p-afrikai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "K\u00f6z\u00e9p-afrikai K\u00f6zt\u00e1rsas\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica Centrafricana",
+ "common": "Repubblica Centrafricana"
+ },
+ "jpn": {
+ "official": "\u4e2d\u592e\u30a2\u30d5\u30ea\u30ab\u5171\u548c\u56fd",
+ "common": "\u4e2d\u592e\u30a2\u30d5\u30ea\u30ab"
+ },
+ "kor": {
+ "official": "\uc911\uc559\uc544\ud504\ub9ac\uce74 \uacf5\ud654\uad6d",
+ "common": "\uc911\uc559\uc544\ud504\ub9ac\uce74 \uacf5\ud654\uad6d"
+ },
+ "nld": {
+ "official": "Centraal-Afrikaanse Republiek",
+ "common": "Centraal-Afrikaanse Republiek"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0622\u0641\u0631\u06cc\u0642\u0627\u06cc \u0645\u0631\u06a9\u0632\u06cc",
+ "common": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0622\u0641\u0631\u06cc\u0642\u0627\u06cc \u0645\u0631\u06a9\u0632\u06cc"
+ },
+ "pol": {
+ "official": "Republika \u015arodkowoafryka\u0144ska",
+ "common": "Republika \u015arodkowoafryka\u0144ska"
+ },
+ "por": {
+ "official": "Rep\u00fablica Centro-Africano",
+ "common": "Rep\u00fablica Centro-Africana"
+ },
+ "rus": {
+ "official": "\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e-\u0410\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0426\u0435\u043d\u0442\u0440\u0430\u043b\u044c\u043d\u043e\u0430\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430"
+ },
+ "slk": {
+ "official": "Stredoafrick\u00e1 republika",
+ "common": "Stredoafrick\u00e1 republika"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Centroafricana",
+ "common": "Rep\u00fablica Centroafricana"
+ },
+ "srp": {
+ "official": "Centralnoafri\u010dka Republika",
+ "common": "Centralnoafri\u010dka Republika"
+ },
+ "swe": {
+ "official": "Centralafrikanska republiken",
+ "common": "Centralafrikanska republiken"
+ },
+ "tur": {
+ "official": "Orta Afrika Cumhuriyeti",
+ "common": "Orta Afrika Cumhuriyeti"
+ },
+ "urd": {
+ "official": "\u0648\u0633\u0637\u06cc \u0627\u0641\u0631\u06cc\u0642\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1",
+ "common": "\u0648\u0633\u0637\u06cc \u0627\u0641\u0631\u06cc\u0642\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1"
+ },
+ "zho": {
+ "official": "\u4e2d\u975e\u5171\u548c\u56fd",
+ "common": "\u4e2d\u975e\u5171\u548c\u56fd"
+ }
+ },
+ "latlng": [
+ 7,
+ 21
+ ],
+ "landlocked": true,
+ "borders": [
+ "CMR",
+ "TCD",
+ "COD",
+ "COG",
+ "SSD",
+ "SDN"
+ ],
+ "area": 622984,
+ "flag": "\ud83c\udde8\ud83c\uddeb",
+ "demonyms": {
+ "eng": {
+ "f": "Central African",
+ "m": "Central African"
+ },
+ "fra": {
+ "f": "Centrafricaine",
+ "m": "Centrafricain"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Canada",
+ "official": "Canada",
+ "native": {
+ "eng": {
+ "official": "Canada",
+ "common": "Canada"
+ },
+ "fra": {
+ "official": "Canada",
+ "common": "Canada"
+ }
+ }
+ },
+ "tld": [
+ ".ca"
+ ],
+ "cca2": "CA",
+ "ccn3": "124",
+ "cca3": "CAN",
+ "cioc": "CAN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "CAD": {
+ "name": "Canadian dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "204",
+ "226",
+ "236",
+ "249",
+ "250",
+ "263",
+ "289",
+ "306",
+ "343",
+ "354",
+ "365",
+ "367",
+ "368",
+ "382",
+ "387",
+ "403",
+ "416",
+ "418",
+ "428",
+ "431",
+ "437",
+ "438",
+ "450",
+ "468",
+ "474",
+ "506",
+ "514",
+ "519",
+ "548",
+ "579",
+ "581",
+ "584",
+ "587",
+ "600",
+ "604",
+ "613",
+ "622",
+ "633",
+ "639",
+ "644",
+ "647",
+ "655",
+ "672",
+ "677",
+ "683",
+ "688",
+ "705",
+ "709",
+ "742",
+ "753",
+ "778",
+ "780",
+ "782",
+ "807",
+ "819",
+ "825",
+ "867",
+ "873",
+ "879",
+ "902",
+ "905",
+ "942"
+ ]
+ },
+ "capital": [
+ "Ottawa"
+ ],
+ "altSpellings": [
+ "CA"
+ ],
+ "region": "Americas",
+ "subregion": "North America",
+ "languages": {
+ "eng": "English",
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0643\u0646\u062f\u0627",
+ "common": "\u0643\u0646\u062f\u0627"
+ },
+ "bre": {
+ "official": "Kanada",
+ "common": "Kanada"
+ },
+ "ces": {
+ "official": "Kanada",
+ "common": "Kanada"
+ },
+ "deu": {
+ "official": "Kanada",
+ "common": "Kanada"
+ },
+ "est": {
+ "official": "Kanada",
+ "common": "Kanada"
+ },
+ "fin": {
+ "official": "Kanada",
+ "common": "Kanada"
+ },
+ "fra": {
+ "official": "Canada",
+ "common": "Canada"
+ },
+ "hrv": {
+ "official": "Kanada",
+ "common": "Kanada"
+ },
+ "hun": {
+ "official": "Kanada",
+ "common": "Kanada"
+ },
+ "ita": {
+ "official": "Canada",
+ "common": "Canada"
+ },
+ "jpn": {
+ "official": "\u30ab\u30ca\u30c0",
+ "common": "\u30ab\u30ca\u30c0"
+ },
+ "kor": {
+ "official": "\uce90\ub098\ub2e4",
+ "common": "\uce90\ub098\ub2e4"
+ },
+ "nld": {
+ "official": "Canada",
+ "common": "Canada"
+ },
+ "per": {
+ "official": "\u06a9\u0627\u0646\u0627\u062f\u0627",
+ "common": "\u06a9\u0627\u0646\u0627\u062f\u0627"
+ },
+ "pol": {
+ "official": "Kanada",
+ "common": "Kanada"
+ },
+ "por": {
+ "official": "Canad\u00e1",
+ "common": "Canad\u00e1"
+ },
+ "rus": {
+ "official": "\u041a\u0430\u043d\u0430\u0434\u0430",
+ "common": "\u041a\u0430\u043d\u0430\u0434\u0430"
+ },
+ "slk": {
+ "official": "Kanada",
+ "common": "Kanada"
+ },
+ "spa": {
+ "official": "Canad\u00e1",
+ "common": "Canad\u00e1"
+ },
+ "srp": {
+ "official": "Kanada",
+ "common": "Kanada"
+ },
+ "swe": {
+ "official": "Kanada",
+ "common": "Kanada"
+ },
+ "tur": {
+ "official": "Kanada",
+ "common": "Kanada"
+ },
+ "urd": {
+ "official": "\u06a9\u06cc\u0646\u06cc\u0688\u0627",
+ "common": "\u06a9\u06cc\u0646\u06cc\u0688\u0627"
+ },
+ "zho": {
+ "official": "\u52a0\u62ff\u5927",
+ "common": "\u52a0\u62ff\u5927"
+ }
+ },
+ "latlng": [
+ 60,
+ -95
+ ],
+ "landlocked": false,
+ "borders": [
+ "USA"
+ ],
+ "area": 9984670,
+ "flag": "\ud83c\udde8\ud83c\udde6",
+ "demonyms": {
+ "eng": {
+ "f": "Canadian",
+ "m": "Canadian"
+ },
+ "fra": {
+ "f": "Canadienne",
+ "m": "Canadien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Cocos (Keeling) Islands",
+ "official": "Territory of the Cocos (Keeling) Islands",
+ "native": {
+ "eng": {
+ "official": "Territory of the Cocos (Keeling) Islands",
+ "common": "Cocos (Keeling) Islands"
+ }
+ }
+ },
+ "tld": [
+ ".cc"
+ ],
+ "cca2": "CC",
+ "ccn3": "166",
+ "cca3": "CCK",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "AUD": {
+ "name": "Australian dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "1"
+ ]
+ },
+ "capital": [
+ "West Island"
+ ],
+ "altSpellings": [
+ "CC",
+ "Keeling Islands",
+ "Cocos Islands"
+ ],
+ "region": "Oceania",
+ "subregion": "Australia and New Zealand",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0625\u0642\u0644\u064a\u0645 \u062c\u0632\u0631 \u0643\u0648\u0643\u0648\u0633",
+ "common": "\u062c\u0632\u0631 \u0643\u0648\u0643\u0648\u0633"
+ },
+ "bre": {
+ "official": "Tiriad Inizi Cocos (Keeling)",
+ "common": "Inizi Cocos (Keeling)"
+ },
+ "ces": {
+ "official": "Kokosov\u00e9 ostrovy",
+ "common": "Kokosov\u00e9 ostrovy"
+ },
+ "deu": {
+ "official": "Gebiet der Kokos- (Keeling-) Inseln",
+ "common": "Kokosinseln"
+ },
+ "est": {
+ "official": "Kookossaarte ala",
+ "common": "Kookossaared"
+ },
+ "fin": {
+ "official": "Kookossaaret",
+ "common": "Kookossaaret"
+ },
+ "fra": {
+ "official": "Territoire des \u00eeles Cocos (Keeling)",
+ "common": "\u00celes Cocos"
+ },
+ "hrv": {
+ "official": "Teritoriju Kokosovi (Keeling) Islands",
+ "common": "Kokosovi Otoci"
+ },
+ "hun": {
+ "official": "K\u00f3kusz-szigetek",
+ "common": "K\u00f3kusz-szigetek"
+ },
+ "ita": {
+ "official": "Territorio della (Keeling) Isole Cocos",
+ "common": "Isole Cocos e Keeling"
+ },
+ "jpn": {
+ "official": "\u30b3\u30b3\u30b9\u8af8\u5cf6",
+ "common": "\u30b3\u30b3\u30b9\u8af8\u5cf6"
+ },
+ "kor": {
+ "official": "\ucf54\ucf54\uc2a4 \uc81c\ub3c4",
+ "common": "\ucf54\ucf54\uc2a4 \uc81c\ub3c4"
+ },
+ "nld": {
+ "official": "Grondgebied van de Eilanden Cocos (Keeling )",
+ "common": "Cocoseilanden"
+ },
+ "per": {
+ "official": "\u062c\u0632\u0627\u06cc\u0631 \u06a9\u0648\u06a9\u0648\u0633",
+ "common": "\u062c\u0632\u0627\u06cc\u0631 \u06a9\u0648\u06a9\u0648\u0633"
+ },
+ "pol": {
+ "official": "Wyspy Kokosowe",
+ "common": "Wyspy Kokosowe"
+ },
+ "por": {
+ "official": "Territ\u00f3rio dos Cocos (Keeling)",
+ "common": "Ilhas Cocos (Keeling)"
+ },
+ "rus": {
+ "official": "\u0422\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u041a\u043e\u043a\u043e\u0441\u043e\u0432\u044b\u0435 (\u041a\u0438\u043b\u0438\u043d\u0433) \u043e\u0441\u0442\u0440\u043e\u0432\u0430",
+ "common": "\u041a\u043e\u043a\u043e\u0441\u043e\u0432\u044b\u0435 \u043e\u0441\u0442\u0440\u043e\u0432\u0430"
+ },
+ "slk": {
+ "official": "Kokosov\u00e9 ostrovy",
+ "common": "Kokosov\u00e9 ostrovy"
+ },
+ "spa": {
+ "official": "Territorio de los (Keeling) Islas Cocos",
+ "common": "Islas Cocos o Islas Keeling"
+ },
+ "srp": {
+ "official": "Teritorija Kokosovih (Kiling) Ostrva",
+ "common": "Kokosova Ostrva"
+ },
+ "swe": {
+ "official": "Kokos\u00f6arna",
+ "common": "Kokos\u00f6arna"
+ },
+ "tur": {
+ "official": "Cocos (Keeling) Adalar\u0131",
+ "common": "Cocos (Keeling) Adalar\u0131"
+ },
+ "urd": {
+ "official": "\u062c\u0632\u0627\u0626\u0631 (\u06a9\u06cc\u0644\u0646\u06af) \u06a9\u0648\u06a9\u0648\u0633",
+ "common": "\u062c\u0632\u0627\u0626\u0631 \u06a9\u0648\u06a9\u0648\u0633"
+ },
+ "zho": {
+ "official": "\u79d1\u79d1\u65af",
+ "common": "\u79d1\u79d1\u65af"
+ }
+ },
+ "latlng": [
+ -12.5,
+ 96.83333333
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 14,
+ "flag": "\ud83c\udde8\ud83c\udde8",
+ "demonyms": {
+ "eng": {
+ "f": "Cocos Islander",
+ "m": "Cocos Islander"
+ },
+ "fra": {
+ "f": "",
+ "m": ""
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Switzerland",
+ "official": "Swiss Confederation",
+ "native": {
+ "fra": {
+ "official": "Conf\u00e9d\u00e9ration suisse",
+ "common": "Suisse"
+ },
+ "gsw": {
+ "official": "Schweizerische Eidgenossenschaft",
+ "common": "Schweiz"
+ },
+ "ita": {
+ "official": "Confederazione Svizzera",
+ "common": "Svizzera"
+ },
+ "roh": {
+ "official": "Confederaziun svizra",
+ "common": "Svizra"
+ }
+ }
+ },
+ "tld": [
+ ".ch"
+ ],
+ "cca2": "CH",
+ "ccn3": "756",
+ "cca3": "CHE",
+ "cioc": "SUI",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "CHF": {
+ "name": "Swiss franc",
+ "symbol": "Fr."
+ }
+ },
+ "idd": {
+ "root": "+4",
+ "suffixes": [
+ "1"
+ ]
+ },
+ "capital": [
+ "Bern"
+ ],
+ "altSpellings": [
+ "CH",
+ "Swiss Confederation",
+ "Schweiz",
+ "Suisse",
+ "Svizzera",
+ "Svizra"
+ ],
+ "region": "Europe",
+ "subregion": "Western Europe",
+ "languages": {
+ "fra": "French",
+ "gsw": "Swiss German",
+ "ita": "Italian",
+ "roh": "Romansh"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0633\u0648\u064a\u0633\u0631\u064a",
+ "common": "\u0633\u0648\u064a\u0633\u0631\u0627"
+ },
+ "bre": {
+ "official": "Kengevredad Suis",
+ "common": "Suis"
+ },
+ "ces": {
+ "official": "\u0160v\u00fdcarsk\u00e1 konfederace",
+ "common": "\u0160v\u00fdcarsko"
+ },
+ "deu": {
+ "official": "Schweizerische Eidgenossenschaft",
+ "common": "Schweiz"
+ },
+ "est": {
+ "official": "\u0160veitsi Konf\u00f6deratsioon",
+ "common": "\u0160veits"
+ },
+ "fin": {
+ "official": "Sveitsin valaliitto",
+ "common": "Sveitsi"
+ },
+ "fra": {
+ "official": "Conf\u00e9d\u00e9ration suisse",
+ "common": "Suisse"
+ },
+ "hrv": {
+ "official": "\u0161vicarska Konfederacija",
+ "common": "\u0160vicarska"
+ },
+ "hun": {
+ "official": "Sv\u00e1jc",
+ "common": "Sv\u00e1jc"
+ },
+ "ita": {
+ "official": "Confederazione svizzera",
+ "common": "Svizzera"
+ },
+ "jpn": {
+ "official": "\u30b9\u30a4\u30b9\u9023\u90a6",
+ "common": "\u30b9\u30a4\u30b9"
+ },
+ "kor": {
+ "official": "\uc2a4\uc704\uc2a4 \uc5f0\ubc29",
+ "common": "\uc2a4\uc704\uc2a4"
+ },
+ "nld": {
+ "official": "Zwitserse Confederatie",
+ "common": "Zwitserland"
+ },
+ "per": {
+ "official": "\u06a9\u0646\u0641\u062f\u0631\u0627\u0633\u06cc\u0648\u0646 \u0633\u0648\u0626\u06cc\u0633",
+ "common": "\u0633\u0648\u0626\u06cc\u0633"
+ },
+ "pol": {
+ "official": "Konfederacja Szwajcarska",
+ "common": "Szwajcaria"
+ },
+ "por": {
+ "official": "Confedera\u00e7\u00e3o Su\u00ed\u00e7a",
+ "common": "Su\u00ed\u00e7a"
+ },
+ "rus": {
+ "official": "\u0428\u0432\u0435\u0439\u0446\u0430\u0440\u0441\u043a\u0430\u044f \u041a\u043e\u043d\u0444\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f",
+ "common": "\u0428\u0432\u0435\u0439\u0446\u0430\u0440\u0438\u044f"
+ },
+ "slk": {
+ "official": "\u0160vaj\u010diarska konfeder\u00e1cia",
+ "common": "\u0160vaj\u010diarsko"
+ },
+ "spa": {
+ "official": "Confederaci\u00f3n Suiza",
+ "common": "Suiza"
+ },
+ "srp": {
+ "official": "\u0160vajcarska Konfederacija",
+ "common": "\u0160vajcarska"
+ },
+ "swe": {
+ "official": "Schweiziska edsf\u00f6rbundet",
+ "common": "Schweiz"
+ },
+ "tur": {
+ "official": "\u0130svi\u00e7re Konfederasyonu",
+ "common": "\u0130svi\u00e7re"
+ },
+ "urd": {
+ "official": "\u0633\u0648\u0626\u06cc\u0633 \u0645\u062a\u062d\u062f\u06c1",
+ "common": "\u0633\u0648\u06cc\u0679\u0630\u0631\u0644\u06cc\u0646\u0688"
+ },
+ "zho": {
+ "official": "\u745e\u58eb\u8054\u90a6",
+ "common": "\u745e\u58eb"
+ }
+ },
+ "latlng": [
+ 47,
+ 8
+ ],
+ "landlocked": true,
+ "borders": [
+ "AUT",
+ "FRA",
+ "ITA",
+ "LIE",
+ "DEU"
+ ],
+ "area": 41284,
+ "flag": "\ud83c\udde8\ud83c\udded",
+ "demonyms": {
+ "eng": {
+ "f": "Swiss",
+ "m": "Swiss"
+ },
+ "fra": {
+ "f": "Suisse",
+ "m": "Suisse"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Chile",
+ "official": "Republic of Chile",
+ "native": {
+ "spa": {
+ "official": "Rep\u00fablica de Chile",
+ "common": "Chile"
+ }
+ }
+ },
+ "tld": [
+ ".cl"
+ ],
+ "cca2": "CL",
+ "ccn3": "152",
+ "cca3": "CHL",
+ "cioc": "CHI",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "CLP": {
+ "name": "Chilean peso",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "6"
+ ]
+ },
+ "capital": [
+ "Santiago"
+ ],
+ "altSpellings": [
+ "CL",
+ "Republic of Chile",
+ "Rep\u00fablica de Chile"
+ ],
+ "region": "Americas",
+ "subregion": "South America",
+ "languages": {
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u062a\u0634\u064a\u0644\u064a",
+ "common": "\u062a\u0634\u064a\u0644\u064a"
+ },
+ "bre": {
+ "official": "Republik Chile",
+ "common": "Chile"
+ },
+ "ces": {
+ "official": "Chilsk\u00e1 republika",
+ "common": "Chile"
+ },
+ "deu": {
+ "official": "Republik Chile",
+ "common": "Chile"
+ },
+ "est": {
+ "official": "T\u0161iili Vabariik",
+ "common": "T\u0161iili"
+ },
+ "fin": {
+ "official": "Chilen tasavalta",
+ "common": "Chile"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Chili",
+ "common": "Chili"
+ },
+ "hrv": {
+ "official": "Republika \u010cile",
+ "common": "\u010cile"
+ },
+ "hun": {
+ "official": "Chilei K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Chile"
+ },
+ "ita": {
+ "official": "Repubblica del Cile",
+ "common": "Cile"
+ },
+ "jpn": {
+ "official": "\u30c1\u30ea\u5171\u548c\u56fd",
+ "common": "\u30c1\u30ea"
+ },
+ "kor": {
+ "official": "\uce60\ub808 \uacf5\ud654\uad6d",
+ "common": "\uce60\ub808"
+ },
+ "nld": {
+ "official": "Republiek Chili",
+ "common": "Chili"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0634\u06cc\u0644\u06cc",
+ "common": "\u0634\u06cc\u0644\u06cc"
+ },
+ "pol": {
+ "official": "Republika Chile",
+ "common": "Chile"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Chile",
+ "common": "Chile"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0427\u0438\u043b\u0438",
+ "common": "\u0427\u0438\u043b\u0438"
+ },
+ "slk": {
+ "official": "\u010c\u00edlska republika",
+ "common": "\u010cile"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Chile",
+ "common": "Chile"
+ },
+ "srp": {
+ "official": "Republika \u010cile",
+ "common": "\u010cile"
+ },
+ "swe": {
+ "official": "Republiken Chile",
+ "common": "Chile"
+ },
+ "tur": {
+ "official": "\u015fili Cumhuriyeti",
+ "common": "\u015fili"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0686\u0644\u06cc",
+ "common": "\u0686\u0644\u06cc"
+ },
+ "zho": {
+ "official": "\u667a\u5229\u5171\u548c\u56fd",
+ "common": "\u667a\u5229"
+ }
+ },
+ "latlng": [
+ -30,
+ -71
+ ],
+ "landlocked": false,
+ "borders": [
+ "ARG",
+ "BOL",
+ "PER"
+ ],
+ "area": 756102,
+ "flag": "\ud83c\udde8\ud83c\uddf1",
+ "demonyms": {
+ "eng": {
+ "f": "Chilean",
+ "m": "Chilean"
+ },
+ "fra": {
+ "f": "Chilienne",
+ "m": "Chilien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "China",
+ "official": "People's Republic of China",
+ "native": {
+ "zho": {
+ "official": "\u4e2d\u534e\u4eba\u6c11\u5171\u548c\u56fd",
+ "common": "\u4e2d\u56fd"
+ }
+ }
+ },
+ "tld": [
+ ".cn",
+ ".\u4e2d\u56fd",
+ ".\u4e2d\u570b",
+ ".\u516c\u53f8",
+ ".\u7f51\u7edc"
+ ],
+ "cca2": "CN",
+ "ccn3": "156",
+ "cca3": "CHN",
+ "cioc": "CHN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "CNY": {
+ "name": "Chinese yuan",
+ "symbol": "\u00a5"
+ }
+ },
+ "idd": {
+ "root": "+8",
+ "suffixes": [
+ "6"
+ ]
+ },
+ "capital": [
+ "Beijing"
+ ],
+ "altSpellings": [
+ "CN",
+ "Zh\u014dnggu\u00f3",
+ "Zhongguo",
+ "Zhonghua",
+ "People's Republic of China",
+ "\u4e2d\u534e\u4eba\u6c11\u5171\u548c\u56fd",
+ "Zh\u014dnghu\u00e1 R\u00e9nm\u00edn G\u00f2ngh\u00e9gu\u00f3"
+ ],
+ "region": "Asia",
+ "subregion": "Eastern Asia",
+ "languages": {
+ "zho": "Chinese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0635\u064a\u0646 \u0627\u0644\u0634\u0639\u0628\u064a\u0629",
+ "common": "\u0627\u0644\u0635\u064a\u0646"
+ },
+ "bre": {
+ "official": "Republik Pobl Sina",
+ "common": "Sina"
+ },
+ "ces": {
+ "official": "\u010c\u00ednsk\u00e1 lidov\u00e1 republika",
+ "common": "\u010c\u00edna"
+ },
+ "deu": {
+ "official": "Volksrepublik China",
+ "common": "China"
+ },
+ "est": {
+ "official": "Hiina Rahvavabariik",
+ "common": "Hiina"
+ },
+ "fin": {
+ "official": "Kiinan kansantasavalta",
+ "common": "Kiina"
+ },
+ "fra": {
+ "official": "R\u00e9publique populaire de Chine",
+ "common": "Chine"
+ },
+ "hrv": {
+ "official": "Narodna Republika Kina",
+ "common": "Kina"
+ },
+ "hun": {
+ "official": "K\u00ednai N\u00e9pk\u00f6zt\u00e1rsas\u00e1g",
+ "common": "K\u00edna"
+ },
+ "ita": {
+ "official": "Repubblica popolare cinese",
+ "common": "Cina"
+ },
+ "jpn": {
+ "official": "\u4e2d\u83ef\u4eba\u6c11\u5171\u548c\u56fd",
+ "common": "\u4e2d\u56fd"
+ },
+ "kor": {
+ "official": "\uc911\ud654\uc778\ubbfc\uacf5\ud654\uad6d",
+ "common": "\uc911\uad6d"
+ },
+ "nld": {
+ "official": "Volksrepubliek China",
+ "common": "China"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062e\u0644\u0642 \u0686\u06cc\u0646",
+ "common": "\u0686\u06cc\u0646"
+ },
+ "pol": {
+ "official": "Chi\u0144ska Republika Ludowa",
+ "common": "Chiny"
+ },
+ "por": {
+ "official": "Rep\u00fablica Popular da China",
+ "common": "China"
+ },
+ "rus": {
+ "official": "\u041d\u0430\u0440\u043e\u0434\u043d\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u0438\u0442\u0430\u0439",
+ "common": "\u041a\u0438\u0442\u0430\u0439"
+ },
+ "slk": {
+ "official": "\u010c\u00ednska \u013eudov\u00e1 republika",
+ "common": "\u010c\u00edna"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Popular de China",
+ "common": "China"
+ },
+ "srp": {
+ "official": "Narodna Republika Kina",
+ "common": "Kina"
+ },
+ "swe": {
+ "official": "Folkrepubliken Kina",
+ "common": "Kina"
+ },
+ "tur": {
+ "official": "\u00e7in Halk Cumhuriyeti",
+ "common": "\u00e7in"
+ },
+ "urd": {
+ "official": "\u0639\u0648\u0627\u0645\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0686\u06cc\u0646",
+ "common": "\u0686\u06cc\u0646"
+ },
+ "zho": {
+ "official": "\u4e2d\u534e\u4eba\u6c11\u5171\u548c\u56fd",
+ "common": "\u4e2d\u56fd"
+ }
+ },
+ "latlng": [
+ 35,
+ 105
+ ],
+ "landlocked": false,
+ "borders": [
+ "AFG",
+ "BTN",
+ "MMR",
+ "HKG",
+ "IND",
+ "KAZ",
+ "NPL",
+ "PRK",
+ "KGZ",
+ "LAO",
+ "MAC",
+ "MNG",
+ "PAK",
+ "RUS",
+ "TJK",
+ "VNM"
+ ],
+ "area": 9706961,
+ "flag": "\ud83c\udde8\ud83c\uddf3",
+ "demonyms": {
+ "eng": {
+ "f": "Chinese",
+ "m": "Chinese"
+ },
+ "fra": {
+ "f": "Chinoise",
+ "m": "Chinois"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Ivory Coast",
+ "official": "Republic of C\u00f4te d'Ivoire",
+ "native": {
+ "fra": {
+ "official": "R\u00e9publique de C\u00f4te d'Ivoire",
+ "common": "C\u00f4te d'Ivoire"
+ }
+ }
+ },
+ "tld": [
+ ".ci"
+ ],
+ "cca2": "CI",
+ "ccn3": "384",
+ "cca3": "CIV",
+ "cioc": "CIV",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "XOF": {
+ "name": "West African CFA franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "25"
+ ]
+ },
+ "capital": [
+ "Yamoussoukro"
+ ],
+ "altSpellings": [
+ "CI",
+ "C\u00f4te d'Ivoire",
+ "Cote d'Ivoire",
+ "Ivory Coast",
+ "Republic of C\u00f4te d'Ivoire",
+ "R\u00e9publique de C\u00f4te d'Ivoire"
+ ],
+ "region": "Africa",
+ "subregion": "Western Africa",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0633\u0627\u062d\u0644 \u0627\u0644\u0639\u0627\u062c",
+ "common": "\u0633\u0627\u062d\u0644 \u0627\u0644\u0639\u0627\u062c"
+ },
+ "bre": {
+ "official": "Republik Aod an Olifant",
+ "common": "Aod an Olifant"
+ },
+ "ces": {
+ "official": "Republika Pob\u0159e\u017e\u00ed slonoviny",
+ "common": "Pob\u0159e\u017e\u00ed slonoviny"
+ },
+ "deu": {
+ "official": "Republik C\u00f4te d'Ivoire",
+ "common": "C\u00f4te d'Ivoire"
+ },
+ "est": {
+ "official": "C\u00f4te d\u2019Ivoire\u2019i Vabariik",
+ "common": "Elevandiluurannik"
+ },
+ "fin": {
+ "official": "Norsunluurannikon tasavalta",
+ "common": "Norsunluurannikko"
+ },
+ "fra": {
+ "official": "R\u00e9publique de C\u00f4te d' Ivoire",
+ "common": "C\u00f4te d'Ivoire"
+ },
+ "hrv": {
+ "official": "Republika C\u00f4te d'Ivoire",
+ "common": "Obala Bjelokosti"
+ },
+ "hun": {
+ "official": "Elef\u00e1ntcsontparti K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Elef\u00e1ntcsontpart"
+ },
+ "ita": {
+ "official": "Repubblica della Costa d'Avorio",
+ "common": "Costa d'Avorio"
+ },
+ "jpn": {
+ "official": "\u30b3\u30fc\u30c8\u30b8\u30dc\u30ef\u30fc\u30eb\u5171\u548c\u56fd",
+ "common": "\u30b3\u30fc\u30c8\u30b8\u30dc\u30ef\u30fc\u30eb"
+ },
+ "kor": {
+ "official": "\ucf54\ud2b8\ub514\ubd80\uc544\ub974 \uacf5\ud654\uad6d",
+ "common": "\ucf54\ud2b8\ub514\ubd80\uc544\ub974"
+ },
+ "nld": {
+ "official": "Republiek Ivoorkust",
+ "common": "Ivoorkust"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0633\u0627\u062d\u0644 \u0639\u0627\u062c",
+ "common": "\u0633\u0627\u062d\u0644 \u0639\u0627\u062c"
+ },
+ "pol": {
+ "official": "Republika Wybrze\u017ba Ko\u015bci S\u0142oniowej",
+ "common": "Wybrze\u017be Ko\u015bci S\u0142oniowej"
+ },
+ "por": {
+ "official": "Rep\u00fablica da C\u00f4te d'Ivoire",
+ "common": "Costa do Marfim"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u0442-\u0434'\u0418\u0432\u0443\u0430\u0440\u0435",
+ "common": "\u041a\u043e\u0442-\u0434\u2019\u0418\u0432\u0443\u0430\u0440"
+ },
+ "slk": {
+ "official": "Republika Pobre\u017eie Slonoviny",
+ "common": "Pobr\u017eie Slonoviny"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de C\u00f4te d'Ivoire",
+ "common": "Costa de Marfil"
+ },
+ "srp": {
+ "official": "Republika Obala Slonova\u010de",
+ "common": "Obala Slonova\u010de"
+ },
+ "swe": {
+ "official": "Republiken Elfenbenskusten",
+ "common": "Elfenbenskusten"
+ },
+ "tur": {
+ "official": "Fildi\u015fi Sahili",
+ "common": "Fildi\u015fi Sahili"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06a9\u0648\u062a \u062f\u06cc\u0648\u0627\u063a",
+ "common": "\u0622\u0626\u06cc\u0648\u0631\u06cc \u06a9\u0648\u0633\u0679"
+ },
+ "zho": {
+ "official": "\u79d1\u7279\u8fea\u74e6\u5171\u548c\u56fd",
+ "common": "\u79d1\u7279\u8fea\u74e6"
+ }
+ },
+ "latlng": [
+ 8,
+ -5
+ ],
+ "landlocked": false,
+ "borders": [
+ "BFA",
+ "GHA",
+ "GIN",
+ "LBR",
+ "MLI"
+ ],
+ "area": 322463,
+ "flag": "\ud83c\udde8\ud83c\uddee",
+ "demonyms": {
+ "eng": {
+ "f": "Ivorian",
+ "m": "Ivorian"
+ },
+ "fra": {
+ "f": "Ivoirienne",
+ "m": "Ivoirien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Cameroon",
+ "official": "Republic of Cameroon",
+ "native": {
+ "eng": {
+ "official": "Republic of Cameroon",
+ "common": "Cameroon"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Cameroun",
+ "common": "Cameroun"
+ }
+ }
+ },
+ "tld": [
+ ".cm"
+ ],
+ "cca2": "CM",
+ "ccn3": "120",
+ "cca3": "CMR",
+ "cioc": "CMR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "XAF": {
+ "name": "Central African CFA franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "37"
+ ]
+ },
+ "capital": [
+ "Yaound\u00e9"
+ ],
+ "altSpellings": [
+ "CM",
+ "Republic of Cameroon",
+ "R\u00e9publique du Cameroun"
+ ],
+ "region": "Africa",
+ "subregion": "Middle Africa",
+ "languages": {
+ "eng": "English",
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0643\u0627\u0645\u064a\u0631\u0648\u0646",
+ "common": "\u0627\u0644\u0643\u0627\u0645\u064a\u0631\u0648\u0646"
+ },
+ "bre": {
+ "official": "Republik Kameroun",
+ "common": "Kameroun"
+ },
+ "ces": {
+ "official": "Kamerunsk\u00e1 republika",
+ "common": "Kamerun"
+ },
+ "deu": {
+ "official": "Republik Kamerun",
+ "common": "Kamerun"
+ },
+ "est": {
+ "official": "Kameruni Vabariik",
+ "common": "Kamerun"
+ },
+ "fin": {
+ "official": "Kamerunin tasavalta",
+ "common": "Kamerun"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Cameroun",
+ "common": "Cameroun"
+ },
+ "hrv": {
+ "official": "Republika Kamerun",
+ "common": "Kamerun"
+ },
+ "hun": {
+ "official": "Kameruni K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Kamerun"
+ },
+ "ita": {
+ "official": "Repubblica del Camerun",
+ "common": "Camerun"
+ },
+ "jpn": {
+ "official": "\u30ab\u30e1\u30eb\u30fc\u30f3\u5171\u548c\u56fd",
+ "common": "\u30ab\u30e1\u30eb\u30fc\u30f3"
+ },
+ "kor": {
+ "official": "\uce74\uba54\ub8ec \uacf5\ud654\uad6d",
+ "common": "\uce74\uba54\ub8ec"
+ },
+ "nld": {
+ "official": "Republiek Kameroen",
+ "common": "Kameroen"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06a9\u0627\u0645\u0650\u0631\u0648\u0646",
+ "common": "\u06a9\u0627\u0645\u0650\u0631\u0648\u0646"
+ },
+ "pol": {
+ "official": "Republika Wybrze\u017ba Ko\u015bci S\u0142oniowej",
+ "common": "Wybrze\u017be Ko\u015bci S\u0142oniowej"
+ },
+ "por": {
+ "official": "Rep\u00fablica dos Camar\u00f5es",
+ "common": "Camar\u00f5es"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u0430\u043c\u0435\u0440\u0443\u043d",
+ "common": "\u041a\u0430\u043c\u0435\u0440\u0443\u043d"
+ },
+ "slk": {
+ "official": "Kamerunsk\u00e1 republika",
+ "common": "Kamerun"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Camer\u00fan",
+ "common": "Camer\u00fan"
+ },
+ "srp": {
+ "official": "Republika Kamerun",
+ "common": "Kamerun"
+ },
+ "swe": {
+ "official": "Republiken Kamerun",
+ "common": "Kamerun"
+ },
+ "tur": {
+ "official": "Kamerun Cumhuriyeti",
+ "common": "Kamerun"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06a9\u06cc\u0645\u0631\u0648\u0646",
+ "common": "\u06a9\u06cc\u0645\u0631\u0648\u0646"
+ },
+ "zho": {
+ "official": "\u5580\u9ea6\u9686\u5171\u548c\u56fd",
+ "common": "\u5580\u9ea6\u9686"
+ }
+ },
+ "latlng": [
+ 6,
+ 12
+ ],
+ "landlocked": false,
+ "borders": [
+ "CAF",
+ "TCD",
+ "COG",
+ "GNQ",
+ "GAB",
+ "NGA"
+ ],
+ "area": 475442,
+ "flag": "\ud83c\udde8\ud83c\uddf2",
+ "demonyms": {
+ "eng": {
+ "f": "Cameroonian",
+ "m": "Cameroonian"
+ },
+ "fra": {
+ "f": "Camerounaise",
+ "m": "Camerounais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "DR Congo",
+ "official": "Democratic Republic of the Congo",
+ "native": {
+ "fra": {
+ "official": "R\u00e9publique d\u00e9mocratique du Congo",
+ "common": "RD Congo"
+ },
+ "kon": {
+ "official": "Repubilika ya Kongo Demokratiki",
+ "common": "Repubilika ya Kongo Demokratiki"
+ },
+ "lin": {
+ "official": "Republiki ya Kong\u00f3 Demokratiki",
+ "common": "Republiki ya Kong\u00f3 Demokratiki"
+ },
+ "lua": {
+ "official": "Ditunga dia Kongu wa Mungalaata",
+ "common": "Ditunga dia Kongu wa Mungalaata"
+ },
+ "swa": {
+ "official": "Jamhuri ya Kidemokrasia ya Kongo",
+ "common": "Jamhuri ya Kidemokrasia ya Kongo"
+ }
+ }
+ },
+ "tld": [
+ ".cd"
+ ],
+ "cca2": "CD",
+ "ccn3": "180",
+ "cca3": "COD",
+ "cioc": "COD",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "CDF": {
+ "name": "Congolese franc",
+ "symbol": "FC"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "43"
+ ]
+ },
+ "capital": [
+ "Kinshasa"
+ ],
+ "altSpellings": [
+ "CD",
+ "DR Congo",
+ "Congo-Kinshasa",
+ "Congo, the Democratic Republic of the",
+ "Democratic Republic of Congo",
+ "DRC"
+ ],
+ "region": "Africa",
+ "subregion": "Middle Africa",
+ "languages": {
+ "fra": "French",
+ "kon": "Kikongo",
+ "lin": "Lingala",
+ "lua": "Tshiluba",
+ "swa": "Swahili"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0643\u0648\u0646\u063a\u0648 \u0627\u0644\u062f\u064a\u0645\u0642\u0631\u0627\u0637\u064a\u0629",
+ "common": "\u0627\u0644\u0643\u0648\u0646\u063a\u0648"
+ },
+ "bre": {
+ "official": "Republik Demokratel Kongo",
+ "common": "Kongo-Kinshasa"
+ },
+ "ces": {
+ "official": "Demokratick\u00e1 republika Kongo",
+ "common": "DR Kongo"
+ },
+ "deu": {
+ "official": "Demokratische Republik Kongo",
+ "common": "Kongo (Dem. Rep.)"
+ },
+ "est": {
+ "official": "Kongo Demokraatlik Vabariik",
+ "common": "Kongo DV"
+ },
+ "fin": {
+ "official": "Kongon demokraattinen tasavalta",
+ "common": "Kongon demokraattinen tasavalta"
+ },
+ "fra": {
+ "official": "R\u00e9publique d\u00e9mocratique du Congo",
+ "common": "Congo (R\u00e9p. d\u00e9m.)"
+ },
+ "hrv": {
+ "official": "Demokratska Republika Kongo",
+ "common": "Kongo, Demokratska Republika"
+ },
+ "hun": {
+ "official": "Kong\u00f3i Demokratikus K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Kong\u00f3i Demokratikus K\u00f6zt\u00e1rsas\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica Democratica del Congo",
+ "common": "Congo (Rep. Dem.)"
+ },
+ "jpn": {
+ "official": "\u30b3\u30f3\u30b4\u6c11\u4e3b\u5171\u548c\u56fd",
+ "common": "\u30b3\u30f3\u30b4\u6c11\u4e3b\u5171\u548c\u56fd"
+ },
+ "kor": {
+ "official": "\ucf69\uace0 \ubbfc\uc8fc \uacf5\ud654\uad6d",
+ "common": "\ucf69\uace0 \ubbfc\uc8fc \uacf5\ud654\uad6d"
+ },
+ "nld": {
+ "official": "Democratische Republiek Congo",
+ "common": "Congo (DRC)"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062f\u0645\u0648\u06a9\u0631\u0627\u062a\u06cc\u06a9 \u06a9\u0646\u06af\u0648",
+ "common": "\u06a9\u0646\u06af\u0648 \u062f\u0645\u0648\u06a9\u0631\u0627\u062a\u06cc\u06a9"
+ },
+ "pol": {
+ "official": "Demokratyczna Republika Konga",
+ "common": "Demokratyczna Republika Konga"
+ },
+ "por": {
+ "official": "Rep\u00fablica Democr\u00e1tica do Congo",
+ "common": "Rep\u00fablica Democr\u00e1tica do Congo"
+ },
+ "rus": {
+ "official": "\u0414\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u043d\u0433\u043e",
+ "common": "\u0414\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u043d\u0433\u043e"
+ },
+ "slk": {
+ "official": "Kon\u017esk\u00e1 demokratick\u00e1 republika",
+ "common": "Kongo"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Democr\u00e1tica del Congo",
+ "common": "Congo (Rep. Dem.)"
+ },
+ "srp": {
+ "official": "Demokratska Republika Kongo",
+ "common": "Kongo, Demokratska Republika"
+ },
+ "swe": {
+ "official": "Demokratiska republiken Kongo",
+ "common": "Kongo-Kinshasa"
+ },
+ "tur": {
+ "official": "Kongo Demokratik Cumhuriyeti",
+ "common": "Kongo Demokratik Cumhuriyeti"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06a9\u0627\u0646\u06af\u0648",
+ "common": "\u06a9\u0627\u0646\u06af\u0648"
+ },
+ "zho": {
+ "official": "\u521a\u679c\u6c11\u4e3b\u5171\u548c\u56fd",
+ "common": "\u6c11\u4e3b\u521a\u679c"
+ }
+ },
+ "latlng": [
+ 0,
+ 25
+ ],
+ "landlocked": false,
+ "borders": [
+ "AGO",
+ "BDI",
+ "CAF",
+ "COG",
+ "RWA",
+ "SSD",
+ "TZA",
+ "UGA",
+ "ZMB"
+ ],
+ "area": 2344858,
+ "flag": "\ud83c\udde8\ud83c\udde9",
+ "demonyms": {
+ "eng": {
+ "f": "Congolese",
+ "m": "Congolese"
+ },
+ "fra": {
+ "f": "Congolaise",
+ "m": "Congolais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Congo",
+ "official": "Republic of the Congo",
+ "native": {
+ "fra": {
+ "official": "R\u00e9publique du Congo",
+ "common": "R\u00e9publique du Congo"
+ },
+ "kon": {
+ "official": "Repubilika ya Kongo",
+ "common": "Repubilika ya Kongo"
+ },
+ "lin": {
+ "official": "Republ\u00edki ya Kong\u00f3",
+ "common": "Republ\u00edki ya Kong\u00f3"
+ }
+ }
+ },
+ "tld": [
+ ".cg"
+ ],
+ "cca2": "CG",
+ "ccn3": "178",
+ "cca3": "COG",
+ "cioc": "CGO",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "XAF": {
+ "name": "Central African CFA franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "42"
+ ]
+ },
+ "capital": [
+ "Brazzaville"
+ ],
+ "altSpellings": [
+ "CG",
+ "Congo",
+ "Congo-Brazzaville"
+ ],
+ "region": "Africa",
+ "subregion": "Middle Africa",
+ "languages": {
+ "fra": "French",
+ "kon": "Kikongo",
+ "lin": "Lingala"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0643\u0648\u0646\u063a\u0648",
+ "common": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0643\u0648\u0646\u063a\u0648"
+ },
+ "bre": {
+ "official": "Republik Kongo",
+ "common": "Kongo-Brazzaville"
+ },
+ "ces": {
+ "official": "Kon\u017esk\u00e1 republika",
+ "common": "Kongo"
+ },
+ "deu": {
+ "official": "Republik Kongo",
+ "common": "Kongo"
+ },
+ "est": {
+ "official": "Kongo Vabariik",
+ "common": "Kongo Vabariik"
+ },
+ "fin": {
+ "official": "Kongon tasavalta",
+ "common": "Kongo-Brazzaville"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Congo",
+ "common": "Congo"
+ },
+ "hrv": {
+ "official": "Republika Kongo",
+ "common": "Kongo"
+ },
+ "hun": {
+ "official": "Kong\u00f3i K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Kong\u00f3i K\u00f6zt\u00e1rsas\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica del Congo",
+ "common": "Congo"
+ },
+ "jpn": {
+ "official": "\u30b3\u30f3\u30b4\u5171\u548c\u56fd",
+ "common": "\u30b3\u30f3\u30b4\u5171\u548c\u56fd"
+ },
+ "kor": {
+ "official": "\ucf69\uace0",
+ "common": "\ucf69\uace0"
+ },
+ "nld": {
+ "official": "Republiek Congo",
+ "common": "Congo"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0628\u0631\u0627\u0632\u0627\u0648\u06cc\u0644 \u06a9\u064f\u0646\u06af\u0648",
+ "common": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06a9\u064f\u0646\u06af\u0648"
+ },
+ "pol": {
+ "official": "Republika Konga",
+ "common": "Kongo"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Congo",
+ "common": "Congo"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u043d\u0433\u043e",
+ "common": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u043d\u0433\u043e"
+ },
+ "slk": {
+ "official": "Kon\u017esk\u00e1 republika",
+ "common": "Kongo"
+ },
+ "spa": {
+ "official": "Rep\u00fablica del Congo",
+ "common": "Congo"
+ },
+ "srp": {
+ "official": "Republika Kongo",
+ "common": "Kongo, Republika"
+ },
+ "swe": {
+ "official": "Republiken Kongo",
+ "common": "Kongo-Brazzaville"
+ },
+ "tur": {
+ "official": "Kongo Cumhuriyeti",
+ "common": "Kongo Cumhuriyeti"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06a9\u0627\u0646\u06af\u0648",
+ "common": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06a9\u0627\u0646\u06af\u0648"
+ },
+ "zho": {
+ "official": "\u521a\u679c\u5171\u548c\u56fd",
+ "common": "\u521a\u679c"
+ }
+ },
+ "latlng": [
+ -1,
+ 15
+ ],
+ "landlocked": false,
+ "borders": [
+ "AGO",
+ "CMR",
+ "CAF",
+ "COD",
+ "GAB"
+ ],
+ "area": 342000,
+ "flag": "\ud83c\udde8\ud83c\uddec",
+ "demonyms": {
+ "eng": {
+ "f": "Congolese",
+ "m": "Congolese"
+ },
+ "fra": {
+ "f": "Congolaise",
+ "m": "Congolais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Cook Islands",
+ "official": "Cook Islands",
+ "native": {
+ "eng": {
+ "official": "Cook Islands",
+ "common": "Cook Islands"
+ },
+ "rar": {
+ "official": "K\u016bki '\u0100irani",
+ "common": "K\u016bki '\u0100irani"
+ }
+ }
+ },
+ "tld": [
+ ".ck"
+ ],
+ "cca2": "CK",
+ "ccn3": "184",
+ "cca3": "COK",
+ "cioc": "COK",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "CKD": {
+ "name": "Cook Islands dollar",
+ "symbol": "$"
+ },
+ "NZD": {
+ "name": "New Zealand dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "82"
+ ]
+ },
+ "capital": [
+ "Avarua"
+ ],
+ "altSpellings": [
+ "CK",
+ "K\u016bki '\u0100irani"
+ ],
+ "region": "Oceania",
+ "subregion": "Polynesia",
+ "languages": {
+ "eng": "English",
+ "rar": "Cook Islands M\u0101ori"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0632\u0631 \u0643\u0648\u0643",
+ "common": "\u062c\u0632\u0631 \u0643\u0648\u0643"
+ },
+ "bre": {
+ "official": "Inizi Cook",
+ "common": "Inizi Cook"
+ },
+ "ces": {
+ "official": "Cookovy ostrovy",
+ "common": "Cookovy ostrovy"
+ },
+ "deu": {
+ "official": "Cookinseln",
+ "common": "Cookinseln"
+ },
+ "est": {
+ "official": "Cooki saared",
+ "common": "Cooki saared"
+ },
+ "fin": {
+ "official": "Cookinsaaret",
+ "common": "Cookinsaaret"
+ },
+ "fra": {
+ "official": "\u00celes Cook",
+ "common": "\u00celes Cook"
+ },
+ "hrv": {
+ "official": "Cook Islands",
+ "common": "Cookovo Oto\u010dje"
+ },
+ "hun": {
+ "official": "Cook-szigetek",
+ "common": "Cook-szigetek"
+ },
+ "ita": {
+ "official": "Isole Cook",
+ "common": "Isole Cook"
+ },
+ "jpn": {
+ "official": "\u30af\u30c3\u30af\u8af8\u5cf6",
+ "common": "\u30af\u30c3\u30af\u8af8\u5cf6"
+ },
+ "kor": {
+ "official": "\ucfe1 \uc81c\ub3c4",
+ "common": "\ucfe1 \uc81c\ub3c4"
+ },
+ "nld": {
+ "official": "Cook eilanden",
+ "common": "Cookeilanden"
+ },
+ "per": {
+ "official": "\u062c\u0632\u0627\u06cc\u0631 \u06a9\u0648\u06a9",
+ "common": "\u062c\u0632\u0627\u06cc\u0631 \u06a9\u0648\u06a9"
+ },
+ "pol": {
+ "official": "Wyspy Cooka",
+ "common": "Wyspy Cooka"
+ },
+ "por": {
+ "official": "Ilhas Cook",
+ "common": "Ilhas Cook"
+ },
+ "rus": {
+ "official": "\u043e\u0441\u0442\u0440\u043e\u0432\u0430 \u041a\u0443\u043a\u0430",
+ "common": "\u041e\u0441\u0442\u0440\u043e\u0432\u0430 \u041a\u0443\u043a\u0430"
+ },
+ "slk": {
+ "official": "Cookove ostrovy",
+ "common": "Cookove ostrovy"
+ },
+ "spa": {
+ "official": "Islas Cook",
+ "common": "Islas Cook"
+ },
+ "srp": {
+ "official": "Kukova Ostrva",
+ "common": "Kukova Ostrva"
+ },
+ "swe": {
+ "official": "Cook\u00f6arna",
+ "common": "Cook\u00f6arna"
+ },
+ "tur": {
+ "official": "Cook Adalar\u0131",
+ "common": "Cook Adalar\u0131"
+ },
+ "urd": {
+ "official": "\u062c\u0632\u0627\u0626\u0631 \u06a9\u06a9",
+ "common": "\u062c\u0632\u0627\u0626\u0631 \u06a9\u06a9"
+ },
+ "zho": {
+ "official": "\u5e93\u514b\u7fa4\u5c9b",
+ "common": "\u5e93\u514b\u7fa4\u5c9b"
+ }
+ },
+ "latlng": [
+ -21.23333333,
+ -159.76666666
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 236,
+ "flag": "\ud83c\udde8\ud83c\uddf0",
+ "demonyms": {
+ "eng": {
+ "f": "Cook Islander",
+ "m": "Cook Islander"
+ },
+ "fra": {
+ "f": "Cookienne",
+ "m": "Cookien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Colombia",
+ "official": "Republic of Colombia",
+ "native": {
+ "spa": {
+ "official": "Rep\u00fablica de Colombia",
+ "common": "Colombia"
+ }
+ }
+ },
+ "tld": [
+ ".co"
+ ],
+ "cca2": "CO",
+ "ccn3": "170",
+ "cca3": "COL",
+ "cioc": "COL",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "COP": {
+ "name": "Colombian peso",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "7"
+ ]
+ },
+ "capital": [
+ "Bogot\u00e1"
+ ],
+ "altSpellings": [
+ "CO",
+ "Republic of Colombia",
+ "Rep\u00fablica de Colombia"
+ ],
+ "region": "Americas",
+ "subregion": "South America",
+ "languages": {
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0643\u0648\u0644\u0648\u0645\u0628\u064a\u0627",
+ "common": "\u0643\u0648\u0644\u0648\u0645\u0628\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Kolombia",
+ "common": "Kolombia"
+ },
+ "ces": {
+ "official": "Kolumbijsk\u00e1 republika",
+ "common": "Kolumbie"
+ },
+ "deu": {
+ "official": "Republik Kolumbien",
+ "common": "Kolumbien"
+ },
+ "est": {
+ "official": "Colombia Vabariik",
+ "common": "Colombia"
+ },
+ "fin": {
+ "official": "Kolumbian tasavalta",
+ "common": "Kolumbia"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Colombie",
+ "common": "Colombie"
+ },
+ "hrv": {
+ "official": "Republika Kolumbija",
+ "common": "Kolumbija"
+ },
+ "hun": {
+ "official": "Kolumbiai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Kolumbia"
+ },
+ "ita": {
+ "official": "Repubblica di Colombia",
+ "common": "Colombia"
+ },
+ "jpn": {
+ "official": "\u30b3\u30ed\u30f3\u30d3\u30a2\u5171\u548c\u56fd",
+ "common": "\u30b3\u30ed\u30f3\u30d3\u30a2"
+ },
+ "kor": {
+ "official": "\ucf5c\ub86c\ube44\uc544 \uacf5\ud654\uad6d",
+ "common": "\ucf5c\ub86c\ube44\uc544"
+ },
+ "nld": {
+ "official": "Republiek Colombia",
+ "common": "Colombia"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06a9\u0644\u0645\u0628\u06cc\u0627",
+ "common": "\u06a9\u0644\u0645\u0628\u06cc\u0627"
+ },
+ "pol": {
+ "official": "Republika Kolumbii",
+ "common": "Kolumbia"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Col\u00f4mbia",
+ "common": "Col\u00f4mbia"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u043b\u0443\u043c\u0431\u0438\u044f",
+ "common": "\u041a\u043e\u043b\u0443\u043c\u0431\u0438\u044f"
+ },
+ "slk": {
+ "official": "Kolumbijsk\u00e1 republika",
+ "common": "Kolumbia"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Colombia",
+ "common": "Colombia"
+ },
+ "srp": {
+ "official": "Republika Kolumbija",
+ "common": "Kolumbija"
+ },
+ "swe": {
+ "official": "Republiken Colombia",
+ "common": "Colombia"
+ },
+ "tur": {
+ "official": "Kolombiya Cumhuriyeti",
+ "common": "Kolombiya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06a9\u0648\u0644\u0645\u0628\u06cc\u0627",
+ "common": "\u06a9\u0648\u0644\u0645\u0628\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u54e5\u4f26\u6bd4\u4e9a\u5171\u548c\u56fd",
+ "common": "\u54e5\u4f26\u6bd4\u4e9a"
+ }
+ },
+ "latlng": [
+ 4,
+ -72
+ ],
+ "landlocked": false,
+ "borders": [
+ "BRA",
+ "ECU",
+ "PAN",
+ "PER",
+ "VEN"
+ ],
+ "area": 1141748,
+ "flag": "\ud83c\udde8\ud83c\uddf4",
+ "demonyms": {
+ "eng": {
+ "f": "Colombian",
+ "m": "Colombian"
+ },
+ "fra": {
+ "f": "Colombienne",
+ "m": "Colombien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Comoros",
+ "official": "Union of the Comoros",
+ "native": {
+ "ara": {
+ "official": "\u0627\u0644\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0642\u0645\u0631\u064a",
+ "common": "\u062c\u0632\u0631 \u0627\u0644\u0642\u0645\u0631"
+ },
+ "fra": {
+ "official": "Union des Comores",
+ "common": "Comores"
+ },
+ "zdj": {
+ "official": "Udzima wa Komori",
+ "common": "Komori"
+ }
+ }
+ },
+ "tld": [
+ ".km"
+ ],
+ "cca2": "KM",
+ "ccn3": "174",
+ "cca3": "COM",
+ "cioc": "COM",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "KMF": {
+ "name": "Comorian franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "69"
+ ]
+ },
+ "capital": [
+ "Moroni"
+ ],
+ "altSpellings": [
+ "KM",
+ "Union of the Comoros",
+ "Union des Comores",
+ "Udzima wa Komori",
+ "al-Itti\u1e25\u0101d al-Qumur\u012b"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "ara": "Arabic",
+ "fra": "French",
+ "zdj": "Comorian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u0625\u062a\u062d\u0627\u062f \u0627\u0644\u0642\u0645\u0631\u064a",
+ "common": "\u062c\u0632\u0631 \u0627\u0644\u0642\u0645\u0631"
+ },
+ "bre": {
+ "official": "Unaniezh Komorez",
+ "common": "Komorez"
+ },
+ "ces": {
+ "official": "Komorsk\u00fd svaz",
+ "common": "Komory"
+ },
+ "deu": {
+ "official": "Union der Komoren",
+ "common": "Komoren"
+ },
+ "est": {
+ "official": "Komoori Liit",
+ "common": "Komoorid"
+ },
+ "fin": {
+ "official": "Komorien liitto",
+ "common": "Komorit"
+ },
+ "fra": {
+ "official": "Union des Comores",
+ "common": "Comores"
+ },
+ "hrv": {
+ "official": "Savez Komori",
+ "common": "Komori"
+ },
+ "hun": {
+ "official": "Comore-szigeteki Uni\u00f3",
+ "common": "Comore-szigetek"
+ },
+ "ita": {
+ "official": "Unione delle Comore",
+ "common": "Comore"
+ },
+ "jpn": {
+ "official": "\u30b3\u30e2\u30ed\u9023\u5408",
+ "common": "\u30b3\u30e2\u30ed"
+ },
+ "kor": {
+ "official": "\ucf54\ubaa8\ub85c \uc5f0\ubc29",
+ "common": "\ucf54\ubaa8\ub85c"
+ },
+ "nld": {
+ "official": "Unie van de Comoren",
+ "common": "Comoren"
+ },
+ "per": {
+ "official": "\u0645\u062c\u0645\u0639\u200c\u0627\u0644\u062c\u0632\u0627\u06cc\u0631 \u0642\u0645\u0631",
+ "common": "\u0627\u062a\u062d\u0627\u062f \u0642\u064f\u0645\u064f\u0631"
+ },
+ "pol": {
+ "official": "Zwi\u0105zek Komor\u00f3w",
+ "common": "Komory"
+ },
+ "por": {
+ "official": "Uni\u00e3o das Comores",
+ "common": "Comores"
+ },
+ "rus": {
+ "official": "\u0421\u043e\u044e\u0437 \u041a\u043e\u043c\u043e\u0440\u0441\u043a\u0438\u0445 \u041e\u0441\u0442\u0440\u043e\u0432\u043e\u0432",
+ "common": "\u041a\u043e\u043c\u043e\u0440\u044b"
+ },
+ "slk": {
+ "official": "Komorsk\u00e1 \u00fania",
+ "common": "Komory"
+ },
+ "spa": {
+ "official": "Uni\u00f3n de las Comoras",
+ "common": "Comoras"
+ },
+ "srp": {
+ "official": "Unija Komora",
+ "common": "Komori"
+ },
+ "swe": {
+ "official": "Unionen Komorerna",
+ "common": "Komorerna"
+ },
+ "tur": {
+ "official": "Komorlar Birli\u011fi",
+ "common": "Komorlar"
+ },
+ "urd": {
+ "official": "\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0642\u0645\u0631\u06cc",
+ "common": "\u0627\u0644\u0642\u0645\u0631\u06cc"
+ },
+ "zho": {
+ "official": "\u79d1\u6469\u7f57\u8054\u76df",
+ "common": "\u79d1\u6469\u7f57"
+ }
+ },
+ "latlng": [
+ -12.16666666,
+ 44.25
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 1862,
+ "flag": "\ud83c\uddf0\ud83c\uddf2",
+ "demonyms": {
+ "eng": {
+ "f": "Comoran",
+ "m": "Comoran"
+ },
+ "fra": {
+ "f": "Comorienne",
+ "m": "Comorien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Cape Verde",
+ "official": "Republic of Cabo Verde",
+ "native": {
+ "por": {
+ "official": "Rep\u00fablica de Cabo Verde",
+ "common": "Cabo Verde"
+ }
+ }
+ },
+ "tld": [
+ ".cv"
+ ],
+ "cca2": "CV",
+ "ccn3": "132",
+ "cca3": "CPV",
+ "cioc": "CPV",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "CVE": {
+ "name": "Cape Verdean escudo",
+ "symbol": "Esc"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "38"
+ ]
+ },
+ "capital": [
+ "Praia"
+ ],
+ "altSpellings": [
+ "CV",
+ "Republic of Cabo Verde",
+ "Rep\u00fablica de Cabo Verde"
+ ],
+ "region": "Africa",
+ "subregion": "Western Africa",
+ "languages": {
+ "por": "Portuguese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0643\u0627\u0628\u0648 \u0641\u064a\u0631\u062f\u064a",
+ "common": "\u0643\u0627\u0628\u0648 \u0641\u064a\u0631\u062f\u064a"
+ },
+ "bre": {
+ "official": "Republik Kab Glas",
+ "common": "Kab Glas"
+ },
+ "ces": {
+ "official": "Kapverdsk\u00e1 republika",
+ "common": "Kapverdy"
+ },
+ "deu": {
+ "official": "Republik Cabo Verde",
+ "common": "Kap Verde"
+ },
+ "est": {
+ "official": "Cabo Verde Vabariik",
+ "common": "Roheneemesaared"
+ },
+ "fin": {
+ "official": "Kap Verden tasavalta",
+ "common": "Kap Verde"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Cap-Vert",
+ "common": "\u00celes du Cap-Vert"
+ },
+ "hrv": {
+ "official": "Republika Cabo Verde",
+ "common": "Zelenortska Republika"
+ },
+ "hun": {
+ "official": "Z\u00f6ld-foki K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Z\u00f6ld-foki K\u00f6zt\u00e1rsas\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica di Capo Verde",
+ "common": "Capo Verde"
+ },
+ "jpn": {
+ "official": "\u30ab\u30fc\u30dc\u30d9\u30eb\u30c7\u5171\u548c\u56fd",
+ "common": "\u30ab\u30fc\u30dc\u30d9\u30eb\u30c7"
+ },
+ "kor": {
+ "official": "\uce74\ubcf4\ubca0\ub974\ub370 \uacf5\ud654\uad6d",
+ "common": "\uce74\ubcf4\ubca0\ub974\ub370"
+ },
+ "nld": {
+ "official": "Republiek van Cabo Verde",
+ "common": "Kaapverdi\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06a9\u0628\u0648 \u0648\u0631\u062f",
+ "common": "\u062f\u0645\u0627\u063a\u0647\u0654 \u0633\u0628\u0632"
+ },
+ "pol": {
+ "official": "Republika Zielonego Przyl\u0105dka",
+ "common": "Republika Zielonego Przyl\u0105dka"
+ },
+ "por": {
+ "official": "Rep\u00fablica de Cabo Verde",
+ "common": "Cabo Verde"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u0430\u0431\u043e -\u0412\u0435\u0440\u0434\u0435",
+ "common": "\u041a\u0430\u0431\u043e-\u0412\u0435\u0440\u0434\u0435"
+ },
+ "slk": {
+ "official": "Kapverdsk\u00e1 republika",
+ "common": "Kapverdy"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Cabo Verde",
+ "common": "Cabo Verde"
+ },
+ "srp": {
+ "official": "Republika Zelenortska Ostrva",
+ "common": "Zelenortska Ostrva"
+ },
+ "swe": {
+ "official": "Republiken Kap Verde",
+ "common": "Kap Verde"
+ },
+ "tur": {
+ "official": "Ye\u015fil Burun Cumhuriyeti",
+ "common": "Ye\u015fil Burun"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06a9\u06cc\u067e \u0648\u0631\u0688\u06cc",
+ "common": "\u06a9\u06cc\u067e \u0648\u0631\u0688\u06cc"
+ },
+ "zho": {
+ "official": "\u4f5b\u5f97\u89d2\u5171\u548c\u56fd",
+ "common": "\u4f5b\u5f97\u89d2"
+ }
+ },
+ "latlng": [
+ 16,
+ -24
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 4033,
+ "flag": "\ud83c\udde8\ud83c\uddfb",
+ "demonyms": {
+ "eng": {
+ "f": "Cape Verdian",
+ "m": "Cape Verdian"
+ },
+ "fra": {
+ "f": "Cap-verdienne",
+ "m": "Cap-verdien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Costa Rica",
+ "official": "Republic of Costa Rica",
+ "native": {
+ "spa": {
+ "official": "Rep\u00fablica de Costa Rica",
+ "common": "Costa Rica"
+ }
+ }
+ },
+ "tld": [
+ ".cr"
+ ],
+ "cca2": "CR",
+ "ccn3": "188",
+ "cca3": "CRI",
+ "cioc": "CRC",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "CRC": {
+ "name": "Costa Rican col\u00f3n",
+ "symbol": "\u20a1"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "06"
+ ]
+ },
+ "capital": [
+ "San Jos\u00e9"
+ ],
+ "altSpellings": [
+ "CR",
+ "Republic of Costa Rica",
+ "Rep\u00fablica de Costa Rica"
+ ],
+ "region": "Americas",
+ "subregion": "Central America",
+ "languages": {
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0643\u0648\u0633\u062a\u0627\u0631\u064a\u0643\u0627",
+ "common": "\u0643\u0648\u0633\u062a\u0627\u0631\u064a\u0643\u0627"
+ },
+ "bre": {
+ "official": "Republik Costa Rica",
+ "common": "Costa Rica"
+ },
+ "ces": {
+ "official": "Kostarick\u00e1 republika",
+ "common": "Kostarika"
+ },
+ "deu": {
+ "official": "Republik Costa Rica",
+ "common": "Costa Rica"
+ },
+ "est": {
+ "official": "Costa Rica Vabariik",
+ "common": "Costa Rica"
+ },
+ "fin": {
+ "official": "Costa Rican tasavalta",
+ "common": "Costa Rica"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Costa Rica",
+ "common": "Costa Rica"
+ },
+ "hrv": {
+ "official": "Republika Kostarika",
+ "common": "Kostarika"
+ },
+ "hun": {
+ "official": "Costa Rica-i K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Costa Rica"
+ },
+ "ita": {
+ "official": "Repubblica di Costa Rica",
+ "common": "Costa Rica"
+ },
+ "jpn": {
+ "official": "\u30b3\u30b9\u30bf\u30ea\u30ab\u5171\u548c\u56fd",
+ "common": "\u30b3\u30b9\u30bf\u30ea\u30ab"
+ },
+ "kor": {
+ "official": "\ucf54\uc2a4\ud0c0\ub9ac\uce74 \uacf5\ud654\uad6d",
+ "common": "\ucf54\uc2a4\ud0c0\ub9ac\uce74"
+ },
+ "nld": {
+ "official": "Republiek Costa Rica",
+ "common": "Costa Rica"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06a9\u0627\u0633\u062a\u0627\u0631\u06cc\u06a9\u0627",
+ "common": "\u06a9\u0627\u0633\u062a\u0627\u0631\u06cc\u06a9\u0627"
+ },
+ "pol": {
+ "official": "Republika Kostaryki",
+ "common": "Kostaryka"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Costa Rica",
+ "common": "Costa Rica"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u0441\u0442\u0430-\u0420\u0438\u043a\u0430",
+ "common": "\u041a\u043e\u0441\u0442\u0430-\u0420\u0438\u043a\u0430"
+ },
+ "slk": {
+ "official": "Kostarick\u00e1 republika",
+ "common": "Kostarika"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Costa Rica",
+ "common": "Costa Rica"
+ },
+ "srp": {
+ "official": "Republika Kostarika",
+ "common": "Kostarika"
+ },
+ "swe": {
+ "official": "Republiken Costa Rica",
+ "common": "Costa Rica"
+ },
+ "tur": {
+ "official": "Kosta Rika Cumhuriyeti",
+ "common": "Kosta Rika"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06a9\u0648\u0633\u0679\u0627\u0631\u06cc\u06a9\u0627",
+ "common": "\u06a9\u0648\u0633\u0679\u0627\u0631\u06cc\u06a9\u0627"
+ },
+ "zho": {
+ "official": "\u54e5\u65af\u8fbe\u9ece\u52a0\u5171\u548c\u56fd",
+ "common": "\u54e5\u65af\u8fbe\u9ece\u52a0"
+ }
+ },
+ "latlng": [
+ 10,
+ -84
+ ],
+ "landlocked": false,
+ "borders": [
+ "NIC",
+ "PAN"
+ ],
+ "area": 51100,
+ "flag": "\ud83c\udde8\ud83c\uddf7",
+ "demonyms": {
+ "eng": {
+ "f": "Costa Rican",
+ "m": "Costa Rican"
+ },
+ "fra": {
+ "f": "Costaricaine",
+ "m": "Costaricain"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Cuba",
+ "official": "Republic of Cuba",
+ "native": {
+ "spa": {
+ "official": "Rep\u00fablica de Cuba",
+ "common": "Cuba"
+ }
+ }
+ },
+ "tld": [
+ ".cu"
+ ],
+ "cca2": "CU",
+ "ccn3": "192",
+ "cca3": "CUB",
+ "cioc": "CUB",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "CUC": {
+ "name": "Cuban convertible peso",
+ "symbol": "$"
+ },
+ "CUP": {
+ "name": "Cuban peso",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "3"
+ ]
+ },
+ "capital": [
+ "Havana"
+ ],
+ "altSpellings": [
+ "CU",
+ "Republic of Cuba",
+ "Rep\u00fablica de Cuba"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0643\u0648\u0628\u0627",
+ "common": "\u0643\u0648\u0628\u0627"
+ },
+ "bre": {
+ "official": "Republik Kuba",
+ "common": "Kuba"
+ },
+ "ces": {
+ "official": "Kub\u00e1nsk\u00e1 republika",
+ "common": "Kuba"
+ },
+ "deu": {
+ "official": "Republik Kuba",
+ "common": "Kuba"
+ },
+ "est": {
+ "official": "Kuuba Vabariik",
+ "common": "Kuuba"
+ },
+ "fin": {
+ "official": "Kuuban tasavalta",
+ "common": "Kuuba"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Cuba",
+ "common": "Cuba"
+ },
+ "hrv": {
+ "official": "Republika Kuba",
+ "common": "Kuba"
+ },
+ "hun": {
+ "official": "Kubai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Kuba"
+ },
+ "ita": {
+ "official": "Repubblica di Cuba",
+ "common": "Cuba"
+ },
+ "jpn": {
+ "official": "\u30ad\u30e5\u30fc\u30d0\u5171\u548c\u56fd",
+ "common": "\u30ad\u30e5\u30fc\u30d0"
+ },
+ "kor": {
+ "official": "\ucfe0\ubc14 \uacf5\ud654\uad6d",
+ "common": "\ucfe0\ubc14"
+ },
+ "nld": {
+ "official": "Republiek Cuba",
+ "common": "Cuba"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06a9\u0648\u0628\u0627",
+ "common": "\u06a9\u0648\u0628\u0627"
+ },
+ "pol": {
+ "official": "Republika Kuby",
+ "common": "Kuba"
+ },
+ "por": {
+ "official": "Rep\u00fablica de Cuba",
+ "common": "Cuba"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u0443\u0431\u0430",
+ "common": "\u041a\u0443\u0431\u0430"
+ },
+ "slk": {
+ "official": "Kub\u00e1nska republika",
+ "common": "Kuba"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Cuba",
+ "common": "Cuba"
+ },
+ "srp": {
+ "official": "Republika Kuba",
+ "common": "Kuba"
+ },
+ "swe": {
+ "official": "Republiken Kuba",
+ "common": "Kuba"
+ },
+ "tur": {
+ "official": "K\u00fcba Cumhuriyeti",
+ "common": "K\u00fcba"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06a9\u06cc\u0648\u0628\u0627",
+ "common": "\u06a9\u06cc\u0648\u0628\u0627"
+ },
+ "zho": {
+ "official": "\u53e4\u5df4\u5171\u548c\u56fd",
+ "common": "\u53e4\u5df4"
+ }
+ },
+ "latlng": [
+ 21.5,
+ -80
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 109884,
+ "flag": "\ud83c\udde8\ud83c\uddfa",
+ "demonyms": {
+ "eng": {
+ "f": "Cuban",
+ "m": "Cuban"
+ },
+ "fra": {
+ "f": "Cubaine",
+ "m": "Cubain"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Cura\u00e7ao",
+ "official": "Country of Cura\u00e7ao",
+ "native": {
+ "eng": {
+ "official": "Country of Cura\u00e7ao",
+ "common": "Cura\u00e7ao"
+ },
+ "nld": {
+ "official": "Land Cura\u00e7ao",
+ "common": "Cura\u00e7ao"
+ },
+ "pap": {
+ "official": "Pais K\u00f2rsou",
+ "common": "Pais K\u00f2rsou"
+ }
+ }
+ },
+ "tld": [
+ ".cw"
+ ],
+ "cca2": "CW",
+ "ccn3": "531",
+ "cca3": "CUW",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "ANG": {
+ "name": "Netherlands Antillean guilder",
+ "symbol": "\u0192"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "99"
+ ]
+ },
+ "capital": [
+ "Willemstad"
+ ],
+ "altSpellings": [
+ "CW",
+ "Curacao",
+ "K\u00f2rsou",
+ "Country of Cura\u00e7ao",
+ "Land Cura\u00e7ao",
+ "Pais K\u00f2rsou"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English",
+ "nld": "Dutch",
+ "pap": "Papiamento"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062f\u0648\u0644\u0629 \u0643\u0648\u0631\u0627\u0633\u0627\u0648",
+ "common": "\u0643\u0648\u0631\u0627\u0633\u0627\u0648"
+ },
+ "bre": {
+ "official": "Bro Curaçao",
+ "common": "Curaçao"
+ },
+ "ces": {
+ "official": "Autonomn\u00ed zem\u011b Cura\u00e7ao",
+ "common": "Cura\u00e7ao"
+ },
+ "deu": {
+ "official": "Land Cura\u00e7ao",
+ "common": "Cura\u00e7ao"
+ },
+ "est": {
+ "official": "Cura\u00e7ao",
+ "common": "Cura\u00e7ao"
+ },
+ "fin": {
+ "official": "Cura\u00e7ao",
+ "common": "Cura\u00e7ao"
+ },
+ "fra": {
+ "official": "Pays de Cura\u00e7ao",
+ "common": "Cura\u00e7ao"
+ },
+ "hrv": {
+ "official": "Cura\u00e7ao",
+ "common": "Cura\u00e7ao"
+ },
+ "hun": {
+ "official": "Cura\u00e7ao",
+ "common": "Cura\u00e7ao"
+ },
+ "ita": {
+ "official": "Paese di Cura\u00e7ao",
+ "common": "Cura\u00e7ao"
+ },
+ "jpn": {
+ "official": "\u30ad\u30e5\u30e9\u30bd\u30fc",
+ "common": "\u30ad\u30e5\u30e9\u30bd\u30fc"
+ },
+ "kor": {
+ "official": "\ud034\ub77c\uc18c",
+ "common": "\ud034\ub77c\uc18c"
+ },
+ "nld": {
+ "official": "Land Cura\u00e7ao",
+ "common": "Cura\u00e7ao"
+ },
+ "per": {
+ "official": "\u06a9\u0648\u0631\u0627\u0633\u0627\u0626\u0648",
+ "common": "\u06a9\u0648\u0631\u0627\u0633\u0627\u0626\u0648"
+ },
+ "pol": {
+ "official": "Cura\u00e7ao",
+ "common": "Cura\u00e7ao"
+ },
+ "por": {
+ "official": "Pa\u00eds de Cura\u00e7ao",
+ "common": "ilha da Cura\u00e7\u00e3o"
+ },
+ "rus": {
+ "official": "\u0421\u0442\u0440\u0430\u043d\u0430 \u041a\u044e\u0440\u0430\u0441\u0430\u043e",
+ "common": "\u041a\u044e\u0440\u0430\u0441\u0430\u043e"
+ },
+ "slk": {
+ "official": "Curacao",
+ "common": "Curacao"
+ },
+ "spa": {
+ "official": "Pa\u00eds de Curazao",
+ "common": "Curazao"
+ },
+ "srp": {
+ "official": "Dr\u017eava Kurasao",
+ "common": "Kurasao"
+ },
+ "swe": {
+ "official": "Cura\u00e7ao",
+ "common": "Cura\u00e7ao"
+ },
+ "tur": {
+ "official": "Cura\u00e7ao",
+ "common": "Cura\u00e7ao"
+ },
+ "urd": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a\u0650 \u06a9\u06cc\u0648\u0631\u0627\u0633\u0627\u0624",
+ "common": "\u06a9\u06cc\u0648\u0631\u0627\u0633\u0627\u0624"
+ },
+ "zho": {
+ "official": "\u5e93\u62c9\u7d22",
+ "common": "\u5e93\u62c9\u7d22"
+ }
+ },
+ "latlng": [
+ 12.116667,
+ -68.933333
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 444,
+ "flag": "\ud83c\udde8\ud83c\uddfc",
+ "demonyms": {
+ "eng": {
+ "f": "Cura\u00e7aoan",
+ "m": "Cura\u00e7aoan"
+ },
+ "fra": {
+ "f": "Curacienne",
+ "m": "Curacien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Christmas Island",
+ "official": "Territory of Christmas Island",
+ "native": {
+ "eng": {
+ "official": "Territory of Christmas Island",
+ "common": "Christmas Island"
+ }
+ }
+ },
+ "tld": [
+ ".cx"
+ ],
+ "cca2": "CX",
+ "ccn3": "162",
+ "cca3": "CXR",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "AUD": {
+ "name": "Australian dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "1"
+ ]
+ },
+ "capital": [
+ "Flying Fish Cove"
+ ],
+ "altSpellings": [
+ "CX",
+ "Territory of Christmas Island"
+ ],
+ "region": "Oceania",
+ "subregion": "Australia and New Zealand",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0632\u064a\u0631\u0629 \u0643\u0631\u064a\u0633\u0645\u0627\u0633",
+ "common": "\u062c\u0632\u064a\u0631\u0629 \u0643\u0631\u064a\u0633\u0645\u0627\u0633"
+ },
+ "bre": {
+ "official": "Tiriad Enez Christmas",
+ "common": "Enez Christmas"
+ },
+ "ces": {
+ "official": "Teritorium V\u00e1no\u010dn\u00edho ostrova",
+ "common": "V\u00e1no\u010dn\u00ed ostrov"
+ },
+ "deu": {
+ "official": "Gebiet der Weihnachtsinsel",
+ "common": "Weihnachtsinsel"
+ },
+ "est": {
+ "official": "J\u00f5ulusaare ala",
+ "common": "J\u00f5ulusaar"
+ },
+ "fin": {
+ "official": "Joulusaaren alue",
+ "common": "Joulusaari"
+ },
+ "fra": {
+ "official": "Territoire de l'\u00eele Christmas",
+ "common": "\u00cele Christmas"
+ },
+ "hrv": {
+ "official": "Teritorij Bo\u017ei\u0107ni otok",
+ "common": "Bo\u017ei\u0107ni otok"
+ },
+ "hun": {
+ "official": "Kar\u00e1csony-sziget",
+ "common": "Kar\u00e1csony-sziget"
+ },
+ "ita": {
+ "official": "Territorio di Christmas Island",
+ "common": "Isola di Natale"
+ },
+ "jpn": {
+ "official": "\u30af\u30ea\u30b9\u30de\u30b9\u5cf6",
+ "common": "\u30af\u30ea\u30b9\u30de\u30b9\u5cf6"
+ },
+ "kor": {
+ "official": "\ud06c\ub9ac\uc2a4\ub9c8\uc2a4 \uc12c",
+ "common": "\ud06c\ub9ac\uc2a4\ub9c8\uc2a4 \uc12c"
+ },
+ "nld": {
+ "official": "Grondgebied van Christmas Island",
+ "common": "Christmaseiland"
+ },
+ "per": {
+ "official": "\u062c\u0632\u06cc\u0631\u0647\u0654 \u06a9\u0631\u06cc\u0633\u0645\u0633",
+ "common": "\u062c\u0632\u06cc\u0631\u0647\u0654 \u06a9\u0631\u06cc\u0633\u0645\u0633"
+ },
+ "pol": {
+ "official": "Wyspa Bo\u017cego Narodzenia",
+ "common": "Wyspa Bo\u017cego Narodzenia"
+ },
+ "por": {
+ "official": "Territ\u00f3rio da Ilha Christmas",
+ "common": "Ilha do Natal"
+ },
+ "rus": {
+ "official": "\u0422\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u043e\u0441\u0442\u0440\u043e\u0432\u0430 \u0420\u043e\u0436\u0434\u0435\u0441\u0442\u0432\u0430",
+ "common": "\u041e\u0441\u0442\u0440\u043e\u0432 \u0420\u043e\u0436\u0434\u0435\u0441\u0442\u0432\u0430"
+ },
+ "slk": {
+ "official": "Terit\u00f3rium Viano\u010dn\u00e9ho ostrova",
+ "common": "Viano\u010dn\u00fa ostrov"
+ },
+ "spa": {
+ "official": "Territorio de la Isla de Navidad",
+ "common": "Isla de Navidad"
+ },
+ "srp": {
+ "official": "Teritorija Bo\u017ei\u0107no ostrvo",
+ "common": "Bo\u017ei\u0107no Ostrvo"
+ },
+ "swe": {
+ "official": "Jul\u00f6n",
+ "common": "Jul\u00f6n"
+ },
+ "tur": {
+ "official": "Christmas Adas\u0131",
+ "common": "Christmas Adas\u0131"
+ },
+ "urd": {
+ "official": "\u0631\u06cc\u0627\u0633\u062a\u0650 \u062c\u0632\u06cc\u0631\u06c1 \u06a9\u0631\u0633\u0645\u0633",
+ "common": "\u062c\u0632\u06cc\u0631\u06c1 \u06a9\u0631\u0633\u0645\u0633"
+ },
+ "zho": {
+ "official": "\u5723\u8bde\u5c9b",
+ "common": "\u5723\u8bde\u5c9b"
+ }
+ },
+ "latlng": [
+ -10.5,
+ 105.66666666
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 135,
+ "flag": "\ud83c\udde8\ud83c\uddfd",
+ "demonyms": {
+ "eng": {
+ "f": "Christmas Islander",
+ "m": "Christmas Islander"
+ },
+ "fra": {
+ "f": "",
+ "m": ""
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Cayman Islands",
+ "official": "Cayman Islands",
+ "native": {
+ "eng": {
+ "official": "Cayman Islands",
+ "common": "Cayman Islands"
+ }
+ }
+ },
+ "tld": [
+ ".ky"
+ ],
+ "cca2": "KY",
+ "ccn3": "136",
+ "cca3": "CYM",
+ "cioc": "CAY",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "KYD": {
+ "name": "Cayman Islands dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "345"
+ ]
+ },
+ "capital": [
+ "George Town"
+ ],
+ "altSpellings": [
+ "KY"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0632\u0631 \u0643\u0627\u064a\u0645\u0627\u0646",
+ "common": "\u062c\u0632\u0631 \u0643\u0627\u064a\u0645\u0627\u0646"
+ },
+ "bre": {
+ "official": "Inizi Cayman",
+ "common": "Inizi Cayman"
+ },
+ "ces": {
+ "official": "Kajmansk\u00e9 ostrovy",
+ "common": "Kajmansk\u00e9 ostrovy"
+ },
+ "deu": {
+ "official": "Cayman-Inseln",
+ "common": "Kaimaninseln"
+ },
+ "est": {
+ "official": "Kaimanisaared",
+ "common": "Kaimanisaared"
+ },
+ "fin": {
+ "official": "Caymansaaret",
+ "common": "Caymansaaret"
+ },
+ "fra": {
+ "official": "\u00celes Ca\u00efmans",
+ "common": "\u00celes Ca\u00efmans"
+ },
+ "hrv": {
+ "official": "Kajmanski otoci",
+ "common": "Kajmanski otoci"
+ },
+ "hun": {
+ "official": "Kajm\u00e1n-szigetek",
+ "common": "Kajm\u00e1n-szigetek"
+ },
+ "ita": {
+ "official": "Isole Cayman",
+ "common": "Isole Cayman"
+ },
+ "jpn": {
+ "official": "\u30b1\u30a4\u30de\u30f3\u8af8\u5cf6",
+ "common": "\u30b1\u30a4\u30de\u30f3\u8af8\u5cf6"
+ },
+ "kor": {
+ "official": "\ucf00\uc774\ub9e8 \uc81c\ub3c4",
+ "common": "\ucf00\uc774\ub9e8 \uc81c\ub3c4"
+ },
+ "nld": {
+ "official": "Caymaneilanden",
+ "common": "Caymaneilanden"
+ },
+ "per": {
+ "official": "\u062c\u0632\u0627\u06cc\u0631 \u06a9\u06cc\u0645\u0646",
+ "common": "\u062c\u0632\u0627\u06cc\u0631 \u06a9\u06cc\u0645\u0646"
+ },
+ "pol": {
+ "official": "Kajmany",
+ "common": "Kajmany"
+ },
+ "por": {
+ "official": "Ilhas Cayman",
+ "common": "Ilhas Caim\u00e3o"
+ },
+ "rus": {
+ "official": "\u041a\u0430\u0439\u043c\u0430\u043d\u043e\u0432\u044b \u043e\u0441\u0442\u0440\u043e\u0432\u0430",
+ "common": "\u041a\u0430\u0439\u043c\u0430\u043d\u043e\u0432\u044b \u043e\u0441\u0442\u0440\u043e\u0432\u0430"
+ },
+ "slk": {
+ "official": "Kajmanie ostrovy",
+ "common": "Kajmanie ostrovy"
+ },
+ "spa": {
+ "official": "Islas Caim\u00e1n",
+ "common": "Islas Caim\u00e1n"
+ },
+ "srp": {
+ "official": "Kajmanska Ostrva",
+ "common": "Kajmanska Ostrva"
+ },
+ "swe": {
+ "official": "Cayman\u00f6arna",
+ "common": "Cayman\u00f6arna"
+ },
+ "tur": {
+ "official": "Cayman Adalar\u0131",
+ "common": "Cayman Adalar\u0131"
+ },
+ "urd": {
+ "official": "\u062c\u0632\u0627\u0626\u0631 \u06a9\u06cc\u0645\u06cc\u0646",
+ "common": "\u062c\u0632\u0627\u0626\u0631 \u06a9\u06cc\u0645\u06cc\u0646"
+ },
+ "zho": {
+ "official": "\u5f00\u66fc\u7fa4\u5c9b",
+ "common": "\u5f00\u66fc\u7fa4\u5c9b"
+ }
+ },
+ "latlng": [
+ 19.5,
+ -80.5
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 264,
+ "flag": "\ud83c\uddf0\ud83c\uddfe",
+ "demonyms": {
+ "eng": {
+ "f": "Caymanian",
+ "m": "Caymanian"
+ },
+ "fra": {
+ "f": "Ca\u00efmanienne",
+ "m": "Ca\u00efmanien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Cyprus",
+ "official": "Republic of Cyprus",
+ "native": {
+ "ell": {
+ "official": "\u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1 \u03c4\u03b7\u03c2 \u039a\u03cd\u03c0\u03c1\u03bf\u03c2",
+ "common": "\u039a\u03cd\u03c0\u03c1\u03bf\u03c2"
+ },
+ "tur": {
+ "official": "K\u0131br\u0131s Cumhuriyeti",
+ "common": "K\u0131br\u0131s"
+ }
+ }
+ },
+ "tld": [
+ ".cy"
+ ],
+ "cca2": "CY",
+ "ccn3": "196",
+ "cca3": "CYP",
+ "cioc": "CYP",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "57"
+ ]
+ },
+ "capital": [
+ "Nicosia"
+ ],
+ "altSpellings": [
+ "CY",
+ "K\u00fdpros",
+ "K\u0131br\u0131s",
+ "Republic of Cyprus",
+ "\u039a\u03c5\u03c0\u03c1\u03b9\u03b1\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1",
+ "K\u0131br\u0131s Cumhuriyeti"
+ ],
+ "region": "Europe",
+ "subregion": "Southern Europe",
+ "languages": {
+ "ell": "Greek",
+ "tur": "Turkish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0642\u0628\u0631\u0635",
+ "common": "\u0642\u0628\u0631\u0635"
+ },
+ "bre": {
+ "official": "Republik Kiprenez",
+ "common": "Kiprenez"
+ },
+ "ces": {
+ "official": "Kypersk\u00e1 republika",
+ "common": "Kypr"
+ },
+ "deu": {
+ "official": "Republik Zypern",
+ "common": "Zypern"
+ },
+ "est": {
+ "official": "K\u00fcprose Vabariik",
+ "common": "K\u00fcpros"
+ },
+ "fin": {
+ "official": "Kyproksen tasavalta",
+ "common": "Kypros"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Chypre",
+ "common": "Chypre"
+ },
+ "hrv": {
+ "official": "Republika Cipar",
+ "common": "Cipar"
+ },
+ "hun": {
+ "official": "Ciprusi K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Ciprus"
+ },
+ "ita": {
+ "official": "Repubblica di Cipro",
+ "common": "Cipro"
+ },
+ "jpn": {
+ "official": "\u30ad\u30d7\u30ed\u30b9\u5171\u548c\u56fd",
+ "common": "\u30ad\u30d7\u30ed\u30b9"
+ },
+ "kor": {
+ "official": "\ud0a4\ud504\ub85c\uc2a4 \uacf5\ud654\uad6d",
+ "common": "\ud0a4\ud504\ub85c\uc2a4"
+ },
+ "nld": {
+ "official": "Republiek Cyprus",
+ "common": "Cyprus"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0642\u0628\u0631\u0633",
+ "common": "\u0642\u0650\u0628\u0631\u0650\u0633"
+ },
+ "pol": {
+ "official": "Republika Cypryjska",
+ "common": "Cypr"
+ },
+ "por": {
+ "official": "Rep\u00fablica de Chipre",
+ "common": "Chipre"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u0438\u043f\u0440",
+ "common": "\u041a\u0438\u043f\u0440"
+ },
+ "slk": {
+ "official": "Cypersk\u00e1 republika",
+ "common": "Cyprus"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Chipre",
+ "common": "Chipre"
+ },
+ "srp": {
+ "official": "Republika Kipar",
+ "common": "Kipar"
+ },
+ "swe": {
+ "official": "Republiken Cypern",
+ "common": "Cypern"
+ },
+ "tur": {
+ "official": "K\u0131br\u0131s Cumhuriyeti",
+ "common": "K\u0131br\u0131s"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0642\u0628\u0631\u0635",
+ "common": "\u0642\u0628\u0631\u0635"
+ },
+ "zho": {
+ "official": "\u585e\u6d66\u8def\u65af\u5171\u548c\u56fd",
+ "common": "\u585e\u6d66\u8def\u65af"
+ }
+ },
+ "latlng": [
+ 35,
+ 33
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 9251,
+ "flag": "\ud83c\udde8\ud83c\uddfe",
+ "demonyms": {
+ "eng": {
+ "f": "Cypriot",
+ "m": "Cypriot"
+ },
+ "fra": {
+ "f": "Chypriote",
+ "m": "Chypriote"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Czechia",
+ "official": "Czech Republic",
+ "native": {
+ "ces": {
+ "official": "\u010cesk\u00e1 republika",
+ "common": "\u010cesko"
+ },
+ "slk": {
+ "official": "\u010cesk\u00e1 republika",
+ "common": "\u010cesko"
+ }
+ }
+ },
+ "tld": [
+ ".cz"
+ ],
+ "cca2": "CZ",
+ "ccn3": "203",
+ "cca3": "CZE",
+ "cioc": "CZE",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "CZK": {
+ "name": "Czech koruna",
+ "symbol": "K\u010d"
+ }
+ },
+ "idd": {
+ "root": "+4",
+ "suffixes": [
+ "20"
+ ]
+ },
+ "capital": [
+ "Prague"
+ ],
+ "altSpellings": [
+ "CZ",
+ "\u010cesk\u00e1 republika",
+ "\u010cesko"
+ ],
+ "region": "Europe",
+ "subregion": "Central Europe",
+ "languages": {
+ "ces": "Czech",
+ "slk": "Slovak"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u062a\u0634\u064a\u0643",
+ "common": "\u0627\u0644\u062a\u0634\u064a\u0643"
+ },
+ "bre": {
+ "official": "Republik Tchek",
+ "common": "Tchekia"
+ },
+ "ces": {
+ "official": "\u010cesk\u00e1 republika",
+ "common": "\u010cesko"
+ },
+ "deu": {
+ "official": "Tschechische Republik",
+ "common": "Tschechien"
+ },
+ "est": {
+ "official": "T\u0161ehhi Vabariik",
+ "common": "T\u0161ehhi"
+ },
+ "fin": {
+ "official": "T\u0161ekin tasavalta",
+ "common": "T\u0161ekki"
+ },
+ "fra": {
+ "official": "R\u00e9publique tch\u00e8que",
+ "common": "Tch\u00e9quie"
+ },
+ "hrv": {
+ "official": "\u010ce\u0161ka",
+ "common": "\u010ce\u0161ka"
+ },
+ "hun": {
+ "official": "Cseh K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Csehorsz\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica Ceca",
+ "common": "Cechia"
+ },
+ "jpn": {
+ "official": "\u30c1\u30a7\u30b3\u5171\u548c\u56fd",
+ "common": "\u30c1\u30a7\u30b3"
+ },
+ "kor": {
+ "official": "\uccb4\ucf54",
+ "common": "\uccb4\ucf54"
+ },
+ "nld": {
+ "official": "Tsjechische Republiek",
+ "common": "Tsjechi\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0686\u06a9",
+ "common": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0686\u06a9"
+ },
+ "pol": {
+ "official": "Republika Czeska",
+ "common": "Czechy"
+ },
+ "por": {
+ "official": "Rep\u00fablica Checa",
+ "common": "Ch\u00e9quia"
+ },
+ "rus": {
+ "official": "\u0427\u0435\u0448\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0427\u0435\u0445\u0438\u044f"
+ },
+ "slk": {
+ "official": "\u010cesk\u00e1 republika",
+ "common": "\u010cesko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Checa",
+ "common": "Chequia"
+ },
+ "srp": {
+ "official": "\u010ce\u0161ka Republika",
+ "common": "\u010ce\u0161ka"
+ },
+ "swe": {
+ "official": "Republiken Tjeckien",
+ "common": "Tjeckien"
+ },
+ "tur": {
+ "official": "\u00e7ek Cumhuriyeti",
+ "common": "\u00e7ekya"
+ },
+ "urd": {
+ "official": "\u0686\u064a\u06a9 \u062c\u0645\u06c1\u0648\u0631\u064a\u06c1",
+ "common": "\u0686\u064a\u06a9"
+ },
+ "zho": {
+ "official": "\u6377\u514b\u5171\u548c\u56fd",
+ "common": "\u6377\u514b"
+ }
+ },
+ "latlng": [
+ 49.75,
+ 15.5
+ ],
+ "landlocked": true,
+ "borders": [
+ "AUT",
+ "DEU",
+ "POL",
+ "SVK"
+ ],
+ "area": 78865,
+ "flag": "\ud83c\udde8\ud83c\uddff",
+ "demonyms": {
+ "eng": {
+ "f": "Czech",
+ "m": "Czech"
+ },
+ "fra": {
+ "f": "Tch\u00e8que",
+ "m": "Tch\u00e8que"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Germany",
+ "official": "Federal Republic of Germany",
+ "native": {
+ "deu": {
+ "official": "Bundesrepublik Deutschland",
+ "common": "Deutschland"
+ }
+ }
+ },
+ "tld": [
+ ".de"
+ ],
+ "cca2": "DE",
+ "ccn3": "276",
+ "cca3": "DEU",
+ "cioc": "GER",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+4",
+ "suffixes": [
+ "9"
+ ]
+ },
+ "capital": [
+ "Berlin"
+ ],
+ "altSpellings": [
+ "DE",
+ "Federal Republic of Germany",
+ "Bundesrepublik Deutschland"
+ ],
+ "region": "Europe",
+ "subregion": "Western Europe",
+ "languages": {
+ "deu": "German"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0623\u0644\u0645\u0627\u0646\u064a\u0627 \u0627\u0644\u0627\u062a\u062d\u0627\u062f\u064a\u0629",
+ "common": "\u0623\u0644\u0645\u0627\u0646\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Kevreadel Alamagn",
+ "common": "Alamagn"
+ },
+ "ces": {
+ "official": "Spolkov\u00e1 republika N\u011bmecko",
+ "common": "N\u011bmecko"
+ },
+ "deu": {
+ "official": "Bundesrepublik Deutschland",
+ "common": "Deutschland"
+ },
+ "est": {
+ "official": "Saksamaa Liitvabariik",
+ "common": "Saksamaa"
+ },
+ "fin": {
+ "official": "Saksan liittotasavalta",
+ "common": "Saksa"
+ },
+ "fra": {
+ "official": "R\u00e9publique f\u00e9d\u00e9rale d'Allemagne",
+ "common": "Allemagne"
+ },
+ "hrv": {
+ "official": "Njema\u010dka Federativna Republika",
+ "common": "Njema\u010dka"
+ },
+ "hun": {
+ "official": "N\u00e9met Sz\u00f6vets\u00e9gi K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "N\u00e9metorsz\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica federale di Germania",
+ "common": "Germania"
+ },
+ "jpn": {
+ "official": "\u30c9\u30a4\u30c4\u9023\u90a6\u5171\u548c\u56fd",
+ "common": "\u30c9\u30a4\u30c4"
+ },
+ "kor": {
+ "official": "\ub3c5\uc77c \uc5f0\ubc29 \uacf5\ud654\uad6d",
+ "common": "\ub3c5\uc77c"
+ },
+ "nld": {
+ "official": "Bondsrepubliek Duitsland",
+ "common": "Duitsland"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0641\u062f\u0631\u0627\u0644 \u0622\u0644\u0645\u0627\u0646",
+ "common": "\u0622\u0644\u0645\u0627\u0646"
+ },
+ "pol": {
+ "official": "Republika Federalna Niemiec",
+ "common": "Niemcy"
+ },
+ "por": {
+ "official": "Rep\u00fablica Federal da Alemanha",
+ "common": "Alemanha"
+ },
+ "rus": {
+ "official": "\u0424\u0435\u0434\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0413\u0435\u0440\u043c\u0430\u043d\u0438\u044f",
+ "common": "\u0413\u0435\u0440\u043c\u0430\u043d\u0438\u044f"
+ },
+ "slk": {
+ "official": "Nemeck\u00e1 spolkov\u00e1 republika",
+ "common": "Nemecko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Federal de Alemania",
+ "common": "Alemania"
+ },
+ "srp": {
+ "official": "Savezna Republika Nema\u010dka",
+ "common": "Nema\u010dka"
+ },
+ "swe": {
+ "official": "F\u00f6rbundsrepubliken Tyskland",
+ "common": "Tyskland"
+ },
+ "tur": {
+ "official": "Almanya Federal Cumhuriyeti",
+ "common": "Almanya"
+ },
+ "urd": {
+ "official": "\u0648\u0641\u0627\u0642\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u062c\u0631\u0645\u0646\u06cc",
+ "common": "\u062c\u0631\u0645\u0646\u06cc"
+ },
+ "zho": {
+ "official": "\u5fb7\u610f\u5fd7\u8054\u90a6\u5171\u548c\u56fd",
+ "common": "\u5fb7\u56fd"
+ }
+ },
+ "latlng": [
+ 51,
+ 9
+ ],
+ "landlocked": false,
+ "borders": [
+ "AUT",
+ "BEL",
+ "CZE",
+ "DNK",
+ "FRA",
+ "LUX",
+ "NLD",
+ "POL",
+ "CHE"
+ ],
+ "area": 357114,
+ "flag": "\ud83c\udde9\ud83c\uddea",
+ "demonyms": {
+ "eng": {
+ "f": "German",
+ "m": "German"
+ },
+ "fra": {
+ "f": "Allemande",
+ "m": "Allemand"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Djibouti",
+ "official": "Republic of Djibouti",
+ "native": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u062c\u064a\u0628\u0648\u062a\u064a",
+ "common": "\u062c\u064a\u0628\u0648\u062a\u064a"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Djibouti",
+ "common": "Djibouti"
+ }
+ }
+ },
+ "tld": [
+ ".dj"
+ ],
+ "cca2": "DJ",
+ "ccn3": "262",
+ "cca3": "DJI",
+ "cioc": "DJI",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "DJF": {
+ "name": "Djiboutian franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "53"
+ ]
+ },
+ "capital": [
+ "Djibouti"
+ ],
+ "altSpellings": [
+ "DJ",
+ "Jabuuti",
+ "Gabuuti",
+ "Republic of Djibouti",
+ "R\u00e9publique de Djibouti",
+ "Gabuutih Ummuuno",
+ "Jamhuuriyadda Jabuuti"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "ara": "Arabic",
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u062c\u064a\u0628\u0648\u062a\u064a",
+ "common": "\u062c\u064a\u0628\u0648\u062a\u064a"
+ },
+ "bre": {
+ "official": "Republik Djibouti",
+ "common": "Djibouti"
+ },
+ "ces": {
+ "official": "D\u017eibutsk\u00e1 republika",
+ "common": "D\u017eibutsko"
+ },
+ "deu": {
+ "official": "Republik Dschibuti",
+ "common": "Dschibuti"
+ },
+ "est": {
+ "official": "Djibouti Vabariik",
+ "common": "Djibouti"
+ },
+ "fin": {
+ "official": "Dijiboutin tasavalta",
+ "common": "Dijibouti"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Djibouti",
+ "common": "Djibouti"
+ },
+ "hrv": {
+ "official": "Republika D\u017eibuti",
+ "common": "D\u017eibuti"
+ },
+ "hun": {
+ "official": "Dzsibuti K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Dzsibuti"
+ },
+ "ita": {
+ "official": "Repubblica di Gibuti",
+ "common": "Gibuti"
+ },
+ "jpn": {
+ "official": "\u30b8\u30d6\u30c1\u5171\u548c\u56fd",
+ "common": "\u30b8\u30d6\u30c1"
+ },
+ "kor": {
+ "official": "\uc9c0\ubd80\ud2f0 \uacf5\ud654\uad6d",
+ "common": "\uc9c0\ubd80\ud2f0"
+ },
+ "nld": {
+ "official": "Republiek Djibouti",
+ "common": "Djibouti"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062c\u06cc\u0628\u0648\u062a\u06cc",
+ "common": "\u062c\u06cc\u0628\u0648\u062a\u06cc"
+ },
+ "pol": {
+ "official": "Republika D\u017cibuti",
+ "common": "D\u017cibuti"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Djibouti",
+ "common": "Djibouti"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0414\u0436\u0438\u0431\u0443\u0442\u0438",
+ "common": "\u0414\u0436\u0438\u0431\u0443\u0442\u0438"
+ },
+ "slk": {
+ "official": "\u01c5ibutsk\u00e1 republika",
+ "common": "\u01c5ibutsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Djibouti",
+ "common": "Djibouti"
+ },
+ "srp": {
+ "official": "Republika D\u017eibuti",
+ "common": "D\u017eibuti"
+ },
+ "swe": {
+ "official": "Republiken Djibouti",
+ "common": "Djibouti"
+ },
+ "tur": {
+ "official": "Cibuti Cumhuriyeti",
+ "common": "Cibuti"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u062c\u0628\u0648\u062a\u06cc",
+ "common": "\u062c\u0628\u0648\u062a\u06cc"
+ },
+ "zho": {
+ "official": "\u5409\u5e03\u63d0\u5171\u548c\u56fd",
+ "common": "\u5409\u5e03\u63d0"
+ }
+ },
+ "latlng": [
+ 11.5,
+ 43
+ ],
+ "landlocked": false,
+ "borders": [
+ "ERI",
+ "ETH",
+ "SOM"
+ ],
+ "area": 23200,
+ "flag": "\ud83c\udde9\ud83c\uddef",
+ "demonyms": {
+ "eng": {
+ "f": "Djibouti",
+ "m": "Djibouti"
+ },
+ "fra": {
+ "f": "Djiboutienne",
+ "m": "Djiboutien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Dominica",
+ "official": "Commonwealth of Dominica",
+ "native": {
+ "eng": {
+ "official": "Commonwealth of Dominica",
+ "common": "Dominica"
+ }
+ }
+ },
+ "tld": [
+ ".dm"
+ ],
+ "cca2": "DM",
+ "ccn3": "212",
+ "cca3": "DMA",
+ "cioc": "DMA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "XCD": {
+ "name": "Eastern Caribbean dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "767"
+ ]
+ },
+ "capital": [
+ "Roseau"
+ ],
+ "altSpellings": [
+ "DM",
+ "Dominique",
+ "Wai\u2018tu kubuli",
+ "Commonwealth of Dominica"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0643\u0648\u0645\u0648\u0646\u0648\u0644\u062b \u062f\u0648\u0645\u064a\u0646\u064a\u0643\u0627",
+ "common": "\u062f\u0648\u0645\u064a\u0646\u064a\u0643\u0627"
+ },
+ "bre": {
+ "official": "Kenglad Dominika",
+ "common": "Dominika"
+ },
+ "ces": {
+ "official": "Dominik\u00e1nsk\u00e9 spole\u010denstv\u00ed",
+ "common": "Dominika"
+ },
+ "deu": {
+ "official": "Commonwealth von Dominica",
+ "common": "Dominica"
+ },
+ "est": {
+ "official": "Dominica \u00dchendus",
+ "common": "Dominica"
+ },
+ "fin": {
+ "official": "Dominican liittovaltio",
+ "common": "Dominica"
+ },
+ "fra": {
+ "official": "Commonwealth de la Dominique",
+ "common": "Dominique"
+ },
+ "hrv": {
+ "official": "Zajednica Dominika",
+ "common": "Dominika"
+ },
+ "hun": {
+ "official": "Dominikai K\u00f6z\u00f6ss\u00e9g",
+ "common": "Dominikai K\u00f6z\u00f6ss\u00e9g"
+ },
+ "ita": {
+ "official": "Commonwealth di Dominica",
+ "common": "Dominica"
+ },
+ "jpn": {
+ "official": "\u30c9\u30df\u30cb\u30ab\u56fd",
+ "common": "\u30c9\u30df\u30cb\u30ab\u56fd"
+ },
+ "kor": {
+ "official": "\ub3c4\ubbf8\ub2c8\uce74 \uacf5\ud654\uad6d",
+ "common": "\ub3c4\ubbf8\ub2c8\uce74 \uacf5\ud654\uad6d"
+ },
+ "nld": {
+ "official": "Gemenebest Dominica",
+ "common": "Dominica"
+ },
+ "per": {
+ "official": "\u0642\u0644\u0645\u0631\u0648 \u0647\u0645\u0633\u0648\u062f \u062f\u0648\u0645\u06cc\u0646\u06cc\u06a9\u0627",
+ "common": "\u062f\u0648\u0645\u06cc\u0646\u06cc\u06a9\u0627"
+ },
+ "pol": {
+ "official": "Wsp\u00f3lnota Dominiki",
+ "common": "Dominika"
+ },
+ "por": {
+ "official": "Comunidade da Dominica",
+ "common": "Dominica"
+ },
+ "rus": {
+ "official": "\u0421\u043e\u0434\u0440\u0443\u0436\u0435\u0441\u0442\u0432\u043e \u0414\u043e\u043c\u0438\u043d\u0438\u043a\u0438",
+ "common": "\u0414\u043e\u043c\u0438\u043d\u0438\u043a\u0430"
+ },
+ "slk": {
+ "official": "Dominick\u00e9 spolo\u010denstvo",
+ "common": "Dominika"
+ },
+ "spa": {
+ "official": "Mancomunidad de Dominica",
+ "common": "Dominica"
+ },
+ "srp": {
+ "official": "Komonvelt Dominika",
+ "common": "Dominika"
+ },
+ "swe": {
+ "official": "Samv\u00e4ldet Dominica",
+ "common": "Dominica"
+ },
+ "tur": {
+ "official": "Dominika Toplulu\u011fu",
+ "common": "Dominika"
+ },
+ "urd": {
+ "official": "\u062f\u0648\u0644\u062a\u0650 \u0645\u0634\u062a\u0631\u06a9\u06c1 \u0688\u0648\u0645\u06cc\u0646\u06cc\u06a9\u0627",
+ "common": "\u0688\u0648\u0645\u06cc\u0646\u06cc\u06a9\u0627"
+ },
+ "zho": {
+ "official": "\u591a\u7c73\u5c3c\u52a0\u5171\u548c\u56fd",
+ "common": "\u591a\u7c73\u5c3c\u52a0"
+ }
+ },
+ "latlng": [
+ 15.41666666,
+ -61.33333333
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 751,
+ "flag": "\ud83c\udde9\ud83c\uddf2",
+ "demonyms": {
+ "eng": {
+ "f": "Dominican",
+ "m": "Dominican"
+ },
+ "fra": {
+ "f": "Dominiquaise",
+ "m": "Dominiquais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Denmark",
+ "official": "Kingdom of Denmark",
+ "native": {
+ "dan": {
+ "official": "Kongeriget Danmark",
+ "common": "Danmark"
+ }
+ }
+ },
+ "tld": [
+ ".dk"
+ ],
+ "cca2": "DK",
+ "ccn3": "208",
+ "cca3": "DNK",
+ "cioc": "DEN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "DKK": {
+ "name": "Danish krone",
+ "symbol": "kr"
+ }
+ },
+ "idd": {
+ "root": "+4",
+ "suffixes": [
+ "5"
+ ]
+ },
+ "capital": [
+ "Copenhagen"
+ ],
+ "altSpellings": [
+ "DK",
+ "Danmark",
+ "Kingdom of Denmark",
+ "Kongeriget Danmark"
+ ],
+ "region": "Europe",
+ "subregion": "Northern Europe",
+ "languages": {
+ "dan": "Danish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u062f\u0646\u0645\u0627\u0631\u0643",
+ "common": "\u0627\u0644\u062f\u0646\u0645\u0627\u0631\u0643"
+ },
+ "bre": {
+ "official": "Rouantelezh Danmark",
+ "common": "Danmark"
+ },
+ "ces": {
+ "official": "D\u00e1nsk\u00e9 kr\u00e1lovstv\u00ed",
+ "common": "D\u00e1nsko"
+ },
+ "deu": {
+ "official": "K\u00f6nigreich D\u00e4nemark",
+ "common": "D\u00e4nemark"
+ },
+ "est": {
+ "official": "Taani Kuningriik",
+ "common": "Taani"
+ },
+ "fin": {
+ "official": "Tanskan kuningaskunta",
+ "common": "Tanska"
+ },
+ "fra": {
+ "official": "Royaume du Danemark",
+ "common": "Danemark"
+ },
+ "hrv": {
+ "official": "Kraljevina Danska",
+ "common": "Danska"
+ },
+ "hun": {
+ "official": "D\u00e1n Kir\u00e1lys\u00e1g",
+ "common": "D\u00e1nia"
+ },
+ "ita": {
+ "official": "Regno di Danimarca",
+ "common": "Danimarca"
+ },
+ "jpn": {
+ "official": "\u30c7\u30f3\u30de\u30fc\u30af\u738b\u56fd",
+ "common": "\u30c7\u30f3\u30de\u30fc\u30af"
+ },
+ "kor": {
+ "official": "\ub374\ub9c8\ud06c \uc655\uad6d",
+ "common": "\ub374\ub9c8\ud06c"
+ },
+ "nld": {
+ "official": "Koninkrijk Denemarken",
+ "common": "Denemarken"
+ },
+ "per": {
+ "official": "\u067e\u0627\u062f\u0634\u0627\u0647\u06cc \u062f\u0627\u0646\u0645\u0627\u0631\u06a9",
+ "common": "\u062f\u0627\u0646\u0645\u0627\u0631\u06a9"
+ },
+ "pol": {
+ "official": "Kr\u00f3lestwo Danii",
+ "common": "Dania"
+ },
+ "por": {
+ "official": "Reino da Dinamarca",
+ "common": "Dinamarca"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u0440\u043e\u043b\u0435\u0432\u0441\u0442\u0432\u043e \u0414\u0430\u043d\u0438\u044f",
+ "common": "\u0414\u0430\u043d\u0438\u044f"
+ },
+ "slk": {
+ "official": "D\u00e1nske kr\u00e1\u013eovstvo",
+ "common": "D\u00e1nsko"
+ },
+ "spa": {
+ "official": "Reino de Dinamarca",
+ "common": "Dinamarca"
+ },
+ "srp": {
+ "official": "Kraljevina Danska",
+ "common": "Danska"
+ },
+ "swe": {
+ "official": "Konungariket Danmark",
+ "common": "Danmark"
+ },
+ "tur": {
+ "official": "Danimarka Krall\u0131\u011f\u0131",
+ "common": "Danimarka"
+ },
+ "urd": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a\u0650 \u0688\u0646\u0645\u0627\u0631\u06a9",
+ "common": "\u0688\u0646\u0645\u0627\u0631\u06a9"
+ },
+ "zho": {
+ "official": "\u4e39\u9ea6\u738b\u56fd",
+ "common": "\u4e39\u9ea6"
+ }
+ },
+ "latlng": [
+ 56,
+ 10
+ ],
+ "landlocked": false,
+ "borders": [
+ "DEU"
+ ],
+ "area": 43094,
+ "flag": "\ud83c\udde9\ud83c\uddf0",
+ "demonyms": {
+ "eng": {
+ "f": "Danish",
+ "m": "Danish"
+ },
+ "fra": {
+ "f": "Danoise",
+ "m": "Danois"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Dominican Republic",
+ "official": "Dominican Republic",
+ "native": {
+ "spa": {
+ "official": "Rep\u00fablica Dominicana",
+ "common": "Rep\u00fablica Dominicana"
+ }
+ }
+ },
+ "tld": [
+ ".do"
+ ],
+ "cca2": "DO",
+ "ccn3": "214",
+ "cca3": "DOM",
+ "cioc": "DOM",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "DOP": {
+ "name": "Dominican peso",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "809",
+ "829",
+ "849"
+ ]
+ },
+ "capital": [
+ "Santo Domingo"
+ ],
+ "altSpellings": [
+ "DO"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u062f\u0648\u0645\u064a\u0646\u064a\u0643\u0627\u0646",
+ "common": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u062f\u0648\u0645\u064a\u0646\u064a\u0643\u0627\u0646"
+ },
+ "bre": {
+ "official": "Republik Dominikan",
+ "common": "Republik Dominikan"
+ },
+ "ces": {
+ "official": "Dominik\u00e1nsk\u00e1 republika",
+ "common": "Dominik\u00e1nsk\u00e1 republika"
+ },
+ "deu": {
+ "official": "Dominikanische Republik",
+ "common": "Dominikanische Republik"
+ },
+ "est": {
+ "official": "Dominikaani Vabariik",
+ "common": "Dominikaani Vabariik"
+ },
+ "fin": {
+ "official": "Dominikaaninen tasavalta",
+ "common": "Dominikaaninen tasavalta"
+ },
+ "fra": {
+ "official": "R\u00e9publique Dominicaine",
+ "common": "R\u00e9publique dominicaine"
+ },
+ "hrv": {
+ "official": "Dominikanska Republika",
+ "common": "Dominikanska Republika"
+ },
+ "hun": {
+ "official": "Dominikai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Dominikai K\u00f6zt\u00e1rsas\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica Dominicana",
+ "common": "Repubblica Dominicana"
+ },
+ "jpn": {
+ "official": "\u30c9\u30df\u30cb\u30ab\u5171\u548c\u56fd",
+ "common": "\u30c9\u30df\u30cb\u30ab\u5171\u548c\u56fd"
+ },
+ "kor": {
+ "official": "\ub3c4\ubbf8\ub2c8\uce74 \uacf5\ud654\uad6d",
+ "common": "\ub3c4\ubbf8\ub2c8\uce74 \uacf5\ud654\uad6d"
+ },
+ "nld": {
+ "official": "Dominicaanse Republiek",
+ "common": "Dominicaanse Republiek"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062f\u0648\u0645\u06cc\u0646\u06cc\u06a9\u0646",
+ "common": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062f\u0648\u0645\u06cc\u0646\u06cc\u06a9\u0646"
+ },
+ "pol": {
+ "official": "Republika Dominika\u0144ska",
+ "common": "Dominikana"
+ },
+ "por": {
+ "official": "Rep\u00fablica Dominicana",
+ "common": "Rep\u00fablica Dominicana"
+ },
+ "rus": {
+ "official": "\u0414\u043e\u043c\u0438\u043d\u0438\u043a\u0430\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0414\u043e\u043c\u0438\u043d\u0438\u043a\u0430\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430"
+ },
+ "slk": {
+ "official": "Dominik\u00e1nska republika",
+ "common": "Dominik\u00e1nska republika"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Dominicana",
+ "common": "Rep\u00fablica Dominicana"
+ },
+ "srp": {
+ "official": "Dominikanska Republika",
+ "common": "Dominikanska Republika"
+ },
+ "swe": {
+ "official": "Dominikanska republiken",
+ "common": "Dominikanska republiken"
+ },
+ "tur": {
+ "official": "Dominik Cumhuriyeti",
+ "common": "Dominik Cumhuriyeti"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0688\u0648\u0645\u06cc\u0646\u06cc\u06a9\u0646",
+ "common": "\u0688\u0648\u0645\u06cc\u0646\u06cc\u06a9\u0646"
+ },
+ "zho": {
+ "official": "\u591a\u660e\u5c3c\u52a0\u5171\u548c\u56fd",
+ "common": "\u591a\u660e\u5c3c\u52a0"
+ }
+ },
+ "latlng": [
+ 19,
+ -70.66666666
+ ],
+ "landlocked": false,
+ "borders": [
+ "HTI"
+ ],
+ "area": 48671,
+ "flag": "\ud83c\udde9\ud83c\uddf4",
+ "demonyms": {
+ "eng": {
+ "f": "Dominican",
+ "m": "Dominican"
+ },
+ "fra": {
+ "f": "Dominicaine",
+ "m": "Dominicain"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Algeria",
+ "official": "People's Democratic Republic of Algeria",
+ "native": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u062f\u064a\u0645\u0642\u0631\u0627\u0637\u064a\u0629 \u0627\u0644\u0634\u0639\u0628\u064a\u0629 \u0627\u0644\u062c\u0632\u0627\u0626\u0631\u064a\u0629",
+ "common": "\u0627\u0644\u062c\u0632\u0627\u0626\u0631"
+ }
+ }
+ },
+ "tld": [
+ ".dz",
+ "\u0627\u0644\u062c\u0632\u0627\u0626\u0631."
+ ],
+ "cca2": "DZ",
+ "ccn3": "012",
+ "cca3": "DZA",
+ "cioc": "ALG",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "DZD": {
+ "name": "Algerian dinar",
+ "symbol": "\u062f.\u062c"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "13"
+ ]
+ },
+ "capital": [
+ "Algiers"
+ ],
+ "altSpellings": [
+ "DZ",
+ "Dzayer",
+ "Alg\u00e9rie"
+ ],
+ "region": "Africa",
+ "subregion": "Northern Africa",
+ "languages": {
+ "ara": "Arabic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u062f\u064a\u0645\u0642\u0631\u0627\u0637\u064a\u0629 \u0627\u0644\u0634\u0639\u0628\u064a\u0629 \u0627\u0644\u062c\u0632\u0627\u0626\u0631\u064a\u0629",
+ "common": "\u0627\u0644\u062c\u0632\u0627\u0626\u0631"
+ },
+ "bre": {
+ "official": "Republik Aljerian Demokratel ha Poblel",
+ "common": "Aljeria"
+ },
+ "ces": {
+ "official": "Al\u017e\u00edrsk\u00e1 demokratick\u00e1 a lidov\u00e1 republika",
+ "common": "Al\u017e\u00edrsko"
+ },
+ "deu": {
+ "official": "Demokratische Volksrepublik Algerien",
+ "common": "Algerien"
+ },
+ "est": {
+ "official": "Al\u017eeeria Demokraatlik Rahvavabariik",
+ "common": "Al\u017eeeria"
+ },
+ "fin": {
+ "official": "Algerian demokraattinen kansantasavalta",
+ "common": "Algeria"
+ },
+ "fra": {
+ "official": "R\u00e9publique d\u00e9mocratique et populaire d'Alg\u00e9rie",
+ "common": "Alg\u00e9rie"
+ },
+ "hrv": {
+ "official": "Narodna Demokratska Republika Al\u017eir",
+ "common": "Al\u017eir"
+ },
+ "hun": {
+ "official": "Alg\u00e9riai N\u00e9pi Demokratikus K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Alg\u00e9ria"
+ },
+ "ita": {
+ "official": "Repubblica popolare democratica di Algeria",
+ "common": "Algeria"
+ },
+ "jpn": {
+ "official": "\u30a2\u30eb\u30b8\u30a7\u30ea\u30a2\u4eba\u6c11\u6c11\u4e3b\u5171\u548c\u56fd",
+ "common": "\u30a2\u30eb\u30b8\u30a7\u30ea\u30a2"
+ },
+ "kor": {
+ "official": "\uc54c\uc81c\ub9ac \uc778\ubbfc \ubbfc\uc8fc \uacf5\ud654\uad6d",
+ "common": "\uc54c\uc81c\ub9ac"
+ },
+ "nld": {
+ "official": "Democratische Volksrepubliek Algerije",
+ "common": "Algerije"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062f\u0645\u0648\u06a9\u0631\u0627\u062a\u06cc\u06a9 \u062e\u0644\u0642 \u0627\u0644\u062c\u0632\u0627\u06cc\u0631",
+ "common": "\u0627\u0644\u062c\u0632\u0627\u06cc\u0631"
+ },
+ "pol": {
+ "official": "Algierska Republika Ludowo-Demokratyczna",
+ "common": "Algieria"
+ },
+ "por": {
+ "official": "Rep\u00fablica Argelina Democr\u00e1tica e Popular",
+ "common": "Arg\u00e9lia"
+ },
+ "rus": {
+ "official": "\u041d\u0430\u0440\u043e\u0434\u043d\u043e-\u0414\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0410\u043b\u0436\u0438\u0440",
+ "common": "\u0410\u043b\u0436\u0438\u0440"
+ },
+ "slk": {
+ "official": "Al\u017e\u00edrska demokratick\u00e1 \u013eudov\u00e1 republika",
+ "common": "Al\u017e\u00edrsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Argelina Democr\u00e1tica y Popular",
+ "common": "Argelia"
+ },
+ "srp": {
+ "official": "Narodna Demokratska Republika Al\u017eir",
+ "common": "Al\u017eir"
+ },
+ "swe": {
+ "official": "Demokratiska folkrepubliken Algeriet",
+ "common": "Algeriet"
+ },
+ "tur": {
+ "official": "Cezayir Demokratik Halk Cumhuriyeti",
+ "common": "Cezayir"
+ },
+ "urd": {
+ "official": "\u0639\u0648\u0627\u0645\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0627\u0644\u062c\u0632\u0627\u0626\u0631",
+ "common": "\u0627\u0644\u062c\u0632\u0627\u0626\u0631"
+ },
+ "zho": {
+ "official": "\u963f\u5c14\u53ca\u5229\u4e9a\u4eba\u6c11\u6c11\u4e3b\u5171\u548c\u56fd",
+ "common": "\u963f\u5c14\u53ca\u5229\u4e9a"
+ }
+ },
+ "latlng": [
+ 28,
+ 3
+ ],
+ "landlocked": false,
+ "borders": [
+ "TUN",
+ "LBY",
+ "NER",
+ "ESH",
+ "MRT",
+ "MLI",
+ "MAR"
+ ],
+ "area": 2381741,
+ "flag": "\ud83c\udde9\ud83c\uddff",
+ "demonyms": {
+ "eng": {
+ "f": "Algerian",
+ "m": "Algerian"
+ },
+ "fra": {
+ "f": "Alg\u00e9rienne",
+ "m": "Alg\u00e9rien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Ecuador",
+ "official": "Republic of Ecuador",
+ "native": {
+ "spa": {
+ "official": "Rep\u00fablica del Ecuador",
+ "common": "Ecuador"
+ }
+ }
+ },
+ "tld": [
+ ".ec"
+ ],
+ "cca2": "EC",
+ "ccn3": "218",
+ "cca3": "ECU",
+ "cioc": "ECU",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "93"
+ ]
+ },
+ "capital": [
+ "Quito"
+ ],
+ "altSpellings": [
+ "EC",
+ "Republic of Ecuador",
+ "Rep\u00fablica del Ecuador"
+ ],
+ "region": "Americas",
+ "subregion": "South America",
+ "languages": {
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0625\u0643\u0648\u0627\u062f\u0648\u0631",
+ "common": "\u0627\u0644\u0625\u0643\u0648\u0627\u062f\u0648\u0631"
+ },
+ "bre": {
+ "official": "Republik Ecuador",
+ "common": "Ecuador"
+ },
+ "ces": {
+ "official": "Ekv\u00e1dorsk\u00e1 republika",
+ "common": "Ekv\u00e1dor"
+ },
+ "deu": {
+ "official": "Republik Ecuador",
+ "common": "Ecuador"
+ },
+ "est": {
+ "official": "Ecuadori Vabariik",
+ "common": "Ecuador"
+ },
+ "fin": {
+ "official": "Ecuadorin tasavalta",
+ "common": "Ecuador"
+ },
+ "fra": {
+ "official": "R\u00e9publique de l'\u00c9quateur",
+ "common": "\u00c9quateur"
+ },
+ "hrv": {
+ "official": "Republika Ekvador",
+ "common": "Ekvador"
+ },
+ "hun": {
+ "official": "Ecuadori K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Ecuador"
+ },
+ "ita": {
+ "official": "Repubblica dell'Ecuador",
+ "common": "Ecuador"
+ },
+ "jpn": {
+ "official": "\u30a8\u30af\u30a2\u30c9\u30eb\u5171\u548c\u56fd",
+ "common": "\u30a8\u30af\u30a2\u30c9\u30eb"
+ },
+ "kor": {
+ "official": "\uc5d0\ucf70\ub3c4\ub974 \uacf5\ud654\uad6d",
+ "common": "\uc5d0\ucf70\ub3c4\ub974"
+ },
+ "nld": {
+ "official": "Republiek Ecuador",
+ "common": "Ecuador"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u06a9\u0648\u0627\u062f\u0648\u0631",
+ "common": "\u0627\u06a9\u0648\u0627\u062f\u0648\u0631"
+ },
+ "pol": {
+ "official": "Ekwador",
+ "common": "Ekwador"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Equador",
+ "common": "Equador"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u042d\u043a\u0432\u0430\u0434\u043e\u0440",
+ "common": "\u042d\u043a\u0432\u0430\u0434\u043e\u0440"
+ },
+ "slk": {
+ "official": "Ekv\u00e1dorsk\u00e1 republika",
+ "common": "Ekv\u00e1dor"
+ },
+ "spa": {
+ "official": "Rep\u00fablica del Ecuador",
+ "common": "Ecuador"
+ },
+ "srp": {
+ "official": "Republika Ekvador",
+ "common": "Ekvador"
+ },
+ "swe": {
+ "official": "Republiken Ecuador",
+ "common": "Ecuador"
+ },
+ "tur": {
+ "official": "Ekvador Cumhuriyeti",
+ "common": "Ekvador"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0627\u06cc\u06a9\u0648\u0688\u0648\u0631",
+ "common": "\u0627\u06cc\u06a9\u0648\u0627\u0688\u0648\u0631"
+ },
+ "zho": {
+ "official": "\u5384\u74dc\u591a\u5c14\u5171\u548c\u56fd",
+ "common": "\u5384\u74dc\u591a\u5c14"
+ }
+ },
+ "latlng": [
+ -2,
+ -77.5
+ ],
+ "landlocked": false,
+ "borders": [
+ "COL",
+ "PER"
+ ],
+ "area": 276841,
+ "flag": "\ud83c\uddea\ud83c\udde8",
+ "demonyms": {
+ "eng": {
+ "f": "Ecuadorean",
+ "m": "Ecuadorean"
+ },
+ "fra": {
+ "f": "\u00c9quatorienne",
+ "m": "\u00c9quatorien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Egypt",
+ "official": "Arab Republic of Egypt",
+ "native": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0645\u0635\u0631 \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
+ "common": "\u0645\u0635\u0631"
+ }
+ }
+ },
+ "tld": [
+ ".eg",
+ ".\u0645\u0635\u0631"
+ ],
+ "cca2": "EG",
+ "ccn3": "818",
+ "cca3": "EGY",
+ "cioc": "EGY",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "EGP": {
+ "name": "Egyptian pound",
+ "symbol": "\u00a3"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "0"
+ ]
+ },
+ "capital": [
+ "Cairo"
+ ],
+ "altSpellings": [
+ "EG",
+ "Arab Republic of Egypt"
+ ],
+ "region": "Africa",
+ "subregion": "Northern Africa",
+ "languages": {
+ "ara": "Arabic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0645\u0635\u0631 \u0627\u0644\u0639\u0631\u0628\u064a\u0629",
+ "common": "\u0645\u0635\u0631"
+ },
+ "bre": {
+ "official": "Republik arab Egipt",
+ "common": "Egipt"
+ },
+ "ces": {
+ "official": "Egyptsk\u00e1 arabsk\u00e1 republika",
+ "common": "Egypt"
+ },
+ "deu": {
+ "official": "Arabische Republik \u00c4gypten",
+ "common": "\u00c4gypten"
+ },
+ "est": {
+ "official": "Egiptuse Araabia Vabariik",
+ "common": "Egiptus"
+ },
+ "fin": {
+ "official": "Egyptin arabitasavalta",
+ "common": "Egypti"
+ },
+ "fra": {
+ "official": "R\u00e9publique arabe d'\u00c9gypte",
+ "common": "\u00c9gypte"
+ },
+ "hrv": {
+ "official": "Arapska Republika Egipat",
+ "common": "Egipat"
+ },
+ "hun": {
+ "official": "Egyiptomi Arab K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Egyiptom"
+ },
+ "ita": {
+ "official": "Repubblica araba d'Egitto",
+ "common": "Egitto"
+ },
+ "jpn": {
+ "official": "\u30a8\u30b8\u30d7\u30c8\u30fb\u30a2\u30e9\u30d6\u5171\u548c\u56fd",
+ "common": "\u30a8\u30b8\u30d7\u30c8"
+ },
+ "kor": {
+ "official": "\uc774\uc9d1\ud2b8 \uc544\ub78d \uacf5\ud654\uad6d",
+ "common": "\uc774\uc9d1\ud2b8"
+ },
+ "nld": {
+ "official": "Arabische Republiek Egypte",
+ "common": "Egypte"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0639\u0631\u0628\u06cc \u0645\u0635\u0631",
+ "common": "\u0645\u0635\u0631"
+ },
+ "pol": {
+ "official": "Arabska Republika Egiptu",
+ "common": "Egipt"
+ },
+ "por": {
+ "official": "Rep\u00fablica \u00c1rabe do Egipto",
+ "common": "Egito"
+ },
+ "rus": {
+ "official": "\u0410\u0440\u0430\u0431\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0415\u0433\u0438\u043f\u0435\u0442",
+ "common": "\u0415\u0433\u0438\u043f\u0435\u0442"
+ },
+ "slk": {
+ "official": "Egyptsk\u00e1 arabsk\u00e1 republika",
+ "common": "Egypt"
+ },
+ "spa": {
+ "official": "Rep\u00fablica \u00c1rabe de Egipto",
+ "common": "Egipto"
+ },
+ "srp": {
+ "official": "Arapska Republika Egipat",
+ "common": "Egipat"
+ },
+ "swe": {
+ "official": "Arabrepubliken Egypten",
+ "common": "Egypten"
+ },
+ "tur": {
+ "official": "M\u0131s\u0131r Arap Cumhuriyeti",
+ "common": "M\u0131s\u0131r"
+ },
+ "urd": {
+ "official": "\u0645\u0635\u0631\u06cc \u0639\u0631\u0628 \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1",
+ "common": "\u0645\u0635\u0631"
+ },
+ "zho": {
+ "official": "\u963f\u62c9\u4f2f\u57c3\u53ca\u5171\u548c\u56fd",
+ "common": "\u57c3\u53ca"
+ }
+ },
+ "latlng": [
+ 27,
+ 30
+ ],
+ "landlocked": false,
+ "borders": [
+ "ISR",
+ "LBY",
+ "PSE",
+ "SDN"
+ ],
+ "area": 1002450,
+ "flag": "\ud83c\uddea\ud83c\uddec",
+ "demonyms": {
+ "eng": {
+ "f": "Egyptian",
+ "m": "Egyptian"
+ },
+ "fra": {
+ "f": "\u00c9gyptienne",
+ "m": "\u00c9gyptien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Eritrea",
+ "official": "State of Eritrea",
+ "native": {
+ "ara": {
+ "official": "\u062f\u0648\u0644\u0629 \u0625\u0631\u064a\u062a\u0631\u064a\u0627",
+ "common": "\u0625\u0631\u064a\u062a\u0631\u064a\u0627"
+ },
+ "eng": {
+ "official": "State of Eritrea",
+ "common": "Eritrea"
+ },
+ "tir": {
+ "official": "\u1203\u1308\u1228 \u12a4\u122d\u1275\u122b",
+ "common": "\u12a4\u122d\u1275\u122b"
+ }
+ }
+ },
+ "tld": [
+ ".er"
+ ],
+ "cca2": "ER",
+ "ccn3": "232",
+ "cca3": "ERI",
+ "cioc": "ERI",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "ERN": {
+ "name": "Eritrean nakfa",
+ "symbol": "Nfk"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "91"
+ ]
+ },
+ "capital": [
+ "Asmara"
+ ],
+ "altSpellings": [
+ "ER",
+ "State of Eritrea",
+ "\u1203\u1308\u1228 \u12a4\u122d\u1275\u122b",
+ "Dawlat Iritriy\u00e1",
+ "\u02beErtr\u0101",
+ "Iritriy\u0101"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "ara": "Arabic",
+ "eng": "English",
+ "tir": "Tigrinya"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062f\u0648\u0644\u0629 \u0625\u0631\u064a\u062a\u0631\u064a\u0627",
+ "common": "\u0625\u0631\u064a\u062a\u0631\u064a\u0627"
+ },
+ "bre": {
+ "official": "Stad Eritrea",
+ "common": "Eritrea"
+ },
+ "ces": {
+ "official": "St\u00e1t Eritrea",
+ "common": "Eritrea"
+ },
+ "deu": {
+ "official": "Staat Eritrea",
+ "common": "Eritrea"
+ },
+ "est": {
+ "official": "Eritrea Riik",
+ "common": "Eritrea"
+ },
+ "fin": {
+ "official": "Eritrean valtio",
+ "common": "Eritrea"
+ },
+ "fra": {
+ "official": "\u00c9tat d'\u00c9rythr\u00e9e",
+ "common": "\u00c9rythr\u00e9e"
+ },
+ "hrv": {
+ "official": "Dr\u017eava Eritreji",
+ "common": "Eritreja"
+ },
+ "hun": {
+ "official": "Eritrea",
+ "common": "Eritrea"
+ },
+ "ita": {
+ "official": "Stato di Eritrea",
+ "common": "Eritrea"
+ },
+ "jpn": {
+ "official": "\u30a8\u30ea\u30c8\u30ea\u30a2\u56fd",
+ "common": "\u30a8\u30ea\u30c8\u30ea\u30a2"
+ },
+ "kor": {
+ "official": "\uc5d0\ub9ac\ud2b8\ub808\uc544\uad6d",
+ "common": "\uc5d0\ub9ac\ud2b8\ub808\uc544"
+ },
+ "nld": {
+ "official": "Staat Eritrea",
+ "common": "Eritrea"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0631\u06cc\u062a\u0631\u0647",
+ "common": "\u0627\u0631\u06cc\u062a\u0631\u0647"
+ },
+ "pol": {
+ "official": "Pa\u0144stwo Erytrea",
+ "common": "Erytrea"
+ },
+ "por": {
+ "official": "Estado da Eritreia",
+ "common": "Eritreia"
+ },
+ "rus": {
+ "official": "\u0413\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u043e \u042d\u0440\u0438\u0442\u0440\u0435\u044f",
+ "common": "\u042d\u0440\u0438\u0442\u0440\u0435\u044f"
+ },
+ "slk": {
+ "official": "Eritrejsk\u00fd \u0161t\u00e1t",
+ "common": "Eritrea"
+ },
+ "spa": {
+ "official": "Estado de Eritrea",
+ "common": "Eritrea"
+ },
+ "srp": {
+ "official": "Dr\u017eava Eritreja",
+ "common": "Eritreja"
+ },
+ "swe": {
+ "official": "Staten Eritrea",
+ "common": "Eritrea"
+ },
+ "tur": {
+ "official": "Eritre Devleti",
+ "common": "Eritre"
+ },
+ "urd": {
+ "official": "\u0631\u06cc\u0627\u0633\u062a\u0650 \u0627\u0631\u062a\u0631\u06cc\u0627",
+ "common": "\u0627\u0631\u062a\u0631\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u5384\u7acb\u7279\u91cc\u4e9a",
+ "common": "\u5384\u7acb\u7279\u91cc\u4e9a"
+ }
+ },
+ "latlng": [
+ 15,
+ 39
+ ],
+ "landlocked": false,
+ "borders": [
+ "DJI",
+ "ETH",
+ "SDN"
+ ],
+ "area": 117600,
+ "flag": "\ud83c\uddea\ud83c\uddf7",
+ "demonyms": {
+ "eng": {
+ "f": "Eritrean",
+ "m": "Eritrean"
+ },
+ "fra": {
+ "f": "\u00c9rythr\u00e9enne",
+ "m": "\u00c9rythr\u00e9en"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Western Sahara",
+ "official": "Sahrawi Arab Democratic Republic",
+ "native": {
+ "ber": {
+ "official": "Sahrawi Arab Democratic Republic",
+ "common": "Western Sahara"
+ },
+ "mey": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0635\u062d\u0631\u0627\u0648\u064a\u0629 \u0627\u0644\u062f\u064a\u0645\u0642\u0631\u0627\u0637\u064a\u0629",
+ "common": "\u0627\u0644\u0635\u062d\u0631\u0627\u0621 \u0627\u0644\u063a\u0631\u0628\u064a\u0629"
+ },
+ "spa": {
+ "official": "Rep\u00fablica \u00c1rabe Saharaui Democr\u00e1tica",
+ "common": "Sahara Occidental"
+ }
+ }
+ },
+ "tld": [
+ ".eh"
+ ],
+ "cca2": "EH",
+ "ccn3": "732",
+ "cca3": "ESH",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "DZD": {
+ "name": "Algerian dinar",
+ "symbol": "\u062f\u062c"
+ },
+ "MAD": {
+ "name": "Moroccan dirham",
+ "symbol": "DH"
+ },
+ "MRU": {
+ "name": "Mauritanian ouguiya",
+ "symbol": "UM"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "125288",
+ "125289"
+ ]
+ },
+ "capital": [
+ "El Aai\u00fan"
+ ],
+ "altSpellings": [
+ "EH",
+ "Tane\u1e93roft Tutrimt"
+ ],
+ "region": "Africa",
+ "subregion": "Northern Africa",
+ "languages": {
+ "ber": "Berber",
+ "mey": "Hassaniya",
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0635\u062d\u0631\u0627\u0648\u064a\u0629 \u0627\u0644\u062f\u064a\u0645\u0642\u0631\u0627\u0637\u064a\u0629",
+ "common": "\u0627\u0644\u0635\u062d\u0631\u0627\u0621 \u0627\u0644\u063a\u0631\u0628\u064a\u0629"
+ },
+ "bre": {
+ "official": "Republik Arab Saharaoui Demokratel",
+ "common": "Sahara ar C'horn\u00f4g"
+ },
+ "ces": {
+ "official": "Z\u00e1padn\u00ed Sahara",
+ "common": "Z\u00e1padn\u00ed Sahara"
+ },
+ "deu": {
+ "official": "Demokratische Arabische Republik Sahara",
+ "common": "Westsahara"
+ },
+ "est": {
+ "official": "L\u00e4\u00e4ne-Sahara",
+ "common": "L\u00e4\u00e4ne-Sahara"
+ },
+ "fin": {
+ "official": "L\u00e4nsi-Sahara",
+ "common": "L\u00e4nsi-Sahara"
+ },
+ "fra": {
+ "official": "R\u00e9publique arabe sahraouie d\u00e9mocratique",
+ "common": "Sahara Occidental"
+ },
+ "hrv": {
+ "official": "Sahrawi Arab Demokratska Republika",
+ "common": "Zapadna Sahara"
+ },
+ "hun": {
+ "official": "Nyugat-Szahara",
+ "common": "Nyugat-Szahara"
+ },
+ "ita": {
+ "official": "Repubblica Araba Saharawi Democratica",
+ "common": "Sahara Occidentale"
+ },
+ "jpn": {
+ "official": "\u897f\u30b5\u30cf\u30e9",
+ "common": "\u897f\u30b5\u30cf\u30e9"
+ },
+ "kor": {
+ "official": "\uc0ac\ud558\ub77c \uc544\ub78d \ubbfc\uc8fc \uacf5\ud654\uad6d",
+ "common": "\uc11c\uc0ac\ud558\ub77c"
+ },
+ "nld": {
+ "official": "Sahrawi Arabische Democratische Republiek",
+ "common": "Westelijke Sahara"
+ },
+ "per": {
+ "official": "\u0635\u062d\u0631\u0627\u06cc \u063a\u0631\u0628\u06cc",
+ "common": "\u0635\u062d\u0631\u0627\u06cc \u063a\u0631\u0628\u06cc"
+ },
+ "pol": {
+ "official": "Saharyjska Arabska Republika Demokratyczna",
+ "common": "Sahara Zachodnia"
+ },
+ "por": {
+ "official": "Rep\u00fablica \u00c1rabe Saharaui Democr\u00e1tica",
+ "common": "Saara Ocidental"
+ },
+ "rus": {
+ "official": "Sahrawi \u0410\u0440\u0430\u0431\u0441\u043a\u0430\u044f \u0414\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0417\u0430\u043f\u0430\u0434\u043d\u0430\u044f \u0421\u0430\u0445\u0430\u0440\u0430"
+ },
+ "slk": {
+ "official": "Z\u00e1padn\u00e1 Sahara",
+ "common": "Z\u00e1padn\u00e1 Sahara"
+ },
+ "spa": {
+ "official": "Rep\u00fablica \u00c1rabe Saharaui Democr\u00e1tica",
+ "common": "Sahara Occidental"
+ },
+ "srp": {
+ "official": "Saharska Arapska Demokratska Republika",
+ "common": "Zapadna Sahara"
+ },
+ "swe": {
+ "official": "V\u00e4stsahara",
+ "common": "V\u00e4stsahara"
+ },
+ "tur": {
+ "official": "Sahra Demokratik Arap Cumhuriyeti",
+ "common": "Sahra Demokratik Arap Cumhuriyeti"
+ },
+ "urd": {
+ "official": "\u0635\u062d\u0631\u0627\u0648\u06cc \u0639\u0631\u0628 \u0639\u0648\u0627\u0645\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1",
+ "common": "\u0645\u063a\u0631\u0628\u06cc \u0635\u062d\u0627\u0631\u0627"
+ },
+ "zho": {
+ "official": "\u963f\u62c9\u4f2f\u6492\u54c8\u62c9\u6c11\u4e3b\u5171\u548c\u56fd",
+ "common": "\u897f\u6492\u54c8\u62c9"
+ }
+ },
+ "latlng": [
+ 24.5,
+ -13
+ ],
+ "landlocked": false,
+ "borders": [
+ "DZA",
+ "MRT",
+ "MAR"
+ ],
+ "area": 266000,
+ "flag": "\ud83c\uddea\ud83c\udded",
+ "demonyms": {
+ "eng": {
+ "f": "Sahrawi",
+ "m": "Sahrawi"
+ },
+ "fra": {
+ "f": "",
+ "m": ""
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Spain",
+ "official": "Kingdom of Spain",
+ "native": {
+ "spa": {
+ "official": "Reino de Espa\u00f1a",
+ "common": "Espa\u00f1a"
+ }
+ }
+ },
+ "tld": [
+ ".es"
+ ],
+ "cca2": "ES",
+ "ccn3": "724",
+ "cca3": "ESP",
+ "cioc": "ESP",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "4"
+ ]
+ },
+ "capital": [
+ "Madrid"
+ ],
+ "altSpellings": [
+ "ES",
+ "Kingdom of Spain",
+ "Reino de Espa\u00f1a"
+ ],
+ "region": "Europe",
+ "subregion": "Southern Europe",
+ "languages": {
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0645\u0644\u0643\u0629 \u0625\u0633\u0628\u0627\u0646\u064a\u0627",
+ "common": "\u0625\u0633\u0628\u0627\u0646\u064a\u0627"
+ },
+ "bre": {
+ "official": "Rouantelezh Spagn",
+ "common": "Spagn"
+ },
+ "ces": {
+ "official": "\u0160pan\u011blsk\u00e9 kr\u00e1lovstv\u00ed",
+ "common": "\u0160pan\u011blsko"
+ },
+ "deu": {
+ "official": "K\u00f6nigreich Spanien",
+ "common": "Spanien"
+ },
+ "est": {
+ "official": "Hispaania Kuningriik",
+ "common": "Hispaania"
+ },
+ "fin": {
+ "official": "Espanjan kuningaskunta",
+ "common": "Espanja"
+ },
+ "fra": {
+ "official": "Royaume d'Espagne",
+ "common": "Espagne"
+ },
+ "hrv": {
+ "official": "Kraljevina \u0160panjolska",
+ "common": "\u0160panjolska"
+ },
+ "hun": {
+ "official": "Spanyol Kir\u00e1lys\u00e1g",
+ "common": "Spanyolorsz\u00e1g"
+ },
+ "ita": {
+ "official": "Regno di Spagna",
+ "common": "Spagna"
+ },
+ "jpn": {
+ "official": "\u30b9\u30da\u30a4\u30f3",
+ "common": "\u30b9\u30da\u30a4\u30f3"
+ },
+ "kor": {
+ "official": "\uc5d0\uc2a4\ud30c\ub0d0 \uc655\uad6d",
+ "common": "\uc2a4\ud398\uc778"
+ },
+ "nld": {
+ "official": "Koninkrijk Spanje",
+ "common": "Spanje"
+ },
+ "per": {
+ "official": "\u067e\u0627\u062f\u0634\u0627\u0647\u06cc \u0627\u0633\u067e\u0627\u0646\u06cc\u0627",
+ "common": "\u0627\u0633\u067e\u0627\u0646\u06cc\u0627"
+ },
+ "pol": {
+ "official": "Kr\u00f3lestwo Hiszpanii ",
+ "common": "Hiszpania"
+ },
+ "por": {
+ "official": "Reino de Espanha",
+ "common": "Espanha"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u0440\u043e\u043b\u0435\u0432\u0441\u0442\u0432\u043e \u0418\u0441\u043f\u0430\u043d\u0438\u044f",
+ "common": "\u0418\u0441\u043f\u0430\u043d\u0438\u044f"
+ },
+ "slk": {
+ "official": "\u0160panielske kr\u00e1\u013eovstvo",
+ "common": "\u0160panielsko"
+ },
+ "spa": {
+ "official": "Reino de Espa\u00f1a",
+ "common": "Espa\u00f1a"
+ },
+ "srp": {
+ "official": "Kraljevina \u0160panija",
+ "common": "\u0160panija"
+ },
+ "swe": {
+ "official": "Konungariket Spanien",
+ "common": "Spanien"
+ },
+ "tur": {
+ "official": "\u0130spanya Krall\u0131\u011f\u0131",
+ "common": "\u0130spanya"
+ },
+ "urd": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a\u0650 \u06c1\u0633\u067e\u0627\u0646\u06cc\u06c1",
+ "common": "\u06c1\u0633\u067e\u0627\u0646\u06cc\u06c1"
+ },
+ "zho": {
+ "official": "\u897f\u73ed\u7259\u738b\u56fd",
+ "common": "\u897f\u73ed\u7259"
+ }
+ },
+ "latlng": [
+ 40,
+ -4
+ ],
+ "landlocked": false,
+ "borders": [
+ "AND",
+ "FRA",
+ "GIB",
+ "PRT",
+ "MAR"
+ ],
+ "area": 505992,
+ "flag": "\ud83c\uddea\ud83c\uddf8",
+ "demonyms": {
+ "eng": {
+ "f": "Spanish",
+ "m": "Spanish"
+ },
+ "fra": {
+ "f": "Espagnole",
+ "m": "Espagnol"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Estonia",
+ "official": "Republic of Estonia",
+ "native": {
+ "est": {
+ "official": "Eesti Vabariik",
+ "common": "Eesti"
+ }
+ }
+ },
+ "tld": [
+ ".ee"
+ ],
+ "cca2": "EE",
+ "ccn3": "233",
+ "cca3": "EST",
+ "cioc": "EST",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "72"
+ ]
+ },
+ "capital": [
+ "Tallinn"
+ ],
+ "altSpellings": [
+ "EE",
+ "Eesti",
+ "Republic of Estonia",
+ "Eesti Vabariik"
+ ],
+ "region": "Europe",
+ "subregion": "Northern Europe",
+ "languages": {
+ "est": "Estonian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0625\u0633\u062a\u0648\u0646\u064a\u0627",
+ "common": "\u0625\u0633\u062a\u0648\u0646\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Estonia",
+ "common": "Estonia"
+ },
+ "ces": {
+ "official": "Estonsk\u00e1 republika",
+ "common": "Estonsko"
+ },
+ "deu": {
+ "official": "Republik Estland",
+ "common": "Estland"
+ },
+ "est": {
+ "official": "Eesti Vabariik",
+ "common": "Eesti"
+ },
+ "fin": {
+ "official": "Viron tasavalta",
+ "common": "Viro"
+ },
+ "fra": {
+ "official": "R\u00e9publique d'Estonie",
+ "common": "Estonie"
+ },
+ "hrv": {
+ "official": "Republika Estonija",
+ "common": "Estonija"
+ },
+ "hun": {
+ "official": "\u00c9szt K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "\u00c9sztorsz\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica di Estonia",
+ "common": "Estonia"
+ },
+ "jpn": {
+ "official": "\u30a8\u30b9\u30c8\u30cb\u30a2\u5171\u548c\u56fd",
+ "common": "\u30a8\u30b9\u30c8\u30cb\u30a2"
+ },
+ "kor": {
+ "official": "\uc5d0\uc2a4\ud1a0\ub2c8\uc544 \uacf5\ud654\uad6d",
+ "common": "\uc5d0\uc2a4\ud1a0\ub2c8\uc544"
+ },
+ "nld": {
+ "official": "Republiek Estland",
+ "common": "Estland"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0633\u062a\u0648\u0646\u06cc",
+ "common": "\u0627\u0650\u0633\u062a\u0648\u0646\u06cc"
+ },
+ "pol": {
+ "official": "Republika Esto\u0144ska",
+ "common": "Estonia"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Est\u00f3nia",
+ "common": "Est\u00f3nia"
+ },
+ "rus": {
+ "official": "\u042d\u0441\u0442\u043e\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u042d\u0441\u0442\u043e\u043d\u0438\u044f"
+ },
+ "slk": {
+ "official": "Est\u00f3nska republika",
+ "common": "Est\u00f3nsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Estonia",
+ "common": "Estonia"
+ },
+ "srp": {
+ "official": "Republika Estonija",
+ "common": "Estonija"
+ },
+ "swe": {
+ "official": "Republiken Estland",
+ "common": "Estland"
+ },
+ "tur": {
+ "official": "Estonya Cumhuriyeti",
+ "common": "Estonya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0627\u0633\u0679\u0648\u0646\u06cc\u0627",
+ "common": "\u0627\u0633\u0679\u0648\u0646\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u7231\u6c99\u5c3c\u4e9a\u5171\u548c\u56fd",
+ "common": "\u7231\u6c99\u5c3c\u4e9a"
+ }
+ },
+ "latlng": [
+ 59,
+ 26
+ ],
+ "landlocked": false,
+ "borders": [
+ "LVA",
+ "RUS"
+ ],
+ "area": 45227,
+ "flag": "\ud83c\uddea\ud83c\uddea",
+ "demonyms": {
+ "eng": {
+ "f": "Estonian",
+ "m": "Estonian"
+ },
+ "fra": {
+ "f": "Estonienne",
+ "m": "Estonien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Ethiopia",
+ "official": "Federal Democratic Republic of Ethiopia",
+ "native": {
+ "amh": {
+ "official": "\u12e8\u12a2\u1275\u12ee\u1335\u12eb \u134c\u12f4\u122b\u120b\u12ca \u12f2\u121e\u12ad\u122b\u1232\u12eb\u12ca \u122a\u1350\u1265\u120a\u12ad",
+ "common": "\u12a2\u1275\u12ee\u1335\u12eb"
+ }
+ }
+ },
+ "tld": [
+ ".et"
+ ],
+ "cca2": "ET",
+ "ccn3": "231",
+ "cca3": "ETH",
+ "cioc": "ETH",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "ETB": {
+ "name": "Ethiopian birr",
+ "symbol": "Br"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "51"
+ ]
+ },
+ "capital": [
+ "Addis Ababa"
+ ],
+ "altSpellings": [
+ "ET",
+ "\u02be\u012aty\u014d\u1e57\u1e57y\u0101",
+ "Federal Democratic Republic of Ethiopia",
+ "\u12e8\u12a2\u1275\u12ee\u1335\u12eb \u134c\u12f4\u122b\u120b\u12ca \u12f2\u121e\u12ad\u122b\u1232\u12eb\u12ca \u122a\u1350\u1265\u120a\u12ad"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "amh": "Amharic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0625\u062b\u064a\u0648\u0628\u064a\u0627 \u0627\u0644\u0641\u062f\u0631\u0627\u0644\u064a\u0629 \u0627\u0644\u062f\u064a\u0645\u0648\u0642\u0631\u0627\u0637\u064a\u0629",
+ "common": "\u0625\u062b\u064a\u0648\u0628\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Demokratel Kevredadel Etiopia",
+ "common": "Etiopia"
+ },
+ "ces": {
+ "official": "Etiopsk\u00e1 federativn\u00ed demokratick\u00e1 republika",
+ "common": "Etiopie"
+ },
+ "deu": {
+ "official": "Demokratische Bundesrepublik \u00c4thiopien",
+ "common": "\u00c4thiopien"
+ },
+ "est": {
+ "official": "Etioopia Demokraatlik Liitvabariik",
+ "common": "Etioopia"
+ },
+ "fin": {
+ "official": "Etiopian demokraattinen liittotasavalta",
+ "common": "Etiopia"
+ },
+ "fra": {
+ "official": "R\u00e9publique f\u00e9d\u00e9rale d\u00e9mocratique d'\u00c9thiopie",
+ "common": "\u00c9thiopie"
+ },
+ "hrv": {
+ "official": "Savezna Demokratska Republika Etiopija",
+ "common": "Etiopija"
+ },
+ "hun": {
+ "official": "Eti\u00f3p Sz\u00f6vets\u00e9gi Demokratikus K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Eti\u00f3pia"
+ },
+ "ita": {
+ "official": "Repubblica federale democratica di Etiopia",
+ "common": "Etiopia"
+ },
+ "jpn": {
+ "official": "\u30a8\u30c1\u30aa\u30d4\u30a2\u9023\u90a6\u6c11\u4e3b\u5171\u548c\u56fd",
+ "common": "\u30a8\u30c1\u30aa\u30d4\u30a2"
+ },
+ "kor": {
+ "official": "\uc5d0\ud2f0\uc624\ud53c\uc544 \uc5f0\ubc29 \ubbfc\uc8fc \uacf5\ud654\uad6d",
+ "common": "\uc5d0\ud2f0\uc624\ud53c\uc544"
+ },
+ "nld": {
+ "official": "Federale Democratische Republiek Ethiopi\u00eb",
+ "common": "Ethiopi\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0641\u062f\u0631\u0627\u0644 \u062f\u0645\u0648\u06a9\u0631\u0627\u062a\u06cc\u06a9 \u0627\u062a\u06cc\u0648\u067e\u06cc",
+ "common": "\u0627\u0650\u062a\u06cc\u0648\u067e\u06cc"
+ },
+ "pol": {
+ "official": "Federalna Demokratyczna Republika Etiopii",
+ "common": "Etiopia"
+ },
+ "por": {
+ "official": "Rep\u00fablica Federal Democr\u00e1tica da Eti\u00f3pia",
+ "common": "Eti\u00f3pia"
+ },
+ "rus": {
+ "official": "\u0424\u0435\u0434\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430\u044f \u0414\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u042d\u0444\u0438\u043e\u043f\u0438\u044f",
+ "common": "\u042d\u0444\u0438\u043e\u043f\u0438\u044f"
+ },
+ "slk": {
+ "official": "Eti\u00f3pska federat\u00edvna demokratick\u00e1 republika",
+ "common": "Eti\u00f3pia"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Democr\u00e1tica Federal de Etiop\u00eda",
+ "common": "Etiop\u00eda"
+ },
+ "srp": {
+ "official": "Savezna Demokratska Republika Etiopija",
+ "common": "Etiopija"
+ },
+ "swe": {
+ "official": "Demokratiska f\u00f6rbundsrepubliken Etiopien",
+ "common": "Etiopien"
+ },
+ "tur": {
+ "official": "Etiyopya Federal Demokratik Cumhuriyeti",
+ "common": "Etiyopya"
+ },
+ "urd": {
+ "official": "\u0648\u0641\u0627\u0642\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0627\u06cc\u062a\u06be\u0648\u067e\u06cc\u0627",
+ "common": "\u0627\u06cc\u062a\u06be\u0648\u067e\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u57c3\u585e\u4fc4\u6bd4\u4e9a\u8054\u90a6\u6c11\u4e3b\u5171\u548c\u56fd",
+ "common": "\u57c3\u585e\u4fc4\u6bd4\u4e9a"
+ }
+ },
+ "latlng": [
+ 8,
+ 38
+ ],
+ "landlocked": true,
+ "borders": [
+ "DJI",
+ "ERI",
+ "KEN",
+ "SOM",
+ "SSD",
+ "SDN"
+ ],
+ "area": 1104300,
+ "flag": "\ud83c\uddea\ud83c\uddf9",
+ "demonyms": {
+ "eng": {
+ "f": "Ethiopian",
+ "m": "Ethiopian"
+ },
+ "fra": {
+ "f": "\u00c9thiopienne",
+ "m": "\u00c9thiopien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Finland",
+ "official": "Republic of Finland",
+ "native": {
+ "fin": {
+ "official": "Suomen tasavalta",
+ "common": "Suomi"
+ },
+ "swe": {
+ "official": "Republiken Finland",
+ "common": "Finland"
+ }
+ }
+ },
+ "tld": [
+ ".fi"
+ ],
+ "cca2": "FI",
+ "ccn3": "246",
+ "cca3": "FIN",
+ "cioc": "FIN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "58"
+ ]
+ },
+ "capital": [
+ "Helsinki"
+ ],
+ "altSpellings": [
+ "FI",
+ "Suomi",
+ "Republic of Finland",
+ "Suomen tasavalta",
+ "Republiken Finland"
+ ],
+ "region": "Europe",
+ "subregion": "Northern Europe",
+ "languages": {
+ "fin": "Finnish",
+ "swe": "Swedish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0641\u0646\u0644\u0646\u062f\u0627",
+ "common": "\u0641\u0646\u0644\u0646\u062f\u0627"
+ },
+ "bre": {
+ "official": "Republik Finland",
+ "common": "Finland"
+ },
+ "ces": {
+ "official": "Finsk\u00e1 republika",
+ "common": "Finsko"
+ },
+ "deu": {
+ "official": "Republik Finnland",
+ "common": "Finnland"
+ },
+ "est": {
+ "official": "Soome Vabariik",
+ "common": "Soome"
+ },
+ "fin": {
+ "official": "Suomen tasavalta",
+ "common": "Suomi"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Finlande",
+ "common": "Finlande"
+ },
+ "hrv": {
+ "official": "Republika Finska",
+ "common": "Finska"
+ },
+ "hun": {
+ "official": "Finn K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Finnorsz\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica di Finlandia",
+ "common": "Finlandia"
+ },
+ "jpn": {
+ "official": "\u30d5\u30a3\u30f3\u30e9\u30f3\u30c9\u5171\u548c\u56fd",
+ "common": "\u30d5\u30a3\u30f3\u30e9\u30f3\u30c9"
+ },
+ "kor": {
+ "official": "\ud540\ub780\ub4dc \uacf5\ud654\uad6d",
+ "common": "\ud540\ub780\ub4dc"
+ },
+ "nld": {
+ "official": "Republiek Finland",
+ "common": "Finland"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0641\u0646\u0644\u0627\u0646\u062f",
+ "common": "\u0641\u0646\u0644\u0627\u0646\u062f"
+ },
+ "pol": {
+ "official": "Republika Finlandii",
+ "common": "Finlandia"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Finl\u00e2ndia",
+ "common": "Finl\u00e2ndia"
+ },
+ "rus": {
+ "official": "\u0424\u0438\u043d\u043b\u044f\u043d\u0434\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0424\u0438\u043d\u043b\u044f\u043d\u0434\u0438\u044f"
+ },
+ "slk": {
+ "official": "F\u00ednska republika",
+ "common": "F\u00ednsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Finlandia",
+ "common": "Finlandia"
+ },
+ "srp": {
+ "official": "Republika Finska",
+ "common": "Finska"
+ },
+ "swe": {
+ "official": "Republiken Finland",
+ "common": "Finland"
+ },
+ "tur": {
+ "official": "Finlandiya Cumhuriyeti",
+ "common": "Finlandiya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0641\u0646 \u0644\u06cc\u0646\u0688",
+ "common": "\u0641\u0646 \u0644\u06cc\u0646\u0688"
+ },
+ "zho": {
+ "official": "\u82ac\u5170\u5171\u548c\u56fd",
+ "common": "\u82ac\u5170"
+ }
+ },
+ "latlng": [
+ 64,
+ 26
+ ],
+ "landlocked": false,
+ "borders": [
+ "NOR",
+ "SWE",
+ "RUS"
+ ],
+ "area": 338424,
+ "flag": "\ud83c\uddeb\ud83c\uddee",
+ "demonyms": {
+ "eng": {
+ "f": "Finnish",
+ "m": "Finnish"
+ },
+ "fra": {
+ "f": "Finlandaise",
+ "m": "Finlandais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Fiji",
+ "official": "Republic of Fiji",
+ "native": {
+ "eng": {
+ "official": "Republic of Fiji",
+ "common": "Fiji"
+ },
+ "fij": {
+ "official": "Matanitu Tugalala o Viti",
+ "common": "Viti"
+ },
+ "hif": {
+ "official": "\u0930\u093f\u092a\u092c\u094d\u0932\u093f\u0915 \u0911\u092b \u092b\u0940\u091c\u0940",
+ "common": "\u092b\u093f\u091c\u0940"
+ }
+ }
+ },
+ "tld": [
+ ".fj"
+ ],
+ "cca2": "FJ",
+ "ccn3": "242",
+ "cca3": "FJI",
+ "cioc": "FIJ",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "FJD": {
+ "name": "Fijian dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "79"
+ ]
+ },
+ "capital": [
+ "Suva"
+ ],
+ "altSpellings": [
+ "FJ",
+ "Viti",
+ "Republic of Fiji",
+ "Matanitu ko Viti",
+ "Fij\u012b Ga\u1e47ar\u0101jya"
+ ],
+ "region": "Oceania",
+ "subregion": "Melanesia",
+ "languages": {
+ "eng": "English",
+ "fij": "Fijian",
+ "hif": "Fiji Hindi"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u062c\u0632\u0631 \u0641\u064a\u062c\u064a",
+ "common": "\u0641\u064a\u062c\u064a"
+ },
+ "bre": {
+ "official": "Republik Fidji",
+ "common": "Fidji"
+ },
+ "ces": {
+ "official": "Republika Fid\u017eijsk\u00fdch ostrov\u016f",
+ "common": "Fid\u017ei"
+ },
+ "deu": {
+ "official": "Republik Fidschi",
+ "common": "Fidschi"
+ },
+ "est": {
+ "official": "Fid\u017ei Vabariik",
+ "common": "Fid\u017ei"
+ },
+ "fin": {
+ "official": "Fid\u017ein tasavalta",
+ "common": "Fid\u017ei"
+ },
+ "fra": {
+ "official": "R\u00e9publique des Fidji",
+ "common": "Fidji"
+ },
+ "hrv": {
+ "official": "Republika Fid\u017ei",
+ "common": "Fi\u0111i"
+ },
+ "hun": {
+ "official": "Fidzsi-szigeteki K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Fidzsi-szigetek"
+ },
+ "ita": {
+ "official": "Repubblica di Figi",
+ "common": "Figi"
+ },
+ "jpn": {
+ "official": "\u30d5\u30a3\u30b8\u30fc\u8af8\u5cf6\u5171\u548c\u56fd",
+ "common": "\u30d5\u30a3\u30b8\u30fc"
+ },
+ "kor": {
+ "official": "\ud53c\uc9c0 \uacf5\ud654\uad6d",
+ "common": "\ud53c\uc9c0"
+ },
+ "nld": {
+ "official": "Republiek Fiji",
+ "common": "Fiji"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062c\u0632\u0627\u06cc\u0631 \u0641\u06cc\u062c\u06cc",
+ "common": "\u0641\u06cc\u062c\u06cc"
+ },
+ "pol": {
+ "official": "Republika Fid\u017ci",
+ "common": "Fid\u017ci"
+ },
+ "por": {
+ "official": "Rep\u00fablica de Fiji",
+ "common": "Fiji"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0424\u0438\u0434\u0436\u0438",
+ "common": "\u0424\u0438\u0434\u0436\u0438"
+ },
+ "slk": {
+ "official": "Fi\u01c6ijsk\u00e1 republika",
+ "common": "Fi\u01c6i"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Fiji",
+ "common": "Fiyi"
+ },
+ "srp": {
+ "official": "Republika Fid\u017ei",
+ "common": "Fid\u017ei"
+ },
+ "swe": {
+ "official": "Republiken Fiji",
+ "common": "Fiji"
+ },
+ "tur": {
+ "official": "Fiji Cumhuriyeti",
+ "common": "Fiji"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0641\u062c\u06cc",
+ "common": "\u0641\u062c\u06cc"
+ },
+ "zho": {
+ "official": "\u6590\u6d4e\u5171\u548c\u56fd",
+ "common": "\u6590\u6d4e"
+ }
+ },
+ "latlng": [
+ -18,
+ 175
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 18272,
+ "flag": "\ud83c\uddeb\ud83c\uddef",
+ "demonyms": {
+ "eng": {
+ "f": "Fijian",
+ "m": "Fijian"
+ },
+ "fra": {
+ "f": "Fidjienne",
+ "m": "Fidjien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Falkland Islands",
+ "official": "Falkland Islands",
+ "native": {
+ "eng": {
+ "official": "Falkland Islands",
+ "common": "Falkland Islands"
+ }
+ }
+ },
+ "tld": [
+ ".fk"
+ ],
+ "cca2": "FK",
+ "ccn3": "238",
+ "cca3": "FLK",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "FKP": {
+ "name": "Falkland Islands pound",
+ "symbol": "\u00a3"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "00"
+ ]
+ },
+ "capital": [
+ "Stanley"
+ ],
+ "altSpellings": [
+ "FK",
+ "Islas Malvinas",
+ "Falkland Islands (Malvinas)"
+ ],
+ "region": "Americas",
+ "subregion": "South America",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0632\u0631 \u0641\u0648\u0643\u0644\u0627\u0646\u062f",
+ "common": "\u062c\u0632\u0631 \u0641\u0648\u0643\u0644\u0627\u0646\u062f"
+ },
+ "bre": {
+ "official": "Inizi Malo\u00f9",
+ "common": "Inizi Malo\u00f9"
+ },
+ "ces": {
+ "official": "Falklandsk\u00e9 ostrovy",
+ "common": "Falklandy"
+ },
+ "deu": {
+ "official": "Falklandinseln",
+ "common": "Falklandinseln"
+ },
+ "est": {
+ "official": "Falklandi saared",
+ "common": "Falklandi saared"
+ },
+ "fin": {
+ "official": "Falkandinsaaret",
+ "common": "Falkandinsaaret"
+ },
+ "fra": {
+ "official": "\u00celes Malouines",
+ "common": "\u00celes Malouines"
+ },
+ "hrv": {
+ "official": "Falklandski otoci",
+ "common": "Falklandski Otoci"
+ },
+ "hun": {
+ "official": "Falkland-szigetek",
+ "common": "Falkland-szigetek"
+ },
+ "ita": {
+ "official": "Isole Falkland",
+ "common": "Isole Falkland o Isole Malvine"
+ },
+ "jpn": {
+ "official": "\u30d5\u30a9\u30fc\u30af\u30e9\u30f3\u30c9\uff08\u30de\u30eb\u30d3\u30ca\u30b9\uff09\u8af8\u5cf6",
+ "common": "\u30d5\u30a9\u30fc\u30af\u30e9\u30f3\u30c9\u8af8\u5cf6"
+ },
+ "kor": {
+ "official": "\ud3ec\ud074\ub79c\ub4dc \uc81c\ub3c4",
+ "common": "\ud3ec\ud074\ub79c\ub4dc \uc81c\ub3c4"
+ },
+ "nld": {
+ "official": "Falkland eilanden",
+ "common": "Falklandeilanden"
+ },
+ "per": {
+ "official": "\u062c\u0632\u0627\u06cc\u0631 \u0641\u0627\u0644\u06a9\u0644\u0646\u062f",
+ "common": "\u062c\u0632\u0627\u06cc\u0631 \u0641\u0627\u0644\u06a9\u0644\u0646\u062f"
+ },
+ "pol": {
+ "official": "Falklandy",
+ "common": "Falklandy"
+ },
+ "por": {
+ "official": "Ilhas Malvinas",
+ "common": "Ilhas Malvinas"
+ },
+ "rus": {
+ "official": "\u0424\u043e\u043b\u043a\u043b\u0435\u043d\u0434\u0441\u043a\u0438\u0435 \u043e\u0441\u0442\u0440\u043e\u0432\u0430",
+ "common": "\u0424\u043e\u043b\u043a\u043b\u0435\u043d\u0434\u0441\u043a\u0438\u0435 \u043e\u0441\u0442\u0440\u043e\u0432\u0430"
+ },
+ "slk": {
+ "official": "Falklandsk\u00e9 ostrovy",
+ "common": "Falklandy"
+ },
+ "spa": {
+ "official": "islas Malvinas",
+ "common": "Islas Malvinas"
+ },
+ "srp": {
+ "official": "Folklandska ostrva",
+ "common": "Folklandska ostrva"
+ },
+ "swe": {
+ "official": "Falklands\u00f6arna",
+ "common": "Falklands\u00f6arna"
+ },
+ "tur": {
+ "official": "Falkland (Malvina) Adalar\u0131",
+ "common": "Falkland (Malvina) Adalar\u0131"
+ },
+ "urd": {
+ "official": "\u062c\u0632\u0627\u0626\u0631 \u0641\u0627\u06a9\u0644\u06cc\u0646\u0688",
+ "common": "\u062c\u0632\u0627\u0626\u0631 \u0641\u0627\u06a9\u0644\u06cc\u0646\u0688"
+ },
+ "zho": {
+ "official": "\u798f\u514b\u5170\u7fa4\u5c9b",
+ "common": "\u798f\u514b\u5170\u7fa4\u5c9b"
+ }
+ },
+ "latlng": [
+ -51.75,
+ -59
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 12173,
+ "flag": "\ud83c\uddeb\ud83c\uddf0",
+ "demonyms": {
+ "eng": {
+ "f": "Falkland Islander",
+ "m": "Falkland Islander"
+ },
+ "fra": {
+ "f": "Malouinne",
+ "m": "Malouin"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "France",
+ "official": "French Republic",
+ "native": {
+ "fra": {
+ "official": "R\u00e9publique fran\u00e7aise",
+ "common": "France"
+ }
+ }
+ },
+ "tld": [
+ ".fr"
+ ],
+ "cca2": "FR",
+ "ccn3": "250",
+ "cca3": "FRA",
+ "cioc": "FRA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "3"
+ ]
+ },
+ "capital": [
+ "Paris"
+ ],
+ "altSpellings": [
+ "FR",
+ "French Republic",
+ "R\u00e9publique fran\u00e7aise"
+ ],
+ "region": "Europe",
+ "subregion": "Western Europe",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0641\u0631\u0646\u0633\u064a\u0629",
+ "common": "\u0641\u0631\u0646\u0633\u0627"
+ },
+ "bre": {
+ "official": "Republik Fra\u00f1s",
+ "common": "Fra\u00f1s"
+ },
+ "ces": {
+ "official": "Francouzsk\u00e1 republika",
+ "common": "Francie"
+ },
+ "deu": {
+ "official": "Franz\u00f6sische Republik",
+ "common": "Frankreich"
+ },
+ "est": {
+ "official": "Prantsuse Vabariik",
+ "common": "Prantsusmaa"
+ },
+ "fin": {
+ "official": "Ranskan tasavalta",
+ "common": "Ranska"
+ },
+ "fra": {
+ "official": "R\u00e9publique fran\u00e7aise",
+ "common": "France"
+ },
+ "hrv": {
+ "official": "Francuska Republika",
+ "common": "Francuska"
+ },
+ "hun": {
+ "official": "Francia K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Franciaorsz\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica francese",
+ "common": "Francia"
+ },
+ "jpn": {
+ "official": "\u30d5\u30e9\u30f3\u30b9\u5171\u548c\u56fd",
+ "common": "\u30d5\u30e9\u30f3\u30b9"
+ },
+ "kor": {
+ "official": "\ud504\ub791\uc2a4 \uacf5\ud654\uad6d",
+ "common": "\ud504\ub791\uc2a4"
+ },
+ "nld": {
+ "official": "Franse Republiek",
+ "common": "Frankrijk"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0641\u0631\u0627\u0646\u0633\u0647",
+ "common": "\u0641\u0631\u0627\u0646\u0633\u0647"
+ },
+ "pol": {
+ "official": "Republika Francuska",
+ "common": "Francja"
+ },
+ "por": {
+ "official": "Rep\u00fablica Francesa",
+ "common": "Fran\u00e7a"
+ },
+ "rus": {
+ "official": "\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0424\u0440\u0430\u043d\u0446\u0438\u044f"
+ },
+ "slk": {
+ "official": "Franc\u00fazska republika",
+ "common": "Franc\u00fazsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica franc\u00e9s",
+ "common": "Francia"
+ },
+ "srp": {
+ "official": "Republika Francuska",
+ "common": "Francuska"
+ },
+ "swe": {
+ "official": "Republiken Frankrike",
+ "common": "Frankrike"
+ },
+ "tur": {
+ "official": "Fransa Cumhuriyeti",
+ "common": "Fransa"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0641\u0631\u0627\u0646\u0633",
+ "common": "\u0641\u0631\u0627\u0646\u0633"
+ },
+ "zho": {
+ "official": "\u6cd5\u5170\u897f\u5171\u548c\u56fd",
+ "common": "\u6cd5\u56fd"
+ }
+ },
+ "latlng": [
+ 46,
+ 2
+ ],
+ "landlocked": false,
+ "borders": [
+ "AND",
+ "BEL",
+ "DEU",
+ "ITA",
+ "LUX",
+ "MCO",
+ "ESP",
+ "CHE"
+ ],
+ "area": 551695,
+ "flag": "\ud83c\uddeb\ud83c\uddf7",
+ "demonyms": {
+ "eng": {
+ "f": "French",
+ "m": "French"
+ },
+ "fra": {
+ "f": "Fran\u00e7aise",
+ "m": "Fran\u00e7ais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Faroe Islands",
+ "official": "Faroe Islands",
+ "native": {
+ "dan": {
+ "official": "F\u00e6r\u00f8erne",
+ "common": "F\u00e6r\u00f8erne"
+ },
+ "fao": {
+ "official": "F\u00f8royar",
+ "common": "F\u00f8royar"
+ }
+ }
+ },
+ "tld": [
+ ".fo"
+ ],
+ "cca2": "FO",
+ "ccn3": "234",
+ "cca3": "FRO",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "DKK": {
+ "name": "Danish krone",
+ "symbol": "kr"
+ },
+ "FOK": {
+ "name": "Faroese kr\u00f3na",
+ "symbol": "kr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "98"
+ ]
+ },
+ "capital": [
+ "T\u00f3rshavn"
+ ],
+ "altSpellings": [
+ "FO",
+ "F\u00f8royar",
+ "F\u00e6r\u00f8erne",
+ "Faeroe Islands"
+ ],
+ "region": "Europe",
+ "subregion": "Northern Europe",
+ "languages": {
+ "dan": "Danish",
+ "fao": "Faroese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0632\u0631 \u0641\u0627\u0631\u0648",
+ "common": "\u062c\u0632\u0631 \u0641\u0627\u0631\u0648"
+ },
+ "bre": {
+ "official": "Inizi Faero",
+ "common": "Inizi Faero"
+ },
+ "ces": {
+ "official": "Faersk\u00e9 ostrovy",
+ "common": "Faersk\u00e9 ostrovy"
+ },
+ "deu": {
+ "official": "F\u00e4r\u00f6er",
+ "common": "F\u00e4r\u00f6er-Inseln"
+ },
+ "est": {
+ "official": "F\u00e4\u00e4ri saared",
+ "common": "F\u00e4\u00e4ri saared"
+ },
+ "fin": {
+ "official": "F\u00e4rsaaret",
+ "common": "F\u00e4rsaaret"
+ },
+ "fra": {
+ "official": "\u00celes F\u00e9ro\u00e9",
+ "common": "\u00celes F\u00e9ro\u00e9"
+ },
+ "hrv": {
+ "official": "Farski Otoci",
+ "common": "Farski Otoci"
+ },
+ "hun": {
+ "official": "Fer\u00f6er",
+ "common": "Fer\u00f6er"
+ },
+ "ita": {
+ "official": "Isole Faroe",
+ "common": "Isole Far Oer"
+ },
+ "jpn": {
+ "official": "\u30d5\u30a7\u30ed\u30fc\u8af8\u5cf6",
+ "common": "\u30d5\u30a7\u30ed\u30fc\u8af8\u5cf6"
+ },
+ "kor": {
+ "official": "\ud398\ub85c \uc81c\ub3c4",
+ "common": "\ud398\ub85c \uc81c\ub3c4"
+ },
+ "nld": {
+ "official": "Faer\u00f6er",
+ "common": "Faer\u00f6er"
+ },
+ "per": {
+ "official": "\u062c\u0632\u0627\u06cc\u0631 \u0641\u0627\u0631\u0648\u0626\u0647",
+ "common": "\u062c\u0632\u0627\u06cc\u0631 \u0641\u0627\u0631\u0648\u0626\u0647"
+ },
+ "pol": {
+ "official": "Wyspy Owcze",
+ "common": "Wyspy Owcze"
+ },
+ "por": {
+ "official": "Ilhas Faroe",
+ "common": "Ilhas Faro\u00e9"
+ },
+ "rus": {
+ "official": "\u0424\u0430\u0440\u0435\u0440\u0441\u043a\u0438\u0435 \u043e\u0441\u0442\u0440\u043e\u0432\u0430",
+ "common": "\u0424\u0430\u0440\u0435\u0440\u0441\u043a\u0438\u0435 \u043e\u0441\u0442\u0440\u043e\u0432\u0430"
+ },
+ "slk": {
+ "official": "Faersk\u00e9 ostrovy",
+ "common": "Faersk\u00e9 ostrovy"
+ },
+ "spa": {
+ "official": "Islas Feroe",
+ "common": "Islas Faroe"
+ },
+ "srp": {
+ "official": "Farska Ostrva",
+ "common": "Farska Ostrva"
+ },
+ "swe": {
+ "official": "F\u00e4r\u00f6arna",
+ "common": "F\u00e4r\u00f6arna"
+ },
+ "tur": {
+ "official": "Faroe Adalar\u0131",
+ "common": "Faroe Adalar\u0131"
+ },
+ "urd": {
+ "official": "\u062c\u0632\u0627\u0626\u0631 \u0641\u0627\u0631\u0648",
+ "common": "\u062c\u0632\u0627\u0626\u0631 \u0641\u0627\u0631\u0648"
+ },
+ "zho": {
+ "official": "\u6cd5\u7f57\u7fa4\u5c9b",
+ "common": "\u6cd5\u7f57\u7fa4\u5c9b"
+ }
+ },
+ "latlng": [
+ 62,
+ -7
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 1393,
+ "flag": "\ud83c\uddeb\ud83c\uddf4",
+ "demonyms": {
+ "eng": {
+ "f": "Faroese",
+ "m": "Faroese"
+ },
+ "fra": {
+ "f": "F\u00e9ro\u00efenne",
+ "m": "F\u00e9ro\u00efen"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Micronesia",
+ "official": "Federated States of Micronesia",
+ "native": {
+ "eng": {
+ "official": "Federated States of Micronesia",
+ "common": "Micronesia"
+ }
+ }
+ },
+ "tld": [
+ ".fm"
+ ],
+ "cca2": "FM",
+ "ccn3": "583",
+ "cca3": "FSM",
+ "cioc": "FSM",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {},
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "91"
+ ]
+ },
+ "capital": [
+ "Palikir"
+ ],
+ "altSpellings": [
+ "FM",
+ "Federated States of Micronesia",
+ "Micronesia, Federated States of"
+ ],
+ "region": "Oceania",
+ "subregion": "Micronesia",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0648\u0644\u0627\u064a\u0627\u062a \u0645\u064a\u0643\u0631\u0648\u0646\u064a\u0633\u064a\u0627 \u0627\u0644\u0645\u062a\u062d\u062f\u0629",
+ "common": "\u0645\u064a\u0643\u0631\u0648\u0646\u064a\u0633\u064a\u0627"
+ },
+ "bre": {
+ "official": "Stado\u00f9 Kevreet Mikronezia",
+ "common": "Mikronezia"
+ },
+ "ces": {
+ "official": "Federativn\u00ed st\u00e1ty Mikron\u00e9sie",
+ "common": "Mikron\u00e9sie"
+ },
+ "deu": {
+ "official": "F\u00f6derierte Staaten von Mikronesien",
+ "common": "Mikronesien"
+ },
+ "est": {
+ "official": "Mikroneesia Liiduriigid",
+ "common": "Mikroneesia"
+ },
+ "fin": {
+ "official": "Mikronesian liittovaltio",
+ "common": "Mikronesia"
+ },
+ "fra": {
+ "official": "\u00c9tats f\u00e9d\u00e9r\u00e9s de Micron\u00e9sie",
+ "common": "Micron\u00e9sie"
+ },
+ "hrv": {
+ "official": "Savezne Dr\u017eave Mikronezije",
+ "common": "Mikronezija"
+ },
+ "hun": {
+ "official": "Mikron\u00e9ziai Sz\u00f6vets\u00e9gi \u00c1llamok",
+ "common": "Mikron\u00e9ziai Sz\u00f6vets\u00e9gi \u00c1llamok"
+ },
+ "ita": {
+ "official": "Stati federati di Micronesia",
+ "common": "Micronesia"
+ },
+ "jpn": {
+ "official": "\u30df\u30af\u30ed\u30cd\u30b7\u30a2\u9023\u90a6",
+ "common": "\u30df\u30af\u30ed\u30cd\u30b7\u30a2"
+ },
+ "kor": {
+ "official": "\ubbf8\ud06c\ub85c\ub124\uc2dc\uc544 \uc5f0\ubc29",
+ "common": "\ubbf8\ud06c\ub85c\ub124\uc2dc\uc544"
+ },
+ "nld": {
+ "official": "Federale Staten van Micronesia",
+ "common": "Micronesi\u00eb"
+ },
+ "per": {
+ "official": "\u0627\u06cc\u0627\u0644\u0627\u062a \u0641\u062f\u0631\u0627\u0644 \u0645\u06cc\u06a9\u0631\u0648\u0646\u0632\u06cc",
+ "common": "\u0645\u06cc\u06a9\u0631\u0648\u0646\u0632\u06cc"
+ },
+ "pol": {
+ "official": "Sfederowane Stany Mikronezji",
+ "common": "Mikronezja"
+ },
+ "por": {
+ "official": "Estados Federados da Micron\u00e9sia",
+ "common": "Micron\u00e9sia"
+ },
+ "rus": {
+ "official": "\u0424\u0435\u0434\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u0435 \u0428\u0442\u0430\u0442\u044b \u041c\u0438\u043a\u0440\u043e\u043d\u0435\u0437\u0438\u0438",
+ "common": "\u0424\u0435\u0434\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u0435 \u0428\u0442\u0430\u0442\u044b \u041c\u0438\u043a\u0440\u043e\u043d\u0435\u0437\u0438\u0438"
+ },
+ "slk": {
+ "official": "Mikron\u00e9zske federat\u00edvne \u0161t\u00e1ty",
+ "common": "Mikron\u00e9zia"
+ },
+ "spa": {
+ "official": "Estados Federados de Micronesia",
+ "common": "Micronesia"
+ },
+ "srp": {
+ "official": "Savezne Dr\u017eave Mikronezije",
+ "common": "Mikronezija"
+ },
+ "swe": {
+ "official": "Mikronesiska federationen",
+ "common": "Mikronesiska federationen"
+ },
+ "tur": {
+ "official": "Mikronezya Federal Devletleri",
+ "common": "Mikronezya"
+ },
+ "urd": {
+ "official": "\u0631\u06cc\u0627\u0633\u062a\u06c1\u0627\u0626\u06d2 \u0648\u0641\u0627\u0642\u06cc\u06c1 \u0645\u0627\u0626\u06a9\u0631\u0648\u0646\u06cc\u0634\u06cc\u0627",
+ "common": "\u0645\u0627\u0626\u06a9\u0631\u0648\u0646\u06cc\u0634\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u5bc6\u514b\u7f57\u5c3c\u897f\u4e9a\u8054\u90a6",
+ "common": "\u5bc6\u514b\u7f57\u5c3c\u897f\u4e9a"
+ }
+ },
+ "latlng": [
+ 6.91666666,
+ 158.25
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 702,
+ "flag": "\ud83c\uddeb\ud83c\uddf2",
+ "demonyms": {
+ "eng": {
+ "f": "Micronesian",
+ "m": "Micronesian"
+ },
+ "fra": {
+ "f": "Micron\u00e9sienne",
+ "m": "Micron\u00e9sien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Gabon",
+ "official": "Gabonese Republic",
+ "native": {
+ "fra": {
+ "official": "R\u00e9publique gabonaise",
+ "common": "Gabon"
+ }
+ }
+ },
+ "tld": [
+ ".ga"
+ ],
+ "cca2": "GA",
+ "ccn3": "266",
+ "cca3": "GAB",
+ "cioc": "GAB",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "XAF": {
+ "name": "Central African CFA franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "41"
+ ]
+ },
+ "capital": [
+ "Libreville"
+ ],
+ "altSpellings": [
+ "GA",
+ "Gabonese Republic",
+ "R\u00e9publique Gabonaise"
+ ],
+ "region": "Africa",
+ "subregion": "Middle Africa",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u063a\u0627\u0628\u0648\u0646",
+ "common": "\u0627\u0644\u063a\u0627\u0628\u0648\u0646"
+ },
+ "bre": {
+ "official": "Republik Gabonat",
+ "common": "Gabon"
+ },
+ "ces": {
+ "official": "Gabonsk\u00e1 republika",
+ "common": "Gabon"
+ },
+ "deu": {
+ "official": "Gabunische Republik",
+ "common": "Gabun"
+ },
+ "est": {
+ "official": "Gaboni Vabariik",
+ "common": "Gabon"
+ },
+ "fin": {
+ "official": "Gabonin tasavalta",
+ "common": "Gabon"
+ },
+ "fra": {
+ "official": "R\u00e9publique gabonaise",
+ "common": "Gabon"
+ },
+ "hrv": {
+ "official": "Gabon Republika",
+ "common": "Gabon"
+ },
+ "hun": {
+ "official": "Gaboni K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Gabon"
+ },
+ "ita": {
+ "official": "Repubblica gabonese",
+ "common": "Gabon"
+ },
+ "jpn": {
+ "official": "\u30ac\u30dc\u30f3\u5171\u548c\u56fd",
+ "common": "\u30ac\u30dc\u30f3"
+ },
+ "kor": {
+ "official": "\uac00\ubd09 \uacf5\ud654\uad6d",
+ "common": "\uac00\ubd09"
+ },
+ "nld": {
+ "official": "Republiek Gabon",
+ "common": "Gabon"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06af\u0627\u0628\u064f\u0646",
+ "common": "\u06af\u0627\u0628\u0646"
+ },
+ "pol": {
+ "official": "Republika Gabo\u0144ska",
+ "common": "Gabon"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Gab\u00e3o",
+ "common": "Gab\u00e3o"
+ },
+ "rus": {
+ "official": "\u0413\u0430\u0431\u043e\u043d\u0430 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0413\u0430\u0431\u043e\u043d"
+ },
+ "slk": {
+ "official": "Gabonsk\u00e1 republika",
+ "common": "Gabon"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Gab\u00f3n",
+ "common": "Gab\u00f3n"
+ },
+ "srp": {
+ "official": "Gabonska Republika",
+ "common": "Gabon"
+ },
+ "swe": {
+ "official": "Republiken Gabon",
+ "common": "Gabon"
+ },
+ "tur": {
+ "official": "Gabon Cumhuriyeti",
+ "common": "Gabon"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06af\u06cc\u0628\u0648\u0646",
+ "common": "\u06af\u06cc\u0628\u0648\u0646"
+ },
+ "zho": {
+ "official": "\u52a0\u84ec\u5171\u548c\u56fd",
+ "common": "\u52a0\u84ec"
+ }
+ },
+ "latlng": [
+ -1,
+ 11.75
+ ],
+ "landlocked": false,
+ "borders": [
+ "CMR",
+ "COG",
+ "GNQ"
+ ],
+ "area": 267668,
+ "flag": "\ud83c\uddec\ud83c\udde6",
+ "demonyms": {
+ "eng": {
+ "f": "Gabonese",
+ "m": "Gabonese"
+ },
+ "fra": {
+ "f": "Gabonaise",
+ "m": "Gabonais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "United Kingdom",
+ "official": "United Kingdom of Great Britain and Northern Ireland",
+ "native": {
+ "eng": {
+ "official": "United Kingdom of Great Britain and Northern Ireland",
+ "common": "United Kingdom"
+ }
+ }
+ },
+ "tld": [
+ ".uk"
+ ],
+ "cca2": "GB",
+ "ccn3": "826",
+ "cca3": "GBR",
+ "cioc": "GBR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "GBP": {
+ "name": "British pound",
+ "symbol": "\u00a3"
+ }
+ },
+ "idd": {
+ "root": "+4",
+ "suffixes": [
+ "4"
+ ]
+ },
+ "capital": [
+ "London"
+ ],
+ "altSpellings": [
+ "GB",
+ "UK",
+ "Great Britain"
+ ],
+ "region": "Europe",
+ "subregion": "Northern Europe",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0645\u062a\u062d\u062f\u0629 \u0644\u0628\u0631\u064a\u0637\u0627\u0646\u064a\u0627 \u0627\u0644\u0639\u0638\u0645\u0649 \u0648\u0627\u064a\u0631\u0644\u0646\u062f\u0627 \u0627\u0644\u0634\u0645\u0627\u0644\u064a\u0629",
+ "common": "\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0645\u062a\u062d\u062f\u0629"
+ },
+ "bre": {
+ "official": "Rouantelezh-Unanet Breizh-Veur ha Norzhiwerzhon",
+ "common": "Rouantelezh-Unanet"
+ },
+ "ces": {
+ "official": "Spojen\u00e9 kr\u00e1lovstv\u00ed Velk\u00e9 Brit\u00e1nie a Severn\u00edho Irska",
+ "common": "Spojen\u00e9 kr\u00e1lovstv\u00ed"
+ },
+ "deu": {
+ "official": "Vereinigtes K\u00f6nigreich Gro\u00dfbritannien und Nordirland",
+ "common": "Vereinigtes K\u00f6nigreich"
+ },
+ "est": {
+ "official": "Suurbritannia ja P\u00f5hja-Iiri \u00dchendkuningriik",
+ "common": "Suurbritannia"
+ },
+ "fin": {
+ "official": "Ison-Britannian ja Pohjois-Irlannin yhdistynyt kuningaskunta",
+ "common": "Yhdistynyt kuningaskunta"
+ },
+ "fra": {
+ "official": "Royaume-Uni de Grande-Bretagne et d'Irlande du Nord",
+ "common": "Royaume-Uni"
+ },
+ "hrv": {
+ "official": "Ujedinjeno Kraljevstvo Velike Britanije i Sjeverne Irske",
+ "common": "Ujedinjeno Kraljevstvo"
+ },
+ "hun": {
+ "official": "Nagy-Britannia \u00e9s \u00c9szak-\u00cdrorsz\u00e1g Egyes\u00fclt Kir\u00e1lys\u00e1ga",
+ "common": "Egyes\u00fclt Kir\u00e1lys\u00e1g"
+ },
+ "ita": {
+ "official": "Regno Unito di Gran Bretagna e Irlanda del Nord",
+ "common": "Regno Unito"
+ },
+ "jpn": {
+ "official": "\u30b0\u30ec\u30fc\u30c8\u30d6\u30ea\u30c6\u30f3\u53ca\u3073\u5317\u30a2\u30a4\u30eb\u30e9\u30f3\u30c9\u9023\u5408\u738b\u56fd",
+ "common": "\u30a4\u30ae\u30ea\u30b9"
+ },
+ "kor": {
+ "official": "\uadf8\ub808\uc774\ud2b8\ube0c\ub9ac\ud2bc \ubd81\uc544\uc77c\ub79c\ub4dc \uc5f0\ud569 \uc655\uad6d",
+ "common": "\uc601\uad6d"
+ },
+ "nld": {
+ "official": "Verenigd Koninkrijk van Groot-Brittanni\u00eb en Noord-Ierland",
+ "common": "Verenigd Koninkrijk"
+ },
+ "per": {
+ "official": "\u067e\u0627\u062f\u0634\u0627\u0647\u06cc \u0645\u062a\u062d\u062f \u0628\u0631\u06cc\u062a\u0627\u0646\u06cc\u0627\u06cc \u06a9\u0628\u06cc\u0631 \u0648 \u0627\u06cc\u0631\u0644\u0646\u062f \u0634\u0645\u0627\u0644\u06cc",
+ "common": "\u0627\u0646\u06af\u0644\u06cc\u0633"
+ },
+ "pol": {
+ "official": "Zjednoczone Kr\u00f3lestwo Wielkiej Brytanii i Irlandii P\u00f3\u0142nocnej",
+ "common": "Zjednoczone Kr\u00f3lestwo"
+ },
+ "por": {
+ "official": "Reino Unido da Gr\u00e3-Bretanha e Irlanda do Norte",
+ "common": "Reino Unido"
+ },
+ "rus": {
+ "official": "\u0421\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u043d\u043e\u0435 \u041a\u043e\u0440\u043e\u043b\u0435\u0432\u0441\u0442\u0432\u043e \u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u0438 \u0438 \u0421\u0435\u0432\u0435\u0440\u043d\u043e\u0439 \u0418\u0440\u043b\u0430\u043d\u0434\u0438\u0438",
+ "common": "\u0412\u0435\u043b\u0438\u043a\u043e\u0431\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
+ },
+ "slk": {
+ "official": "Spojen\u00e9 kr\u00e1\u013eovstvo Ve\u013ekej Brit\u00e1nie a Severn\u00e9ho\u00ccrska",
+ "common": "Ve\u013ek\u00e1 Brit\u00e1nia (Spojen\u00e9 kr\u00e1\u013eovstvo)"
+ },
+ "spa": {
+ "official": "Reino Unido de Gran Breta\u00f1a e Irlanda del Norte",
+ "common": "Reino Unido"
+ },
+ "srp": {
+ "official": "Ujedinjeno Kraljevstvo Velike Britanije i Severne Irske",
+ "common": "Ujedinjeno Kraljevstvo"
+ },
+ "swe": {
+ "official": "F\u00f6renade konungariket Storbritannien och Nordirland",
+ "common": "Storbritannien"
+ },
+ "tur": {
+ "official": "B\u00fcy\u00fck Britanya ve Kuzey \u0130rlanda Birle\u015fik Krall\u0131\u011f\u0131",
+ "common": "Birle\u015fik Krall\u0131k"
+ },
+ "urd": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a\u0650 \u0645\u062a\u062d\u062f\u06c1 \u0628\u0631\u0637\u0627\u0646\u06cc\u06c1 \u0639\u0638\u0645\u06cc \u0648 \u0634\u0645\u0627\u0644\u06cc \u0622\u0626\u0631\u0644\u06cc\u0646\u0688",
+ "common": "\u0645\u0645\u0644\u06a9\u062a\u0650 \u0645\u062a\u062d\u062f\u06c1"
+ },
+ "zho": {
+ "official": "\u5927\u4e0d\u5217\u98a0\u53ca\u5317\u7231\u5c14\u5170\u8054\u5408\u738b\u56fd",
+ "common": "\u82f1\u56fd"
+ }
+ },
+ "latlng": [
+ 54,
+ -2
+ ],
+ "landlocked": false,
+ "borders": [
+ "IRL"
+ ],
+ "area": 242900,
+ "flag": "\ud83c\uddec\ud83c\udde7",
+ "demonyms": {
+ "eng": {
+ "f": "British",
+ "m": "British"
+ },
+ "fra": {
+ "f": "Britannique",
+ "m": "Britannique"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Georgia",
+ "official": "Georgia",
+ "native": {
+ "kat": {
+ "official": "\u10e1\u10d0\u10e5\u10d0\u10e0\u10d7\u10d5\u10d4\u10da\u10dd",
+ "common": "\u10e1\u10d0\u10e5\u10d0\u10e0\u10d7\u10d5\u10d4\u10da\u10dd"
+ }
+ }
+ },
+ "tld": [
+ ".ge"
+ ],
+ "cca2": "GE",
+ "ccn3": "268",
+ "cca3": "GEO",
+ "cioc": "GEO",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "GEL": {
+ "name": "lari",
+ "symbol": "\u20be"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "95"
+ ]
+ },
+ "capital": [
+ "Tbilisi"
+ ],
+ "altSpellings": [
+ "GE",
+ "Sakartvelo"
+ ],
+ "region": "Asia",
+ "subregion": "Western Asia",
+ "languages": {
+ "kat": "Georgian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0648\u0631\u062c\u064a\u0627",
+ "common": "\u062c\u0648\u0631\u062c\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Jorjia",
+ "common": "Jorjia"
+ },
+ "ces": {
+ "official": "Gruzie",
+ "common": "Gruzie"
+ },
+ "deu": {
+ "official": "Georgien",
+ "common": "Georgien"
+ },
+ "est": {
+ "official": "Gruusia",
+ "common": "Gruusia"
+ },
+ "fin": {
+ "official": "Georgia",
+ "common": "Georgia"
+ },
+ "fra": {
+ "official": "R\u00e9publique de G\u00e9orgie",
+ "common": "G\u00e9orgie"
+ },
+ "hrv": {
+ "official": "Gruzija",
+ "common": "Gruzija"
+ },
+ "hun": {
+ "official": "Gr\u00fazia",
+ "common": "Gr\u00fazia"
+ },
+ "ita": {
+ "official": "Georgia",
+ "common": "Georgia"
+ },
+ "jpn": {
+ "official": "\u30b8\u30e7\u30fc\u30b8\u30a2",
+ "common": "\u30b8\u30e7\u30fc\u30b8\u30a2"
+ },
+ "kor": {
+ "official": "\uc870\uc9c0\uc544",
+ "common": "\uc870\uc9c0\uc544"
+ },
+ "nld": {
+ "official": "Georgia",
+ "common": "Georgi\u00eb"
+ },
+ "per": {
+ "official": "\u06af\u0631\u062c\u0633\u062a\u0627\u0646",
+ "common": "\u06af\u0631\u062c\u0633\u062a\u0627\u0646"
+ },
+ "pol": {
+ "official": "Gruzja",
+ "common": "Gruzja"
+ },
+ "por": {
+ "official": "Georgia",
+ "common": "Ge\u00f3rgia"
+ },
+ "rus": {
+ "official": "\u0413\u0440\u0443\u0437\u0438\u044f",
+ "common": "\u0413\u0440\u0443\u0437\u0438\u044f"
+ },
+ "slk": {
+ "official": "Gruz\u00ednsko",
+ "common": "Gruz\u00ednsko"
+ },
+ "spa": {
+ "official": "Georgia",
+ "common": "Georgia"
+ },
+ "srp": {
+ "official": "Gruzija",
+ "common": "Gruzija"
+ },
+ "swe": {
+ "official": "Georgien",
+ "common": "Georgien"
+ },
+ "tur": {
+ "official": "G\u00fcrcistan",
+ "common": "G\u00fcrcistan"
+ },
+ "urd": {
+ "official": "\u062c\u0627\u0631\u062c\u06cc\u0627",
+ "common": "\u062c\u0627\u0631\u062c\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u683c\u9c81\u5409\u4e9a",
+ "common": "\u683c\u9c81\u5409\u4e9a"
+ }
+ },
+ "latlng": [
+ 42,
+ 43.5
+ ],
+ "landlocked": false,
+ "borders": [
+ "ARM",
+ "AZE",
+ "RUS",
+ "TUR"
+ ],
+ "area": 69700,
+ "flag": "\ud83c\uddec\ud83c\uddea",
+ "demonyms": {
+ "eng": {
+ "f": "Georgian",
+ "m": "Georgian"
+ },
+ "fra": {
+ "f": "G\u00e9orgienne",
+ "m": "G\u00e9orgien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Guernsey",
+ "official": "Bailiwick of Guernsey",
+ "native": {
+ "eng": {
+ "official": "Bailiwick of Guernsey",
+ "common": "Guernsey"
+ },
+ "fra": {
+ "official": "Bailliage de Guernesey",
+ "common": "Guernesey"
+ },
+ "nfr": {
+ "official": "Dg\u00e8rn\u00e9siais",
+ "common": "Dg\u00e8rn\u00e9siais"
+ }
+ }
+ },
+ "tld": [
+ ".gg"
+ ],
+ "cca2": "GG",
+ "ccn3": "831",
+ "cca3": "GGY",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "GBP": {
+ "name": "British pound",
+ "symbol": "\u00a3"
+ },
+ "GGP": {
+ "name": "Guernsey pound",
+ "symbol": "\u00a3"
+ }
+ },
+ "idd": {
+ "root": "+4",
+ "suffixes": [
+ "4"
+ ]
+ },
+ "capital": [
+ "St. Peter Port"
+ ],
+ "altSpellings": [
+ "GG",
+ "Bailiwick of Guernsey",
+ "Bailliage de Guernesey"
+ ],
+ "region": "Europe",
+ "subregion": "Northern Europe",
+ "languages": {
+ "eng": "English",
+ "fra": "French",
+ "nfr": "Guern\u00e9siais"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u063a\u064a\u0631\u0646\u0632\u064a",
+ "common": "\u063a\u064a\u0631\u0646\u0632\u064a"
+ },
+ "bre": {
+ "official": "Gwernenez",
+ "common": "Gwernenez"
+ },
+ "ces": {
+ "official": "Rycht\u00e1\u0159stv\u00ed Guernsey",
+ "common": "Guernsey"
+ },
+ "deu": {
+ "official": "Vogtei Guernsey",
+ "common": "Guernsey"
+ },
+ "est": {
+ "official": "Guernsey foogtkond",
+ "common": "Guernsey"
+ },
+ "fin": {
+ "official": "Guernsey",
+ "common": "Guernsey"
+ },
+ "fra": {
+ "official": "Bailliage de Guernesey",
+ "common": "Guernesey"
+ },
+ "hrv": {
+ "official": "Struka Guernsey",
+ "common": "Guernsey"
+ },
+ "hun": {
+ "official": "Guernsey",
+ "common": "Guernsey"
+ },
+ "ita": {
+ "official": "Baliato di Guernsey",
+ "common": "Guernsey"
+ },
+ "jpn": {
+ "official": "\u30ac\u30fc\u30f3\u30b8\u30fc\u5cf6",
+ "common": "\u30ac\u30fc\u30f3\u30b8\u30fc"
+ },
+ "kor": {
+ "official": "\uac74\uc9c0 \uc12c",
+ "common": "\uac74\uc9c0 \uc12c"
+ },
+ "nld": {
+ "official": "Baljuwschap Guernsey",
+ "common": "Guernsey"
+ },
+ "per": {
+ "official": "\u06af\u0631\u0646\u0632\u06cc",
+ "common": "\u06af\u0631\u0646\u0632\u06cc"
+ },
+ "pol": {
+ "official": "Baliwat Guernsey",
+ "common": "Guernsey"
+ },
+ "por": {
+ "official": "Bailiado de Guernsey",
+ "common": "Guernsey"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u0440\u043e\u043d\u043d\u043e\u0435 \u0432\u043b\u0430\u0434\u0435\u043d\u0438\u0435 \u0413\u0435\u0440\u043d\u0441\u0438",
+ "common": "\u0413\u0435\u0440\u043d\u0441\u0438"
+ },
+ "slk": {
+ "official": "Guernsey",
+ "common": "Guernsey"
+ },
+ "spa": {
+ "official": "Bail\u00eda de Guernsey",
+ "common": "Guernsey"
+ },
+ "srp": {
+ "official": "Bejlivik Gernzi",
+ "common": "Gernzi"
+ },
+ "swe": {
+ "official": "Guernsey",
+ "common": "Guernsey"
+ },
+ "tur": {
+ "official": "Guernsey Muhaf\u0131zl\u0131\u011f\u0131",
+ "common": "Guernsey"
+ },
+ "urd": {
+ "official": "\u06af\u0631\u0646\u0632\u06cc \u0631\u0648\u062f\u0628\u0627\u0631",
+ "common": "\u06af\u0631\u0646\u0632\u06cc"
+ },
+ "zho": {
+ "official": "\u6839\u897f\u5c9b",
+ "common": "\u6839\u897f\u5c9b"
+ }
+ },
+ "latlng": [
+ 49.46666666,
+ -2.58333333
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 78,
+ "flag": "\ud83c\uddec\ud83c\uddec",
+ "demonyms": {
+ "eng": {
+ "f": "Channel Islander",
+ "m": "Channel Islander"
+ },
+ "fra": {
+ "f": "Guernesiaise",
+ "m": "Guernesiais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Ghana",
+ "official": "Republic of Ghana",
+ "native": {
+ "eng": {
+ "official": "Republic of Ghana",
+ "common": "Ghana"
+ }
+ }
+ },
+ "tld": [
+ ".gh"
+ ],
+ "cca2": "GH",
+ "ccn3": "288",
+ "cca3": "GHA",
+ "cioc": "GHA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "GHS": {
+ "name": "Ghanaian cedi",
+ "symbol": "\u20b5"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "33"
+ ]
+ },
+ "capital": [
+ "Accra"
+ ],
+ "altSpellings": [
+ "GH"
+ ],
+ "region": "Africa",
+ "subregion": "Western Africa",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u063a\u0627\u0646\u0627",
+ "common": "\u063a\u0627\u0646\u0627"
+ },
+ "bre": {
+ "official": "Republik Ghana",
+ "common": "Ghana"
+ },
+ "ces": {
+ "official": "Ghansk\u00e1 republika",
+ "common": "Ghana"
+ },
+ "deu": {
+ "official": "Republik Ghana",
+ "common": "Ghana"
+ },
+ "est": {
+ "official": "Ghana Vabariik",
+ "common": "Ghana"
+ },
+ "fin": {
+ "official": "Ghanan tasavalta",
+ "common": "Ghana"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Ghana",
+ "common": "Ghana"
+ },
+ "hrv": {
+ "official": "Republika Gana",
+ "common": "Gana"
+ },
+ "hun": {
+ "official": "Gh\u00e1nai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Gh\u00e1na"
+ },
+ "ita": {
+ "official": "Repubblica del Ghana",
+ "common": "Ghana"
+ },
+ "jpn": {
+ "official": "\u30ac\u30fc\u30ca\u5171\u548c\u56fd",
+ "common": "\u30ac\u30fc\u30ca"
+ },
+ "kor": {
+ "official": "\uac00\ub098 \uacf5\ud654\uad6d",
+ "common": "\uac00\ub098"
+ },
+ "nld": {
+ "official": "Republiek Ghana",
+ "common": "Ghana"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u063a\u0646\u0627",
+ "common": "\u063a\u0646\u0627"
+ },
+ "pol": {
+ "official": "Republika Ghany",
+ "common": "Ghana"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Gana",
+ "common": "Gana"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0413\u0430\u043d\u0430",
+ "common": "\u0413\u0430\u043d\u0430"
+ },
+ "slk": {
+ "official": "Ghansk\u00e1 republika",
+ "common": "Ghana"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Ghana",
+ "common": "Ghana"
+ },
+ "srp": {
+ "official": "Republika Gana",
+ "common": "Gana"
+ },
+ "swe": {
+ "official": "Republiken Ghana",
+ "common": "Ghana"
+ },
+ "tur": {
+ "official": "Gana Cumhuriyeti",
+ "common": "Gana"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06af\u06be\u0627\u0646\u0627",
+ "common": "\u06af\u06be\u0627\u0646\u0627"
+ },
+ "zho": {
+ "official": "\u52a0\u7eb3\u5171\u548c\u56fd",
+ "common": "\u52a0\u7eb3"
+ }
+ },
+ "latlng": [
+ 8,
+ -2
+ ],
+ "landlocked": false,
+ "borders": [
+ "BFA",
+ "CIV",
+ "TGO"
+ ],
+ "area": 238533,
+ "flag": "\ud83c\uddec\ud83c\udded",
+ "demonyms": {
+ "eng": {
+ "f": "Ghanaian",
+ "m": "Ghanaian"
+ },
+ "fra": {
+ "f": "Ghan\u00e9enne",
+ "m": "Ghan\u00e9en"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Gibraltar",
+ "official": "Gibraltar",
+ "native": {
+ "eng": {
+ "official": "Gibraltar",
+ "common": "Gibraltar"
+ }
+ }
+ },
+ "tld": [
+ ".gi"
+ ],
+ "cca2": "GI",
+ "ccn3": "292",
+ "cca3": "GIB",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "GIP": {
+ "name": "Gibraltar pound",
+ "symbol": "\u00a3"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "50"
+ ]
+ },
+ "capital": [
+ "Gibraltar"
+ ],
+ "altSpellings": [
+ "GI"
+ ],
+ "region": "Europe",
+ "subregion": "Southern Europe",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0628\u0644 \u0637\u0627\u0631\u0642",
+ "common": "\u062c\u0628\u0644 \u0637\u0627\u0631\u0642"
+ },
+ "bre": {
+ "official": "Jibraltar",
+ "common": "Jibraltar"
+ },
+ "ces": {
+ "official": "Gibraltar",
+ "common": "Gibraltar"
+ },
+ "deu": {
+ "official": "Gibraltar",
+ "common": "Gibraltar"
+ },
+ "est": {
+ "official": "Gibraltar",
+ "common": "Gibraltar"
+ },
+ "fin": {
+ "official": "Gibraltar",
+ "common": "Gibraltar"
+ },
+ "fra": {
+ "official": "Gibraltar",
+ "common": "Gibraltar"
+ },
+ "hrv": {
+ "official": "Gibraltar",
+ "common": "Gibraltar"
+ },
+ "hun": {
+ "official": "Gibralt\u00e1r",
+ "common": "Gibralt\u00e1r"
+ },
+ "ita": {
+ "official": "Gibilterra",
+ "common": "Gibilterra"
+ },
+ "jpn": {
+ "official": "\u30b8\u30d6\u30e9\u30eb\u30bf\u30eb",
+ "common": "\u30b8\u30d6\u30e9\u30eb\u30bf\u30eb"
+ },
+ "kor": {
+ "official": "\uc9c0\ube0c\ub864\ud130",
+ "common": "\uc9c0\ube0c\ub864\ud130"
+ },
+ "nld": {
+ "official": "Gibraltar",
+ "common": "Gibraltar"
+ },
+ "per": {
+ "official": "\u062c\u0628\u0644 \u0637\u0627\u0631\u0642",
+ "common": "\u062c\u0628\u0644 \u0637\u0627\u0631\u0642"
+ },
+ "pol": {
+ "official": "Gibraltar",
+ "common": "Gibraltar"
+ },
+ "por": {
+ "official": "Gibraltar",
+ "common": "Gibraltar"
+ },
+ "rus": {
+ "official": "\u0413\u0438\u0431\u0440\u0430\u043b\u0442\u0430\u0440",
+ "common": "\u0413\u0438\u0431\u0440\u0430\u043b\u0442\u0430\u0440"
+ },
+ "slk": {
+ "official": "Gibralt\u00e1r",
+ "common": "Gibralt\u00e1r"
+ },
+ "spa": {
+ "official": "Gibraltar",
+ "common": "Gibraltar"
+ },
+ "srp": {
+ "official": "Gibraltar",
+ "common": "Gibraltar"
+ },
+ "swe": {
+ "official": "Gibraltar",
+ "common": "Gibraltar"
+ },
+ "tur": {
+ "official": "Cebelitar\u0131k",
+ "common": "Cebelitar\u0131k"
+ },
+ "urd": {
+ "official": "\u062c\u0628\u0644 \u0627\u0644\u0637\u0627\u0631\u0642",
+ "common": "\u062c\u0628\u0644 \u0627\u0644\u0637\u0627\u0631\u0642"
+ },
+ "zho": {
+ "official": "\u76f4\u5e03\u7f57\u9640",
+ "common": "\u76f4\u5e03\u7f57\u9640"
+ }
+ },
+ "latlng": [
+ 36.13333333,
+ -5.35
+ ],
+ "landlocked": false,
+ "borders": [
+ "ESP"
+ ],
+ "area": 6,
+ "flag": "\ud83c\uddec\ud83c\uddee",
+ "demonyms": {
+ "eng": {
+ "f": "Gibraltar",
+ "m": "Gibraltar"
+ },
+ "fra": {
+ "f": "Gibraltarienne",
+ "m": "Gibraltarien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Guinea",
+ "official": "Republic of Guinea",
+ "native": {
+ "fra": {
+ "official": "R\u00e9publique de Guin\u00e9e",
+ "common": "Guin\u00e9e"
+ }
+ }
+ },
+ "tld": [
+ ".gn"
+ ],
+ "cca2": "GN",
+ "ccn3": "324",
+ "cca3": "GIN",
+ "cioc": "GUI",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "GNF": {
+ "name": "Guinean franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "24"
+ ]
+ },
+ "capital": [
+ "Conakry"
+ ],
+ "altSpellings": [
+ "GN",
+ "Republic of Guinea",
+ "R\u00e9publique de Guin\u00e9e"
+ ],
+ "region": "Africa",
+ "subregion": "Western Africa",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u063a\u064a\u0646\u064a\u0627",
+ "common": "\u063a\u064a\u0646\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Ginea",
+ "common": "Ginea"
+ },
+ "ces": {
+ "official": "Guinejsk\u00e1 republika",
+ "common": "Guinea"
+ },
+ "deu": {
+ "official": "Republik Guinea",
+ "common": "Guinea"
+ },
+ "est": {
+ "official": "Guinea Vabariik",
+ "common": "Guinea"
+ },
+ "fin": {
+ "official": "Guinean tasavalta",
+ "common": "Guinea"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Guin\u00e9e",
+ "common": "Guin\u00e9e"
+ },
+ "hrv": {
+ "official": "Republika Gvineja",
+ "common": "Gvineja"
+ },
+ "hun": {
+ "official": "Guineai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Guinea"
+ },
+ "ita": {
+ "official": "Repubblica di Guinea",
+ "common": "Guinea"
+ },
+ "jpn": {
+ "official": "\u30ae\u30cb\u30a2\u5171\u548c\u56fd",
+ "common": "\u30ae\u30cb\u30a2"
+ },
+ "kor": {
+ "official": "\uae30\ub2c8 \uacf5\ud654\uad6d",
+ "common": "\uae30\ub2c8"
+ },
+ "nld": {
+ "official": "Republiek Guinee",
+ "common": "Guinee"
+ },
+ "per": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a \u0645\u0633\u062a\u0642\u0644 \u067e\u0627\u067e\u0648\u0622 \u06af\u06cc\u0646\u0647 \u0646\u0648",
+ "common": "\u067e\u0627\u067e\u0648\u0622 \u06af\u06cc\u0646\u0647 \u0646\u0648"
+ },
+ "pol": {
+ "official": "Republika Gwinei",
+ "common": "Gwinea"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Guin\u00e9",
+ "common": "Guin\u00e9"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0413\u0432\u0438\u043d\u0435\u044f",
+ "common": "\u0413\u0432\u0438\u043d\u0435\u044f"
+ },
+ "slk": {
+ "official": "Guinejsk\u00e1 republika",
+ "common": "Guinea"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Guinea",
+ "common": "Guinea"
+ },
+ "srp": {
+ "official": "Republika Gvineja",
+ "common": "Gvineja"
+ },
+ "swe": {
+ "official": "Republiken Guinea",
+ "common": "Guinea"
+ },
+ "tur": {
+ "official": "Gine Cumhuriyeti",
+ "common": "Gine"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06af\u0646\u06cc",
+ "common": "\u06af\u0646\u06cc"
+ },
+ "zho": {
+ "official": "\u51e0\u5185\u4e9a\u5171\u548c\u56fd",
+ "common": "\u51e0\u5185\u4e9a"
+ }
+ },
+ "latlng": [
+ 11,
+ -10
+ ],
+ "landlocked": false,
+ "borders": [
+ "CIV",
+ "GNB",
+ "LBR",
+ "MLI",
+ "SEN",
+ "SLE"
+ ],
+ "area": 245857,
+ "flag": "\ud83c\uddec\ud83c\uddf3",
+ "demonyms": {
+ "eng": {
+ "f": "Guinean",
+ "m": "Guinean"
+ },
+ "fra": {
+ "f": "Guin\u00e9enne",
+ "m": "Guin\u00e9en"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Guadeloupe",
+ "official": "Guadeloupe",
+ "native": {
+ "fra": {
+ "official": "Guadeloupe",
+ "common": "Guadeloupe"
+ }
+ }
+ },
+ "tld": [
+ ".gp"
+ ],
+ "cca2": "GP",
+ "ccn3": "312",
+ "cca3": "GLP",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "90"
+ ]
+ },
+ "capital": [
+ "Basse-Terre"
+ ],
+ "altSpellings": [
+ "GP",
+ "Gwadloup"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u063a\u0648\u0627\u062f\u0644\u0648\u0628",
+ "common": "\u063a\u0648\u0627\u062f\u0644\u0648\u0628"
+ },
+ "bre": {
+ "official": "Gwadeloup",
+ "common": "Gwadeloup"
+ },
+ "ces": {
+ "official": "Guadeloupe",
+ "common": "Guadeloupe"
+ },
+ "deu": {
+ "official": "Guadeloupe",
+ "common": "Guadeloupe"
+ },
+ "est": {
+ "official": "Guadeloupe\u2019i ja s\u00f5ltkondade departemang",
+ "common": "Guadeloupe"
+ },
+ "fin": {
+ "official": "Guadeloupen departmentti",
+ "common": "Guadeloupe"
+ },
+ "fra": {
+ "official": "Guadeloupe",
+ "common": "Guadeloupe"
+ },
+ "hrv": {
+ "official": "Gvadalupa",
+ "common": "Gvadalupa"
+ },
+ "hun": {
+ "official": "Guadeloupe",
+ "common": "Guadeloupe"
+ },
+ "ita": {
+ "official": "Guadeloupe",
+ "common": "Guadeloupa"
+ },
+ "jpn": {
+ "official": "\u30b0\u30a2\u30c9\u30eb\u30fc\u30d7\u5cf6",
+ "common": "\u30b0\u30a2\u30c9\u30eb\u30fc\u30d7"
+ },
+ "kor": {
+ "official": "\uacfc\ub4e4\ub8e8\ud504",
+ "common": "\uacfc\ub4e4\ub8e8\ud504"
+ },
+ "nld": {
+ "official": "Guadeloupe",
+ "common": "Guadeloupe"
+ },
+ "per": {
+ "official": "\u06af\u0648\u0627\u062f\u0644\u0648\u067e",
+ "common": "\u06af\u0648\u0627\u062f\u0644\u0648\u067e"
+ },
+ "pol": {
+ "official": "Gwadelupa",
+ "common": "Gwadelupa"
+ },
+ "por": {
+ "official": "Guadalupe",
+ "common": "Guadalupe"
+ },
+ "rus": {
+ "official": "\u0413\u0432\u0430\u0434\u0435\u043b\u0443\u043f\u0430",
+ "common": "\u0413\u0432\u0430\u0434\u0435\u043b\u0443\u043f\u0430"
+ },
+ "slk": {
+ "official": "Guadeloupe",
+ "common": "Guadeloupe"
+ },
+ "spa": {
+ "official": "Guadalupe",
+ "common": "Guadalupe"
+ },
+ "srp": {
+ "official": "Gvadelup",
+ "common": "Gvadelup"
+ },
+ "swe": {
+ "official": "Guadeloupe",
+ "common": "Guadeloupe"
+ },
+ "tur": {
+ "official": "Guadeloupe",
+ "common": "Guadeloupe"
+ },
+ "urd": {
+ "official": "\u06af\u0648\u0627\u0688\u06cc\u0644\u0648\u067e",
+ "common": "\u06af\u0648\u0627\u0688\u06cc\u0644\u0648\u067e"
+ },
+ "zho": {
+ "official": "\u74dc\u5fb7\u7f57\u666e\u5c9b",
+ "common": "\u74dc\u5fb7\u7f57\u666e\u5c9b"
+ }
+ },
+ "latlng": [
+ 16.25,
+ -61.583333
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 1628,
+ "flag": "\ud83c\uddec\ud83c\uddf5",
+ "demonyms": {
+ "eng": {
+ "f": "Guadeloupian",
+ "m": "Guadeloupian"
+ },
+ "fra": {
+ "f": "Guadeloup\u00e9enne",
+ "m": "Guadeloup\u00e9en"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Gambia",
+ "official": "Republic of the Gambia",
+ "native": {
+ "eng": {
+ "official": "Republic of the Gambia",
+ "common": "Gambia"
+ }
+ }
+ },
+ "tld": [
+ ".gm"
+ ],
+ "cca2": "GM",
+ "ccn3": "270",
+ "cca3": "GMB",
+ "cioc": "GAM",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "GMD": {
+ "name": "dalasi",
+ "symbol": "D"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "20"
+ ]
+ },
+ "capital": [
+ "Banjul"
+ ],
+ "altSpellings": [
+ "GM",
+ "Republic of the Gambia"
+ ],
+ "region": "Africa",
+ "subregion": "Western Africa",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u063a\u0627\u0645\u0628\u064a\u0627",
+ "common": "\u063a\u0627\u0645\u0628\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik islamek ar Gambia",
+ "common": "Gambia"
+ },
+ "ces": {
+ "official": "Gambijsk\u00e1 republika",
+ "common": "Gambie"
+ },
+ "deu": {
+ "official": "Republik Gambia",
+ "common": "Gambia"
+ },
+ "est": {
+ "official": "Gambia Vabariik",
+ "common": "Gambia"
+ },
+ "fin": {
+ "official": "Gambian tasavalta",
+ "common": "Gambia"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Gambie",
+ "common": "Gambie"
+ },
+ "hrv": {
+ "official": "Republika Gambija",
+ "common": "Gambija"
+ },
+ "hun": {
+ "official": "Gambiai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Gambia"
+ },
+ "ita": {
+ "official": "Repubblica del Gambia",
+ "common": "Gambia"
+ },
+ "jpn": {
+ "official": "\u30ac\u30f3\u30d3\u30a2\u5171\u548c\u56fd",
+ "common": "\u30ac\u30f3\u30d3\u30a2"
+ },
+ "kor": {
+ "official": "\uac10\ube44\uc544 \uacf5\ud654\uad6d",
+ "common": "\uac10\ube44\uc544"
+ },
+ "nld": {
+ "official": "Republiek Gambia",
+ "common": "Gambia"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06af\u0627\u0645\u0628\u06cc\u0627",
+ "common": "\u06af\u0627\u0645\u0628\u06cc\u0627"
+ },
+ "pol": {
+ "official": "Republika Gambii",
+ "common": "Gambia"
+ },
+ "por": {
+ "official": "Rep\u00fablica da G\u00e2mbia",
+ "common": "G\u00e2mbia"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0413\u0430\u043c\u0431\u0438\u044f",
+ "common": "\u0413\u0430\u043c\u0431\u0438\u044f"
+ },
+ "slk": {
+ "official": "Gambijsk\u00e1 republika",
+ "common": "Gambia"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Gambia",
+ "common": "Gambia"
+ },
+ "srp": {
+ "official": "Republika Gambija",
+ "common": "Gambija"
+ },
+ "swe": {
+ "official": "Republiken Gambia",
+ "common": "Gambia"
+ },
+ "tur": {
+ "official": "Gambiya Cumhuriyeti",
+ "common": "Gambiya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06af\u06cc\u0645\u0628\u06cc\u0627",
+ "common": "\u06af\u06cc\u0645\u0628\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u5188\u6bd4\u4e9a\u5171\u548c\u56fd",
+ "common": "\u5188\u6bd4\u4e9a"
+ }
+ },
+ "latlng": [
+ 13.46666666,
+ -16.56666666
+ ],
+ "landlocked": false,
+ "borders": [
+ "SEN"
+ ],
+ "area": 10689,
+ "flag": "\ud83c\uddec\ud83c\uddf2",
+ "demonyms": {
+ "eng": {
+ "f": "Gambian",
+ "m": "Gambian"
+ },
+ "fra": {
+ "f": "Gambienne",
+ "m": "Gambien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Guinea-Bissau",
+ "official": "Republic of Guinea-Bissau",
+ "native": {
+ "por": {
+ "official": "Rep\u00fablica da Guin\u00e9-Bissau",
+ "common": "Guin\u00e9-Bissau"
+ },
+ "pov": {
+ "official": "Rep\u00fablica da Guin\u00e9-Bissau",
+ "common": "Guin\u00e9-Bissau"
+ }
+ }
+ },
+ "tld": [
+ ".gw"
+ ],
+ "cca2": "GW",
+ "ccn3": "624",
+ "cca3": "GNB",
+ "cioc": "GBS",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "XOF": {
+ "name": "West African CFA franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "45"
+ ]
+ },
+ "capital": [
+ "Bissau"
+ ],
+ "altSpellings": [
+ "GW",
+ "Republic of Guinea-Bissau",
+ "Rep\u00fablica da Guin\u00e9-Bissau"
+ ],
+ "region": "Africa",
+ "subregion": "Western Africa",
+ "languages": {
+ "por": "Portuguese",
+ "pov": "Upper Guinea Creole"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u063a\u064a\u0646\u064a\u0627 \u0628\u064a\u0633\u0627\u0648",
+ "common": "\u063a\u064a\u0646\u064a\u0627 \u0628\u064a\u0633\u0627\u0648"
+ },
+ "bre": {
+ "official": "Republik Ginea-Bissau",
+ "common": "Ginea-Bissau"
+ },
+ "ces": {
+ "official": "Republika Guinea-Bissau",
+ "common": "Guinea-Bissau"
+ },
+ "deu": {
+ "official": "Republik Guinea-Bissau",
+ "common": "Guinea-Bissau"
+ },
+ "est": {
+ "official": "Guinea-Bissau Vabariik",
+ "common": "Guinea-Bissau"
+ },
+ "fin": {
+ "official": "Guinea-Bissaun tasavalta",
+ "common": "Guinea-Bissau"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Guin\u00e9e-Bissau",
+ "common": "Guin\u00e9e-Bissau"
+ },
+ "hrv": {
+ "official": "Republika Gvineja Bisau",
+ "common": "Gvineja Bisau"
+ },
+ "hun": {
+ "official": "Bissau-Guineai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Bissau-Guinea"
+ },
+ "ita": {
+ "official": "Repubblica di Guinea-Bissau",
+ "common": "Guinea-Bissau"
+ },
+ "jpn": {
+ "official": "\u30ae\u30cb\u30a2\u30d3\u30b5\u30a6\u5171\u548c\u56fd",
+ "common": "\u30ae\u30cb\u30a2\u30d3\u30b5\u30a6"
+ },
+ "kor": {
+ "official": "\uae30\ub2c8\ube44\uc0ac\uc6b0 \uacf5\ud654\uad6d",
+ "common": "\uae30\ub2c8\ube44\uc0ac\uc6b0"
+ },
+ "nld": {
+ "official": "Republiek Guinee-Bissau",
+ "common": "Guinee-Bissau"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06af\u06cc\u0646\u0647 \u0628\u06cc\u0633\u0627\u0626\u0648",
+ "common": "\u06af\u06cc\u0646\u0647 \u0628\u06cc\u0633\u0627\u0626\u0648"
+ },
+ "pol": {
+ "official": "Republika Gwinei Bissau",
+ "common": "Gwinea Bissau"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Guin\u00e9-Bissau",
+ "common": "Guin\u00e9-Bissau"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0413\u0432\u0438\u043d\u0435\u044f -\u0411\u0438\u0441\u0430\u0443",
+ "common": "\u0413\u0432\u0438\u043d\u0435\u044f-\u0411\u0438\u0441\u0430\u0443"
+ },
+ "slk": {
+ "official": "Guinejsko-bissausk\u00e1 republika",
+ "common": "Guinea-Bissau"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Guinea-Bissau",
+ "common": "Guinea-Bis\u00e1u"
+ },
+ "srp": {
+ "official": "Republika Gvineja Bisao",
+ "common": "Gvineja Bisao"
+ },
+ "swe": {
+ "official": "Republiken Guinea-Bissau",
+ "common": "Guinea-Bissau"
+ },
+ "tur": {
+ "official": "Gine-Bissau Cumhuriyeti",
+ "common": "Gine-Bissau"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06af\u0646\u06cc \u0628\u0633\u0627\u0624",
+ "common": "\u06af\u0646\u06cc \u0628\u0633\u0627\u0624"
+ },
+ "zho": {
+ "official": "\u51e0\u5185\u4e9a\u6bd4\u7ecd\u5171\u548c\u56fd",
+ "common": "\u51e0\u5185\u4e9a\u6bd4\u7ecd"
+ }
+ },
+ "latlng": [
+ 12,
+ -15
+ ],
+ "landlocked": false,
+ "borders": [
+ "GIN",
+ "SEN"
+ ],
+ "area": 36125,
+ "flag": "\ud83c\uddec\ud83c\uddfc",
+ "demonyms": {
+ "eng": {
+ "f": "Guinea-Bissauan",
+ "m": "Guinea-Bissauan"
+ },
+ "fra": {
+ "f": "Bissau-Guin\u00e9enne",
+ "m": "Bissau-Guin\u00e9en"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Equatorial Guinea",
+ "official": "Republic of Equatorial Guinea",
+ "native": {
+ "fra": {
+ "official": "R\u00e9publique de la Guin\u00e9e \u00c9quatoriale",
+ "common": "Guin\u00e9e \u00e9quatoriale"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Guin\u00e9 Equatorial",
+ "common": "Guin\u00e9 Equatorial"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Guinea Ecuatorial",
+ "common": "Guinea Ecuatorial"
+ }
+ }
+ },
+ "tld": [
+ ".gq"
+ ],
+ "cca2": "GQ",
+ "ccn3": "226",
+ "cca3": "GNQ",
+ "cioc": "GEQ",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "XAF": {
+ "name": "Central African CFA franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "40"
+ ]
+ },
+ "capital": [
+ "Malabo"
+ ],
+ "altSpellings": [
+ "GQ",
+ "Republic of Equatorial Guinea",
+ "Rep\u00fablica de Guinea Ecuatorial",
+ "R\u00e9publique de Guin\u00e9e \u00e9quatoriale",
+ "Rep\u00fablica da Guin\u00e9 Equatorial"
+ ],
+ "region": "Africa",
+ "subregion": "Middle Africa",
+ "languages": {
+ "fra": "French",
+ "por": "Portuguese",
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u063a\u064a\u0646\u064a\u0627 \u0627\u0644\u0627\u0633\u062a\u0648\u0627\u0626\u064a\u0629",
+ "common": "\u063a\u064a\u0646\u064a\u0627 \u0627\u0644\u0627\u0633\u062a\u0648\u0627\u0626\u064a\u0629"
+ },
+ "bre": {
+ "official": "Republik Ginea ar C'heheder",
+ "common": "Ginea ar C'heheder"
+ },
+ "ces": {
+ "official": "Republika Rovn\u00edkov\u00e1 Guinea",
+ "common": "Rovn\u00edkov\u00e1 Guinea"
+ },
+ "deu": {
+ "official": "Republik \u00c4quatorialguinea",
+ "common": "\u00c4quatorialguinea"
+ },
+ "est": {
+ "official": "Ekvatoriaal-Guinea Vabariik",
+ "common": "Ekvatoriaal-Guinea"
+ },
+ "fin": {
+ "official": "P\u00e4iv\u00e4ntasaajan Guinean tasavalta",
+ "common": "P\u00e4iv\u00e4ntasaajan Guinea"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Guin\u00e9e \u00e9quatoriale",
+ "common": "Guin\u00e9e \u00e9quatoriale"
+ },
+ "hrv": {
+ "official": "Republika Ekvatorska Gvineja",
+ "common": "Ekvatorijalna Gvineja"
+ },
+ "hun": {
+ "official": "Egyenl\u00edt\u0151i-Guinea-i K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Egyenl\u00edt\u0151i-Guinea"
+ },
+ "ita": {
+ "official": "Repubblica della Guinea Equatoriale",
+ "common": "Guinea Equatoriale"
+ },
+ "jpn": {
+ "official": "\u8d64\u9053\u30ae\u30cb\u30a2\u5171\u548c\u56fd",
+ "common": "\u8d64\u9053\u30ae\u30cb\u30a2"
+ },
+ "kor": {
+ "official": "\uc801\ub3c4 \uae30\ub2c8 \uacf5\ud654\uad6d",
+ "common": "\uc801\ub3c4 \uae30\ub2c8"
+ },
+ "nld": {
+ "official": "Republiek Equatoriaal-Guinea",
+ "common": "Equatoriaal-Guinea"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06af\u06cc\u0646\u0647 \u0627\u0633\u062a\u0648\u0627\u06cc\u06cc",
+ "common": "\u06af\u06cc\u0646\u0647 \u0627\u0633\u062a\u0648\u0627\u06cc\u06cc"
+ },
+ "pol": {
+ "official": "Republika Gwinei R\u00f3wnikowej",
+ "common": "Gwinea R\u00f3wnikowa"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Guin\u00e9 Equatorial",
+ "common": "Guin\u00e9 Equatorial"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u042d\u043a\u0432\u0430\u0442\u043e\u0440\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0432\u0438\u043d\u0435\u044f",
+ "common": "\u042d\u043a\u0432\u0430\u0442\u043e\u0440\u0438\u0430\u043b\u044c\u043d\u0430\u044f \u0413\u0432\u0438\u043d\u0435\u044f"
+ },
+ "slk": {
+ "official": "Republika rovn\u00edkovej Guiney",
+ "common": "Rovn\u00edkov\u00e1 Guinea"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Guinea Ecuatorial",
+ "common": "Guinea Ecuatorial"
+ },
+ "srp": {
+ "official": "Republika Ekvatorijalna Gvineja",
+ "common": "Ekvatorijalna Gvineja"
+ },
+ "swe": {
+ "official": "Republiken Ekvatorialguinea",
+ "common": "Ekvatorialguinea"
+ },
+ "tur": {
+ "official": "Ekvator Ginesi Cumhuriyeti",
+ "common": "Ekvator Ginesi"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0627\u0633\u062a\u0648\u0627\u0626\u06cc \u06af\u0646\u06cc",
+ "common": "\u0627\u0633\u062a\u0648\u0627\u0626\u06cc \u06af\u0646\u06cc"
+ },
+ "zho": {
+ "official": "\u8d64\u9053\u51e0\u5185\u4e9a\u5171\u548c\u56fd",
+ "common": "\u8d64\u9053\u51e0\u5185\u4e9a"
+ }
+ },
+ "latlng": [
+ 2,
+ 10
+ ],
+ "landlocked": false,
+ "borders": [
+ "CMR",
+ "GAB"
+ ],
+ "area": 28051,
+ "flag": "\ud83c\uddec\ud83c\uddf6",
+ "demonyms": {
+ "eng": {
+ "f": "Equatorial Guinean",
+ "m": "Equatorial Guinean"
+ },
+ "fra": {
+ "f": "\u00c9quato-guin\u00e9enne",
+ "m": "\u00c9quato-guin\u00e9en"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Greece",
+ "official": "Hellenic Republic",
+ "native": {
+ "ell": {
+ "official": "\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1",
+ "common": "\u0395\u03bb\u03bb\u03ac\u03b4\u03b1"
+ }
+ }
+ },
+ "tld": [
+ ".gr"
+ ],
+ "cca2": "GR",
+ "ccn3": "300",
+ "cca3": "GRC",
+ "cioc": "GRE",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "0"
+ ]
+ },
+ "capital": [
+ "Athens"
+ ],
+ "altSpellings": [
+ "GR",
+ "Ell\u00e1da",
+ "Hellenic Republic",
+ "\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ae \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1"
+ ],
+ "region": "Europe",
+ "subregion": "Southern Europe",
+ "languages": {
+ "ell": "Greek"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0647\u064a\u0644\u064a\u0646\u064a\u0629",
+ "common": "\u0627\u0644\u064a\u0648\u0646\u0627\u0646"
+ },
+ "bre": {
+ "official": "Republik Hellenek",
+ "common": "Gres"
+ },
+ "ces": {
+ "official": "\u0158eck\u00e1 republika",
+ "common": "\u0158ecko"
+ },
+ "deu": {
+ "official": "Hellenische Republik",
+ "common": "Griechenland"
+ },
+ "est": {
+ "official": "Kreeka Vabariik",
+ "common": "Kreeka"
+ },
+ "fin": {
+ "official": "Helleenien tasavalta",
+ "common": "Kreikka"
+ },
+ "fra": {
+ "official": "R\u00e9publique hell\u00e9nique",
+ "common": "Gr\u00e8ce"
+ },
+ "hrv": {
+ "official": "Helenska Republika",
+ "common": "Gr\u010dka"
+ },
+ "hun": {
+ "official": "G\u00f6r\u00f6g K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "G\u00f6r\u00f6gorsz\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica ellenica",
+ "common": "Grecia"
+ },
+ "jpn": {
+ "official": "\u30ae\u30ea\u30b7\u30e3\u5171\u548c\u56fd",
+ "common": "\u30ae\u30ea\u30b7\u30e3"
+ },
+ "kor": {
+ "official": "\uadf8\ub9ac\uc2a4 \uacf5\ud654\uad6d",
+ "common": "\uadf8\ub9ac\uc2a4"
+ },
+ "nld": {
+ "official": "Helleense Republiek",
+ "common": "Griekenland"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06cc\u0648\u0646\u0627\u0646",
+ "common": "\u06cc\u0648\u0646\u0627\u0646"
+ },
+ "pol": {
+ "official": "Republika Grecka",
+ "common": "Grecja"
+ },
+ "por": {
+ "official": "Rep\u00fablica Hel\u00e9nica",
+ "common": "Gr\u00e9cia"
+ },
+ "rus": {
+ "official": "\u0413\u0440\u0435\u0447\u0435\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0413\u0440\u0435\u0446\u0438\u044f"
+ },
+ "slk": {
+ "official": "Gr\u00e9cka republika",
+ "common": "Gre\u00e9cko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Hel\u00e9nica",
+ "common": "Grecia"
+ },
+ "srp": {
+ "official": "Republika Gr\u010dka",
+ "common": "Gr\u010dka"
+ },
+ "swe": {
+ "official": "Republiken Grekland",
+ "common": "Grekland"
+ },
+ "tur": {
+ "official": "Helen Cumhuriyeti",
+ "common": "Yunanistan"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06c1\u06cc\u0644\u06cc\u0646\u06cc\u06c1",
+ "common": "\u06cc\u0648\u0646\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u5e0c\u814a\u5171\u548c\u56fd",
+ "common": "\u5e0c\u814a"
+ }
+ },
+ "latlng": [
+ 39,
+ 22
+ ],
+ "landlocked": false,
+ "borders": [
+ "ALB",
+ "BGR",
+ "TUR",
+ "MKD"
+ ],
+ "area": 131990,
+ "flag": "\ud83c\uddec\ud83c\uddf7",
+ "demonyms": {
+ "eng": {
+ "f": "Greek",
+ "m": "Greek"
+ },
+ "fra": {
+ "f": "Grecque",
+ "m": "Grec"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Grenada",
+ "official": "Grenada",
+ "native": {
+ "eng": {
+ "official": "Grenada",
+ "common": "Grenada"
+ }
+ }
+ },
+ "tld": [
+ ".gd"
+ ],
+ "cca2": "GD",
+ "ccn3": "308",
+ "cca3": "GRD",
+ "cioc": "GRN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "XCD": {
+ "name": "Eastern Caribbean dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "473"
+ ]
+ },
+ "capital": [
+ "St. George's"
+ ],
+ "altSpellings": [
+ "GD"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u063a\u0631\u064a\u0646\u0627\u062f\u0627",
+ "common": "\u063a\u0631\u064a\u0646\u0627\u062f\u0627"
+ },
+ "bre": {
+ "official": "Grenada",
+ "common": "Grenada"
+ },
+ "ces": {
+ "official": "Grenada",
+ "common": "Grenada"
+ },
+ "deu": {
+ "official": "Grenada",
+ "common": "Grenada"
+ },
+ "est": {
+ "official": "Grenada",
+ "common": "Grenada"
+ },
+ "fin": {
+ "official": "Grenada",
+ "common": "Grenada"
+ },
+ "fra": {
+ "official": "Grenade",
+ "common": "Grenade"
+ },
+ "hrv": {
+ "official": "Grenada",
+ "common": "Grenada"
+ },
+ "hun": {
+ "official": "Grenada",
+ "common": "Grenada"
+ },
+ "ita": {
+ "official": "Grenada",
+ "common": "Grenada"
+ },
+ "jpn": {
+ "official": "\u30b0\u30ec\u30ca\u30c0",
+ "common": "\u30b0\u30ec\u30ca\u30c0"
+ },
+ "kor": {
+ "official": "\uadf8\ub808\ub098\ub2e4",
+ "common": "\uadf8\ub808\ub098\ub2e4"
+ },
+ "nld": {
+ "official": "Grenada",
+ "common": "Grenada"
+ },
+ "per": {
+ "official": "\u06af\u0631\u0646\u0627\u062f\u0627",
+ "common": "\u06af\u0631\u0646\u0627\u062f\u0627"
+ },
+ "pol": {
+ "official": "Grenada",
+ "common": "Grenada"
+ },
+ "por": {
+ "official": "Grenada",
+ "common": "Granada"
+ },
+ "rus": {
+ "official": "\u0413\u0440\u0435\u043d\u0430\u0434\u0430",
+ "common": "\u0413\u0440\u0435\u043d\u0430\u0434\u0430"
+ },
+ "slk": {
+ "official": "Grenada",
+ "common": "Grenada"
+ },
+ "spa": {
+ "official": "Granada",
+ "common": "Grenada"
+ },
+ "srp": {
+ "official": "Grenada",
+ "common": "Grenada"
+ },
+ "swe": {
+ "official": "Grenada",
+ "common": "Grenada"
+ },
+ "tur": {
+ "official": "Grenada",
+ "common": "Grenada"
+ },
+ "urd": {
+ "official": "\u06af\u0631\u06cc\u0646\u0627\u0688\u0627",
+ "common": "\u06af\u0631\u06cc\u0646\u0627\u0688\u0627"
+ },
+ "zho": {
+ "official": "\u683c\u6797\u7eb3\u8fbe",
+ "common": "\u683c\u6797\u7eb3\u8fbe"
+ }
+ },
+ "latlng": [
+ 12.11666666,
+ -61.66666666
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 344,
+ "flag": "\ud83c\uddec\ud83c\udde9",
+ "demonyms": {
+ "eng": {
+ "f": "Grenadian",
+ "m": "Grenadian"
+ },
+ "fra": {
+ "f": "Grenadienne",
+ "m": "Grenadien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Greenland",
+ "official": "Greenland",
+ "native": {
+ "kal": {
+ "official": "Kalaallit Nunaat",
+ "common": "Kalaallit Nunaat"
+ }
+ }
+ },
+ "tld": [
+ ".gl"
+ ],
+ "cca2": "GL",
+ "ccn3": "304",
+ "cca3": "GRL",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "DKK": {
+ "name": "krone",
+ "symbol": "kr."
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "99"
+ ]
+ },
+ "capital": [
+ "Nuuk"
+ ],
+ "altSpellings": [
+ "GL",
+ "Gr\u00f8nland"
+ ],
+ "region": "Americas",
+ "subregion": "North America",
+ "languages": {
+ "kal": "Greenlandic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0631\u064a\u0646\u0644\u0627\u0646\u062f",
+ "common": "\u062c\u0631\u064a\u0646\u0644\u0627\u0646\u062f"
+ },
+ "bre": {
+ "official": "Greunland",
+ "common": "Greunland"
+ },
+ "ces": {
+ "official": "Gr\u00f3nsko",
+ "common": "Gr\u00f3nsko"
+ },
+ "deu": {
+ "official": "Gr\u00f6nland",
+ "common": "Gr\u00f6nland"
+ },
+ "est": {
+ "official": "Gr\u00f6\u00f6nimaa",
+ "common": "Gr\u00f6\u00f6nimaa"
+ },
+ "fin": {
+ "official": "Gro\u00f6nlanti",
+ "common": "Gro\u00f6nlanti"
+ },
+ "fra": {
+ "official": "Groenland",
+ "common": "Groenland"
+ },
+ "hrv": {
+ "official": "Grenland",
+ "common": "Grenland"
+ },
+ "hun": {
+ "official": "Gr\u00f6nland",
+ "common": "Gr\u00f6nland"
+ },
+ "ita": {
+ "official": "Groenlandia",
+ "common": "Groenlandia"
+ },
+ "jpn": {
+ "official": "\u30b0\u30ea\u30fc\u30f3\u30e9\u30f3\u30c9",
+ "common": "\u30b0\u30ea\u30fc\u30f3\u30e9\u30f3\u30c9"
+ },
+ "kor": {
+ "official": "\uadf8\ub9b0\ub780\ub4dc",
+ "common": "\uadf8\ub9b0\ub780\ub4dc"
+ },
+ "nld": {
+ "official": "Groenland",
+ "common": "Groenland"
+ },
+ "per": {
+ "official": "\u06af\u0631\u0648\u0626\u0646\u0644\u0646\u062f",
+ "common": "\u06af\u0631\u06cc\u0646\u0644\u0646\u062f"
+ },
+ "pol": {
+ "official": "Grenlandia",
+ "common": "Grenlandia"
+ },
+ "por": {
+ "official": "Groenl\u00e2ndia",
+ "common": "Gronel\u00e2ndia"
+ },
+ "rus": {
+ "official": "\u0413\u0440\u0435\u043d\u043b\u0430\u043d\u0434\u0438\u044f",
+ "common": "\u0413\u0440\u0435\u043d\u043b\u0430\u043d\u0434\u0438\u044f"
+ },
+ "slk": {
+ "official": "Gr\u00f3nsko",
+ "common": "Gr\u00f3nsko"
+ },
+ "spa": {
+ "official": "Groenlandia",
+ "common": "Groenlandia"
+ },
+ "srp": {
+ "official": "Grenland",
+ "common": "Grenland"
+ },
+ "swe": {
+ "official": "Gr\u00f6nland",
+ "common": "Gr\u00f6nland"
+ },
+ "tur": {
+ "official": "Gr\u00f6nland",
+ "common": "Gr\u00f6nland"
+ },
+ "urd": {
+ "official": "\u06af\u0631\u06cc\u0646 \u0644\u06cc\u0646\u0688",
+ "common": "\u06af\u0631\u06cc\u0646 \u0644\u06cc\u0646\u0688"
+ },
+ "zho": {
+ "official": "\u683c\u9675\u5170",
+ "common": "\u683c\u9675\u5170"
+ }
+ },
+ "latlng": [
+ 72,
+ -40
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 2166086,
+ "flag": "\ud83c\uddec\ud83c\uddf1",
+ "demonyms": {
+ "eng": {
+ "f": "Greenlandic",
+ "m": "Greenlandic"
+ },
+ "fra": {
+ "f": "Groenlandaise",
+ "m": "Groenlandais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Guatemala",
+ "official": "Republic of Guatemala",
+ "native": {
+ "spa": {
+ "official": "Rep\u00fablica de Guatemala",
+ "common": "Guatemala"
+ }
+ }
+ },
+ "tld": [
+ ".gt"
+ ],
+ "cca2": "GT",
+ "ccn3": "320",
+ "cca3": "GTM",
+ "cioc": "GUA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "GTQ": {
+ "name": "Guatemalan quetzal",
+ "symbol": "Q"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "02"
+ ]
+ },
+ "capital": [
+ "Guatemala City"
+ ],
+ "altSpellings": [
+ "GT"
+ ],
+ "region": "Americas",
+ "subregion": "Central America",
+ "languages": {
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u063a\u0648\u0627\u062a\u064a\u0645\u0627\u0644\u0627",
+ "common": "\u063a\u0648\u0627\u062a\u064a\u0645\u0627\u0644\u0627"
+ },
+ "bre": {
+ "official": "Republik Guatemala",
+ "common": "Guatemala"
+ },
+ "ces": {
+ "official": "Republika Guatemala",
+ "common": "Guatemala"
+ },
+ "deu": {
+ "official": "Republik Guatemala",
+ "common": "Guatemala"
+ },
+ "est": {
+ "official": "Guatemala Vabariik",
+ "common": "Guatemala"
+ },
+ "fin": {
+ "official": "Guatemalan tasavalta",
+ "common": "Guatemala"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Guatemala",
+ "common": "Guatemala"
+ },
+ "hrv": {
+ "official": "Republika Gvatemala",
+ "common": "Gvatemala"
+ },
+ "hun": {
+ "official": "Guatemalai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Guatemala"
+ },
+ "ita": {
+ "official": "Repubblica del Guatemala",
+ "common": "Guatemala"
+ },
+ "jpn": {
+ "official": "\u30b0\u30a2\u30c6\u30de\u30e9\u5171\u548c\u56fd",
+ "common": "\u30b0\u30a2\u30c6\u30de\u30e9"
+ },
+ "kor": {
+ "official": "\uacfc\ud14c\ub9d0\ub77c \uacf5\ud654\uad6d",
+ "common": "\uacfc\ud14c\ub9d0\ub77c"
+ },
+ "nld": {
+ "official": "Republiek Guatemala",
+ "common": "Guatemala"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06af\u0648\u0627\u062a\u0650\u0645\u0627\u0644\u0627",
+ "common": "\u06af\u0648\u0627\u062a\u0650\u0645\u0627\u0644\u0627"
+ },
+ "pol": {
+ "official": "Republika Gwatemali",
+ "common": "Gwatemala"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Guatemala",
+ "common": "Guatemala"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0413\u0432\u0430\u0442\u0435\u043c\u0430\u043b\u0430",
+ "common": "\u0413\u0432\u0430\u0442\u0435\u043c\u0430\u043b\u0430"
+ },
+ "slk": {
+ "official": "Guatemalsk\u00e1 republika",
+ "common": "Guatemala"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Guatemala",
+ "common": "Guatemala"
+ },
+ "srp": {
+ "official": "Republika Gvatemala",
+ "common": "Gvatemala"
+ },
+ "swe": {
+ "official": "Republiken Guatemala",
+ "common": "Guatemala"
+ },
+ "tur": {
+ "official": "Guatemala Cumhuriyeti",
+ "common": "Guatemala"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06af\u0648\u0627\u062a\u06cc\u0645\u0627\u0644\u0627",
+ "common": "\u06af\u0648\u0627\u062a\u06cc\u0645\u0627\u0644\u0627"
+ },
+ "zho": {
+ "official": "\u5371\u5730\u9a6c\u62c9\u5171\u548c\u56fd",
+ "common": "\u5371\u5730\u9a6c\u62c9"
+ }
+ },
+ "latlng": [
+ 15.5,
+ -90.25
+ ],
+ "landlocked": false,
+ "borders": [
+ "BLZ",
+ "SLV",
+ "HND",
+ "MEX"
+ ],
+ "area": 108889,
+ "flag": "\ud83c\uddec\ud83c\uddf9",
+ "demonyms": {
+ "eng": {
+ "f": "Guatemalan",
+ "m": "Guatemalan"
+ },
+ "fra": {
+ "f": "Guat\u00e9malt\u00e8que",
+ "m": "Guat\u00e9malt\u00e8que"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "French Guiana",
+ "official": "Guiana",
+ "native": {
+ "fra": {
+ "official": "Guyane",
+ "common": "Guyane fran\u00e7aise"
+ }
+ }
+ },
+ "tld": [
+ ".gf"
+ ],
+ "cca2": "GF",
+ "ccn3": "254",
+ "cca3": "GUF",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "94"
+ ]
+ },
+ "capital": [
+ "Cayenne"
+ ],
+ "altSpellings": [
+ "GF",
+ "Guiana",
+ "Guyane"
+ ],
+ "region": "Americas",
+ "subregion": "South America",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u063a\u0648\u064a\u0627\u0646\u0627 \u0627\u0644\u0641\u0631\u0646\u0633\u064a\u0629",
+ "common": "\u063a\u0648\u064a\u0627\u0646\u0627"
+ },
+ "bre": {
+ "official": "Gwiana C'hall",
+ "common": "Gwiana C'hall"
+ },
+ "ces": {
+ "official": "Francouzsk\u00e1 Guyana",
+ "common": "Francouzsk\u00e1 Guyana"
+ },
+ "deu": {
+ "official": "Franz\u00f6sisch-Guayana",
+ "common": "Franz\u00f6sisch-Guayana"
+ },
+ "est": {
+ "official": "Guajaana departemang",
+ "common": "Prantsuse Guajaana"
+ },
+ "fin": {
+ "official": "Ranskan Guayana",
+ "common": "Ranskan Guayana"
+ },
+ "fra": {
+ "official": "Guyane",
+ "common": "Guyane"
+ },
+ "hrv": {
+ "official": "Gijana",
+ "common": "Francuska Gvajana"
+ },
+ "hun": {
+ "official": "Francia Guyana",
+ "common": "Francia Guyana"
+ },
+ "ita": {
+ "official": "Guiana",
+ "common": "Guyana francese"
+ },
+ "jpn": {
+ "official": "\u30d5\u30e9\u30f3\u30b9\u9818\u30ae\u30a2\u30ca",
+ "common": "\u30d5\u30e9\u30f3\u30b9\u9818\u30ae\u30a2\u30ca"
+ },
+ "kor": {
+ "official": "\ud504\ub791\uc2a4\ub839 \uae30\uc544\ub098",
+ "common": "\ud504\ub791\uc2a4\ub839 \uae30\uc544\ub098"
+ },
+ "nld": {
+ "official": "Guyana",
+ "common": "Frans-Guyana"
+ },
+ "per": {
+ "official": "\u06af\u0648\u06cc\u0627\u0646 \u0641\u0631\u0627\u0646\u0633\u0647",
+ "common": "\u06af\u0648\u06cc\u0627\u0646 \u0641\u0631\u0627\u0646\u0633\u0647"
+ },
+ "pol": {
+ "official": "Gujana Francuska",
+ "common": "Gujana Francuska"
+ },
+ "por": {
+ "official": "Guiana",
+ "common": "Guiana Francesa"
+ },
+ "rus": {
+ "official": "\u0413\u0432\u0438\u0430\u043d\u0430",
+ "common": "\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f \u0413\u0432\u0438\u0430\u043d\u0430"
+ },
+ "slk": {
+ "official": "Franc\u00fazska Guyana",
+ "common": "Guyana"
+ },
+ "spa": {
+ "official": "Guayana",
+ "common": "Guayana Francesa"
+ },
+ "srp": {
+ "official": "Gvajana",
+ "common": "Francuska Gvajana"
+ },
+ "swe": {
+ "official": "Franska Guyana",
+ "common": "Franska Guyana"
+ },
+ "tur": {
+ "official": "Frans\u0131z Guyanas\u0131",
+ "common": "Frans\u0131z Guyanas\u0131"
+ },
+ "urd": {
+ "official": "\u06af\u06cc\u0627\u0646\u0627",
+ "common": "\u0641\u0631\u0627\u0646\u0633\u06cc\u0633\u06cc \u06af\u06cc\u0627\u0646\u0627"
+ },
+ "zho": {
+ "official": "\u6cd5\u5c5e\u572d\u4e9a\u90a3",
+ "common": "\u6cd5\u5c5e\u572d\u4e9a\u90a3"
+ }
+ },
+ "latlng": [
+ 4,
+ -53
+ ],
+ "landlocked": false,
+ "borders": [
+ "BRA",
+ "SUR"
+ ],
+ "area": 83534,
+ "flag": "\ud83c\uddec\ud83c\uddeb",
+ "demonyms": {
+ "eng": {
+ "f": "Guianan",
+ "m": "Guianan"
+ },
+ "fra": {
+ "f": "Guyanaise",
+ "m": "Guyanais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Guam",
+ "official": "Guam",
+ "native": {
+ "cha": {
+ "official": "Gu\u00e5h\u00e5n",
+ "common": "Gu\u00e5h\u00e5n"
+ },
+ "eng": {
+ "official": "Guam",
+ "common": "Guam"
+ },
+ "spa": {
+ "official": "Guam",
+ "common": "Guam"
+ }
+ }
+ },
+ "tld": [
+ ".gu"
+ ],
+ "cca2": "GU",
+ "ccn3": "316",
+ "cca3": "GUM",
+ "cioc": "GUM",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "671"
+ ]
+ },
+ "capital": [
+ "Hag\u00e5t\u00f1a"
+ ],
+ "altSpellings": [
+ "GU",
+ "Gu\u00e5h\u00e5n"
+ ],
+ "region": "Oceania",
+ "subregion": "Micronesia",
+ "languages": {
+ "cha": "Chamorro",
+ "eng": "English",
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u063a\u0648\u0627\u0645",
+ "common": "\u063a\u0648\u0627\u0645"
+ },
+ "bre": {
+ "official": "Guam",
+ "common": "Guam"
+ },
+ "ces": {
+ "official": "Guam",
+ "common": "Guam"
+ },
+ "deu": {
+ "official": "Guam",
+ "common": "Guam"
+ },
+ "est": {
+ "official": "Guami ala",
+ "common": "Guam"
+ },
+ "fin": {
+ "official": "Guam",
+ "common": "Guam"
+ },
+ "fra": {
+ "official": "Guam",
+ "common": "Guam"
+ },
+ "hrv": {
+ "official": "Guam",
+ "common": "Guam"
+ },
+ "hun": {
+ "official": "Guam",
+ "common": "Guam"
+ },
+ "ita": {
+ "official": "Guam",
+ "common": "Guam"
+ },
+ "jpn": {
+ "official": "\u30b0\u30a2\u30e0",
+ "common": "\u30b0\u30a2\u30e0"
+ },
+ "kor": {
+ "official": "\uad0c",
+ "common": "\uad0c"
+ },
+ "nld": {
+ "official": "Guam",
+ "common": "Guam"
+ },
+ "per": {
+ "official": "\u06af\u0648\u0622\u0645",
+ "common": "\u06af\u0648\u0622\u0645"
+ },
+ "pol": {
+ "official": "Terytorium Guamu",
+ "common": "Guam"
+ },
+ "por": {
+ "official": "Guam",
+ "common": "Guam"
+ },
+ "rus": {
+ "official": "\u0413\u0443\u0430\u043c",
+ "common": "\u0413\u0443\u0430\u043c"
+ },
+ "slk": {
+ "official": "Guam",
+ "common": "Guam"
+ },
+ "spa": {
+ "official": "Guam",
+ "common": "Guam"
+ },
+ "srp": {
+ "official": "Gvam",
+ "common": "Gvam"
+ },
+ "swe": {
+ "official": "Guam",
+ "common": "Guam"
+ },
+ "tur": {
+ "official": "Guam Topra\u011f\u0131",
+ "common": "Guam"
+ },
+ "urd": {
+ "official": "\u06af\u0648\u0627\u0645",
+ "common": "\u06af\u0648\u0627\u0645"
+ },
+ "zho": {
+ "official": "\u5173\u5c9b",
+ "common": "\u5173\u5c9b"
+ }
+ },
+ "latlng": [
+ 13.46666666,
+ 144.78333333
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 549,
+ "flag": "\ud83c\uddec\ud83c\uddfa",
+ "demonyms": {
+ "eng": {
+ "f": "Guamanian",
+ "m": "Guamanian"
+ },
+ "fra": {
+ "f": "",
+ "m": ""
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Guyana",
+ "official": "Co-operative Republic of Guyana",
+ "native": {
+ "eng": {
+ "official": "Co-operative Republic of Guyana",
+ "common": "Guyana"
+ }
+ }
+ },
+ "tld": [
+ ".gy"
+ ],
+ "cca2": "GY",
+ "ccn3": "328",
+ "cca3": "GUY",
+ "cioc": "GUY",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "GYD": {
+ "name": "Guyanese dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "92"
+ ]
+ },
+ "capital": [
+ "Georgetown"
+ ],
+ "altSpellings": [
+ "GY",
+ "Co-operative Republic of Guyana"
+ ],
+ "region": "Americas",
+ "subregion": "South America",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u063a\u064a\u0627\u0646\u0627 \u0627\u0644\u062a\u0639\u0627\u0648\u0646\u064a\u0629",
+ "common": "\u063a\u064a\u0627\u0646\u0627"
+ },
+ "bre": {
+ "official": "Republik Kevelourel Gwiana",
+ "common": "Guyana"
+ },
+ "ces": {
+ "official": "Kooperativn\u00ed republika Guyana",
+ "common": "Guyana"
+ },
+ "deu": {
+ "official": "Kooperative Republik Guyana",
+ "common": "Guyana"
+ },
+ "est": {
+ "official": "Guyana Vabariik",
+ "common": "Guyana"
+ },
+ "fin": {
+ "official": "Guayanan osuustoiminnallinen tasavalta",
+ "common": "Guayana"
+ },
+ "fra": {
+ "official": "R\u00e9publique coop\u00e9rative de Guyana",
+ "common": "Guyana"
+ },
+ "hrv": {
+ "official": "Zadruga Republika Gvajana",
+ "common": "Gvajana"
+ },
+ "hun": {
+ "official": "Guyanai Sz\u00f6vetkezeti K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Guyana"
+ },
+ "ita": {
+ "official": "Co -operative Republic of Guyana",
+ "common": "Guyana"
+ },
+ "jpn": {
+ "official": "\u30ac\u30a4\u30a2\u30ca\u5171\u548c\u56fd",
+ "common": "\u30ac\u30a4\u30a2\u30ca"
+ },
+ "kor": {
+ "official": "\uac00\uc774\uc544\ub098 \ud611\ub3d9 \uacf5\ud654\uad6d",
+ "common": "\uac00\uc774\uc544\ub098"
+ },
+ "nld": {
+ "official": "Co\u00f6peratieve Republiek Guyana",
+ "common": "Guyana"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062a\u0639\u0627\u0648\u0646\u06cc \u06af\u0648\u06cc\u0627\u0646",
+ "common": "\u06af\u0648\u06cc\u0627\u0646"
+ },
+ "pol": {
+ "official": "Kooperacyjna Republika Gujany",
+ "common": "Gujana"
+ },
+ "por": {
+ "official": "Co -operative Rep\u00fablica da Guiana",
+ "common": "Guiana"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u043e\u043f\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0413\u0430\u0439\u0430\u043d\u0430",
+ "common": "\u0413\u0430\u0439\u0430\u043d\u0430"
+ },
+ "slk": {
+ "official": "Guyansk\u00e1 kooperat\u00edvna republika",
+ "common": "Guyana"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Cooperativa de Guyana",
+ "common": "Guyana"
+ },
+ "srp": {
+ "official": "Kooperativna Republika Gvajana",
+ "common": "Gvajana"
+ },
+ "swe": {
+ "official": "Kooperativa republiken Guyana",
+ "common": "Guyana"
+ },
+ "tur": {
+ "official": "Guyana Kooperatif Cumhuriyeti",
+ "common": "Guyana"
+ },
+ "urd": {
+ "official": "\u062a\u0639\u0627\u0648\u0646\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06af\u06cc\u0627\u0646\u0627",
+ "common": "\u06af\u06cc\u0627\u0646\u0627"
+ },
+ "zho": {
+ "official": "\u572d\u4e9a\u90a3\u5171\u548c\u56fd",
+ "common": "\u572d\u4e9a\u90a3"
+ }
+ },
+ "latlng": [
+ 5,
+ -59
+ ],
+ "landlocked": false,
+ "borders": [
+ "BRA",
+ "SUR",
+ "VEN"
+ ],
+ "area": 214969,
+ "flag": "\ud83c\uddec\ud83c\uddfe",
+ "demonyms": {
+ "eng": {
+ "f": "Guyanese",
+ "m": "Guyanese"
+ },
+ "fra": {
+ "f": "Guyanienne",
+ "m": "Guyanien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Hong Kong",
+ "official": "Hong Kong Special Administrative Region of the People's Republic of China",
+ "native": {
+ "eng": {
+ "official": "Hong Kong Special Administrative Region of the People's Republic of China",
+ "common": "Hong Kong"
+ },
+ "zho": {
+ "official": "\u4e2d\u534e\u4eba\u6c11\u5171\u548c\u56fd\u9999\u6e2f\u7279\u522b\u884c\u653f\u533a",
+ "common": "\u9999\u6e2f"
+ }
+ }
+ },
+ "tld": [
+ ".hk",
+ ".\u9999\u6e2f"
+ ],
+ "cca2": "HK",
+ "ccn3": "344",
+ "cca3": "HKG",
+ "cioc": "HKG",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "HKD": {
+ "name": "Hong Kong dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+8",
+ "suffixes": [
+ "52"
+ ]
+ },
+ "capital": [
+ "City of Victoria"
+ ],
+ "altSpellings": [
+ "HK"
+ ],
+ "region": "Asia",
+ "subregion": "Eastern Asia",
+ "languages": {
+ "eng": "English",
+ "zho": "Chinese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0646\u0637\u0642\u0629 \u0647\u0648\u0646\u063a \u0643\u0648\u0646\u063a \u0627\u0644\u0627\u062f\u0627\u0631\u064a\u0629 \u0627\u0644\u062a\u0627\u0628\u0639\u0629 \u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0635\u064a\u0646 \u0627\u0644\u0634\u0639\u0628\u064a\u0629",
+ "common": "\u0647\u0648\u0646\u063a \u0643\u0648\u0646\u063a"
+ },
+ "bre": {
+ "official": "Rannvro velestradurel arbennik Hong Kong eus Republik pobl Sina",
+ "common": "Hong Kong"
+ },
+ "ces": {
+ "official": "Zvl\u00e1\u0161tn\u00ed administrativn\u00ed oblast \u010c\u00ednsk\u00e9 lidov\u00e9 republiky Hongkong",
+ "common": "Hongkong"
+ },
+ "deu": {
+ "official": "Sonderverwaltungszone Hongkong der Volksrepublik China",
+ "common": "Hongkong"
+ },
+ "est": {
+ "official": "Hongkongi erihalduspiirkond",
+ "common": "Hongkong"
+ },
+ "fin": {
+ "official": "Hong Kongin erityishallintoalue",
+ "common": "Hongkong"
+ },
+ "fra": {
+ "official": "R\u00e9gion administrative sp\u00e9ciale de Hong Kong de la R\u00e9publique populaire de Chine",
+ "common": "Hong Kong"
+ },
+ "hrv": {
+ "official": "Hong Kong Posebnog upravnog podru\u010djaNarodne Republike Kine",
+ "common": "Hong Kong"
+ },
+ "hun": {
+ "official": "Hongkong",
+ "common": "Hongkong"
+ },
+ "ita": {
+ "official": "Hong Kong Regione amministrativa speciale della Repubblica Popolare Cinese",
+ "common": "Hong Kong"
+ },
+ "jpn": {
+ "official": "\u9999\u6e2f\u7279\u5225\u884c\u653f\u533a",
+ "common": "\u9999\u6e2f"
+ },
+ "kor": {
+ "official": "\uc911\ud654\uc778\ubbfc\uacf5\ud654\uad6d \ud64d\ucf69 \ud2b9\ubcc4\ud589\uc815\uad6c",
+ "common": "\ud64d\ucf69"
+ },
+ "nld": {
+ "official": "Hong Kong Speciale Administratieve Regio van de Volksrepubliek China",
+ "common": "Hongkong"
+ },
+ "per": {
+ "official": "\u0647\u064f\u0646\u06af \u06a9\u064f\u0646\u06af",
+ "common": "\u0647\u064f\u0646\u06af \u06a9\u064f\u0646\u06af"
+ },
+ "pol": {
+ "official": "Specjalny Region Administracyjny Chi\u0144skiej Republiki Ludowej Hongkong",
+ "common": "Hongkong"
+ },
+ "por": {
+ "official": "Hong Kong Regi\u00e3o Administrativa Especial da Rep\u00fablica Popular da China",
+ "common": "Hong Kong"
+ },
+ "rus": {
+ "official": "Hong Kong \u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u0440\u0430\u0439\u043e\u043d \u041a\u0438\u0442\u0430\u0439\u0441\u043a\u043e\u0439 \u041d\u0430\u0440\u043e\u0434\u043d\u043e\u0439 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0438 \u041a\u0438\u0442\u0430\u044f",
+ "common": "\u0413\u043e\u043d\u043a\u043e\u043d\u0433"
+ },
+ "slk": {
+ "official": "\u0160peci\u00e1lna administrat\u00edvna oblas\u0165\u010c\u00ednskej \u013eudovej republiky Hongkong",
+ "common": "Hongkong"
+ },
+ "spa": {
+ "official": "Hong Kong Regi\u00f3n Administrativa Especial de la Rep\u00fablica Popular China",
+ "common": "Hong Kong"
+ },
+ "srp": {
+ "official": "Hongkong specijalna administrativna oblast Narodne Republike Kine",
+ "common": "Hongkong"
+ },
+ "swe": {
+ "official": "Hongkong",
+ "common": "Hongkong"
+ },
+ "tur": {
+ "official": "\u00e7in Halk Cumhuriyeti Hong Kong \u00f6zel \u0130dari B\u00f6lgesi",
+ "common": "Hong Kong"
+ },
+ "urd": {
+ "official": "\u06c1\u0627\u0646\u06af \u06a9\u0627\u0646\u06af \u0639\u0648\u0627\u0645\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0686\u06cc\u0646 \u06a9\u0627 \u062e\u0635\u0648\u0635\u06cc \u0627\u0646\u062a\u0638\u0627\u0645\u06cc \u0639\u0644\u0627\u0642\u06c1",
+ "common": "\u06c1\u0627\u0646\u06af \u06a9\u0627\u0646\u06af"
+ },
+ "zho": {
+ "official": "\u4e2d\u534e\u4eba\u6c11\u5171\u548c\u56fd\u9999\u6e2f\u7279\u522b\u884c\u653f\u533a",
+ "common": "\u9999\u6e2f"
+ }
+ },
+ "latlng": [
+ 22.267,
+ 114.188
+ ],
+ "landlocked": false,
+ "borders": [
+ "CHN"
+ ],
+ "area": 1104,
+ "flag": "\ud83c\udded\ud83c\uddf0",
+ "demonyms": {
+ "eng": {
+ "f": "Hong Konger",
+ "m": "Hong Konger"
+ },
+ "fra": {
+ "f": "Hongkongaise",
+ "m": "Hongkongais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Heard Island and McDonald Islands",
+ "official": "Heard Island and McDonald Islands",
+ "native": {
+ "eng": {
+ "official": "Heard Island and McDonald Islands",
+ "common": "Heard Island and McDonald Islands"
+ }
+ }
+ },
+ "tld": [
+ ".hm",
+ ".aq"
+ ],
+ "cca2": "HM",
+ "ccn3": "334",
+ "cca3": "HMD",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {},
+ "idd": {
+ "root": "",
+ "suffixes": []
+ },
+ "capital": [],
+ "altSpellings": [
+ "HM",
+ "Heard Island and McDonald Islands"
+ ],
+ "region": "Antarctic",
+ "subregion": "",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0632\u064a\u0631\u0629 \u0647\u064a\u0631\u062f \u0648\u062c\u0632\u0631 \u0645\u0627\u0643\u062f\u0648\u0646\u0627\u0644\u062f",
+ "common": "\u062c\u0632\u064a\u0631\u0629 \u0647\u064a\u0631\u062f \u0648\u062c\u0632\u0631 \u0645\u0627\u0643\u062f\u0648\u0646\u0627\u0644\u062f"
+ },
+ "bre": {
+ "official": "Enez Heard hag Inizi McDonald",
+ "common": "Inizi Heard ha McDonald"
+ },
+ "ces": {
+ "official": "Heard\u016fv ostrov a McDonaldovy ostrovy",
+ "common": "Heard\u016fv ostrov a McDonaldovy ostrovy"
+ },
+ "deu": {
+ "official": "Heard und McDonaldinseln",
+ "common": "Heard und die McDonaldinseln"
+ },
+ "est": {
+ "official": "Heardi ja McDonaldi saarte ala",
+ "common": "Heard ja McDonald"
+ },
+ "fin": {
+ "official": "Heard ja McDonaldinsaaret",
+ "common": "Heard ja McDonaldinsaaret"
+ },
+ "fra": {
+ "official": "\u00celes Heard-et-MacDonald",
+ "common": "\u00celes Heard-et-MacDonald"
+ },
+ "hrv": {
+ "official": "Otok Heard i oto\u010dje McDonald",
+ "common": "Otok Heard i oto\u010dje McDonald"
+ },
+ "hun": {
+ "official": "Heard-sziget \u00e9s McDonald-szigetek",
+ "common": "Heard-sziget \u00e9s McDonald-szigetek"
+ },
+ "ita": {
+ "official": "Isole Heard e McDonald",
+ "common": "Isole Heard e McDonald"
+ },
+ "jpn": {
+ "official": "\u30cf\u30fc\u30c9\u5cf6\u30fb\u30de\u30af\u30c9\u30ca\u30eb\u30c9\u8af8\u5cf6",
+ "common": "\u30cf\u30fc\u30c9\u5cf6\u3068\u30de\u30af\u30c9\u30ca\u30eb\u30c9\u8af8\u5cf6"
+ },
+ "kor": {
+ "official": "\ud5c8\ub4dc \ub9e5\ub3c4\ub110\ub4dc \uc81c\ub3c4",
+ "common": "\ud5c8\ub4dc \ub9e5\ub3c4\ub110\ub4dc \uc81c\ub3c4"
+ },
+ "nld": {
+ "official": "Heard en McDonaldeilanden",
+ "common": "Heard-en McDonaldeilanden"
+ },
+ "per": {
+ "official": "\u062c\u0632\u06cc\u0631\u0647 \u0647\u0631\u062f \u0648 \u062c\u0632\u0627\u06cc\u0631 \u0645\u06a9\u200c\u062f\u0648\u0646\u0627\u0644\u062f",
+ "common": "\u062c\u0632\u06cc\u0631\u0647 \u0647\u0631\u062f \u0648 \u062c\u0632\u0627\u06cc\u0631 \u0645\u06a9\u200c\u062f\u0648\u0646\u0627\u0644\u062f"
+ },
+ "pol": {
+ "official": "Terytorium Wysp Heard i McDonalda",
+ "common": "Wyspy Heard i McDonalda"
+ },
+ "por": {
+ "official": "Ilha Heard e Ilhas McDonald",
+ "common": "Ilha Heard e Ilhas McDonald"
+ },
+ "rus": {
+ "official": "\u041e\u0441\u0442\u0440\u043e\u0432 \u0425\u0435\u0440\u0434 \u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0430 \u041c\u0430\u043a\u0434\u043e\u043d\u0430\u043b\u044c\u0434",
+ "common": "\u041e\u0441\u0442\u0440\u043e\u0432 \u0425\u0435\u0440\u0434 \u0438 \u043e\u0441\u0442\u0440\u043e\u0432\u0430 \u041c\u0430\u043a\u0434\u043e\u043d\u0430\u043b\u044c\u0434"
+ },
+ "slk": {
+ "official": "Terit\u00f3rium Heardovho ostrova a Macdonaldov\u00fdch ostrovov",
+ "common": "Heardov ostrov"
+ },
+ "spa": {
+ "official": "Islas Heard y McDonald",
+ "common": "Islas Heard y McDonald"
+ },
+ "srp": {
+ "official": "Herdovo ostrvo i Makdonaldova ostrva",
+ "common": "Herdovo ostrvo i Makdonaldova ostrva"
+ },
+ "swe": {
+ "official": "Heard- och McDonald\u00f6arna",
+ "common": "Heard- och McDonald\u00f6arna"
+ },
+ "tur": {
+ "official": "Heard Adas\u0131 ve McDonald Adalar\u0131",
+ "common": "Heard Adas\u0131 ve McDonald Adalar\u0131"
+ },
+ "urd": {
+ "official": "\u062c\u0632\u06cc\u0631\u06c1 \u06c1\u0631\u0688 \u0648 \u062c\u0632\u0627\u0626\u0631 \u0645\u06a9\u0688\u0648\u0646\u0644\u0688",
+ "common": "\u062c\u0632\u06cc\u0631\u06c1 \u06c1\u0631\u0688 \u0648 \u062c\u0632\u0627\u0626\u0631 \u0645\u06a9\u0688\u0648\u0646\u0644\u0688"
+ },
+ "zho": {
+ "official": "\u8d6b\u5fb7\u5c9b\u548c\u9ea6\u5f53\u52b3\u7fa4\u5c9b",
+ "common": "\u8d6b\u5fb7\u5c9b\u548c\u9ea6\u5f53\u52b3\u7fa4\u5c9b"
+ }
+ },
+ "latlng": [
+ -53.1,
+ 72.51666666
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 412,
+ "flag": "\ud83c\udded\ud83c\uddf2",
+ "demonyms": {
+ "eng": {
+ "f": "Heard and McDonald Islander",
+ "m": "Heard and McDonald Islander"
+ },
+ "fra": {
+ "f": "",
+ "m": ""
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Honduras",
+ "official": "Republic of Honduras",
+ "native": {
+ "spa": {
+ "official": "Rep\u00fablica de Honduras",
+ "common": "Honduras"
+ }
+ }
+ },
+ "tld": [
+ ".hn"
+ ],
+ "cca2": "HN",
+ "ccn3": "340",
+ "cca3": "HND",
+ "cioc": "HON",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "HNL": {
+ "name": "Honduran lempira",
+ "symbol": "L"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "04"
+ ]
+ },
+ "capital": [
+ "Tegucigalpa"
+ ],
+ "altSpellings": [
+ "HN",
+ "Republic of Honduras",
+ "Rep\u00fablica de Honduras"
+ ],
+ "region": "Americas",
+ "subregion": "Central America",
+ "languages": {
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0647\u0646\u062f\u0648\u0631\u0627\u0633",
+ "common": "\u0647\u0646\u062f\u0648\u0631\u0627\u0633"
+ },
+ "bre": {
+ "official": "Republik Honduras",
+ "common": "Honduras"
+ },
+ "ces": {
+ "official": "Hondurask\u00e1 republika",
+ "common": "Honduras"
+ },
+ "deu": {
+ "official": "Republik Honduras",
+ "common": "Honduras"
+ },
+ "est": {
+ "official": "Hondurase Vabariik",
+ "common": "Honduras"
+ },
+ "fin": {
+ "official": "Hondurasin tasavalta",
+ "common": "Honduras"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Honduras",
+ "common": "Honduras"
+ },
+ "hrv": {
+ "official": "Republika Honduras",
+ "common": "Honduras"
+ },
+ "hun": {
+ "official": "Hondurasi K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Honduras"
+ },
+ "ita": {
+ "official": "Repubblica di Honduras",
+ "common": "Honduras"
+ },
+ "jpn": {
+ "official": "\u30db\u30f3\u30b8\u30e5\u30e9\u30b9\u5171\u548c\u56fd",
+ "common": "\u30db\u30f3\u30b8\u30e5\u30e9\u30b9"
+ },
+ "kor": {
+ "official": "\uc628\ub450\ub77c\uc2a4 \uacf5\ud654\uad6d",
+ "common": "\uc628\ub450\ub77c\uc2a4"
+ },
+ "nld": {
+ "official": "Republiek Honduras",
+ "common": "Honduras"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0647\u0646\u062f\u0648\u0631\u0627\u0633",
+ "common": "\u0647\u064f\u0646\u062f\u0648\u0631\u0627\u0633"
+ },
+ "pol": {
+ "official": "Republika Hondurasu",
+ "common": "Honduras"
+ },
+ "por": {
+ "official": "Rep\u00fablica de Honduras",
+ "common": "Honduras"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0413\u043e\u043d\u0434\u0443\u0440\u0430\u0441",
+ "common": "\u0413\u043e\u043d\u0434\u0443\u0440\u0430\u0441"
+ },
+ "slk": {
+ "official": "Hondurask\u00e1 republika",
+ "common": "Honduras"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Honduras",
+ "common": "Honduras"
+ },
+ "srp": {
+ "official": "Republika Honduras",
+ "common": "Honduras"
+ },
+ "swe": {
+ "official": "Republiken Honduras",
+ "common": "Honduras"
+ },
+ "tur": {
+ "official": "Honduras Cumhuriyeti",
+ "common": "Honduras"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06c1\u0648\u0646\u0688\u0648\u0631\u0627\u0633",
+ "common": "\u06c1\u0648\u0646\u0688\u0648\u0631\u0627\u0633"
+ },
+ "zho": {
+ "official": "\u6d2a\u90fd\u62c9\u65af\u5171\u548c\u56fd",
+ "common": "\u6d2a\u90fd\u62c9\u65af"
+ }
+ },
+ "latlng": [
+ 15,
+ -86.5
+ ],
+ "landlocked": false,
+ "borders": [
+ "GTM",
+ "SLV",
+ "NIC"
+ ],
+ "area": 112492,
+ "flag": "\ud83c\udded\ud83c\uddf3",
+ "demonyms": {
+ "eng": {
+ "f": "Honduran",
+ "m": "Honduran"
+ },
+ "fra": {
+ "f": "Hondurienne",
+ "m": "Hondurien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Croatia",
+ "official": "Republic of Croatia",
+ "native": {
+ "hrv": {
+ "official": "Republika Hrvatska",
+ "common": "Hrvatska"
+ }
+ }
+ },
+ "tld": [
+ ".hr"
+ ],
+ "cca2": "HR",
+ "ccn3": "191",
+ "cca3": "HRV",
+ "cioc": "CRO",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "85"
+ ]
+ },
+ "capital": [
+ "Zagreb"
+ ],
+ "altSpellings": [
+ "HR",
+ "Hrvatska",
+ "Republic of Croatia",
+ "Republika Hrvatska"
+ ],
+ "region": "Europe",
+ "subregion": "Southeast Europe",
+ "languages": {
+ "hrv": "Croatian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0643\u0631\u0648\u0627\u062a\u064a\u0627",
+ "common": "\u0643\u0631\u0648\u0627\u062a\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Kroatia",
+ "common": "Kroatia"
+ },
+ "ces": {
+ "official": "Chorvatsk\u00e1 republika",
+ "common": "Chorvatsko"
+ },
+ "deu": {
+ "official": "Republik Kroatien",
+ "common": "Kroatien"
+ },
+ "est": {
+ "official": "Horvaatia Vabariik",
+ "common": "Horvaatia"
+ },
+ "fin": {
+ "official": "Kroatian tasavalta",
+ "common": "Kroatia"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Croatie",
+ "common": "Croatie"
+ },
+ "hrv": {
+ "official": "Republika Hrvatska",
+ "common": "Hrvatska"
+ },
+ "hun": {
+ "official": "Horv\u00e1t K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Horv\u00e1torsz\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica di Croazia",
+ "common": "Croazia"
+ },
+ "jpn": {
+ "official": "\u30af\u30ed\u30a2\u30c1\u30a2\u5171\u548c\u56fd",
+ "common": "\u30af\u30ed\u30a2\u30c1\u30a2"
+ },
+ "kor": {
+ "official": "\ud06c\ub85c\uc544\ud2f0\uc544 \uacf5\ud654\uad6d",
+ "common": "\ud06c\ub85c\uc544\ud2f0\uc544"
+ },
+ "nld": {
+ "official": "Republiek Kroati\u00eb",
+ "common": "Kroati\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06a9\u0631\u0648\u0627\u0633\u06cc",
+ "common": "\u06a9\u0631\u064f\u0648\u0627\u0633\u06cc"
+ },
+ "pol": {
+ "official": "Republika Chorwacji",
+ "common": "Chorwacja"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Cro\u00e1cia",
+ "common": "Cro\u00e1cia"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0425\u043e\u0440\u0432\u0430\u0442\u0438\u044f",
+ "common": "\u0425\u043e\u0440\u0432\u0430\u0442\u0438\u044f"
+ },
+ "slk": {
+ "official": "Chorv\u00e1tska republika",
+ "common": "Chorv\u00e1tsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Croacia",
+ "common": "Croacia"
+ },
+ "srp": {
+ "official": "Republika Hrvatska",
+ "common": "Hrvatska"
+ },
+ "swe": {
+ "official": "Republiken Kroatien",
+ "common": "Kroatien"
+ },
+ "tur": {
+ "official": "H\u0131rvatistan Cumhuriyeti",
+ "common": "H\u0131rvatistan"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06a9\u0631\u0648\u06cc\u0626\u0634\u0627",
+ "common": "\u06a9\u0631\u0648\u06cc\u0626\u0634\u0627"
+ },
+ "zho": {
+ "official": "\u514b\u7f57\u5730\u4e9a\u5171\u548c\u56fd",
+ "common": "\u514b\u7f57\u5730\u4e9a"
+ }
+ },
+ "latlng": [
+ 45.16666666,
+ 15.5
+ ],
+ "landlocked": false,
+ "borders": [
+ "BIH",
+ "HUN",
+ "MNE",
+ "SRB",
+ "SVN"
+ ],
+ "area": 56594,
+ "flag": "\ud83c\udded\ud83c\uddf7",
+ "demonyms": {
+ "eng": {
+ "f": "Croatian",
+ "m": "Croatian"
+ },
+ "fra": {
+ "f": "Croate",
+ "m": "Croate"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Haiti",
+ "official": "Republic of Haiti",
+ "native": {
+ "fra": {
+ "official": "R\u00e9publique d'Ha\u00efti",
+ "common": "Ha\u00efti"
+ },
+ "hat": {
+ "official": "Repiblik Ayiti",
+ "common": "Ayiti"
+ }
+ }
+ },
+ "tld": [
+ ".ht"
+ ],
+ "cca2": "HT",
+ "ccn3": "332",
+ "cca3": "HTI",
+ "cioc": "HAI",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "HTG": {
+ "name": "Haitian gourde",
+ "symbol": "G"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "09"
+ ]
+ },
+ "capital": [
+ "Port-au-Prince"
+ ],
+ "altSpellings": [
+ "HT",
+ "Republic of Haiti",
+ "R\u00e9publique d'Ha\u00efti",
+ "Repiblik Ayiti"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "fra": "French",
+ "hat": "Haitian Creole"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0647\u0627\u064a\u062a\u064a",
+ "common": "\u0647\u0627\u064a\u062a\u064a"
+ },
+ "bre": {
+ "official": "Republik Haiti",
+ "common": "Haiti"
+ },
+ "ces": {
+ "official": "Republika Haiti",
+ "common": "Haiti"
+ },
+ "deu": {
+ "official": "Republik Haiti",
+ "common": "Haiti"
+ },
+ "est": {
+ "official": "Haiti Vabariik",
+ "common": "Haiti"
+ },
+ "fin": {
+ "official": "Haitin tasavalta",
+ "common": "Haiti"
+ },
+ "fra": {
+ "official": "R\u00e9publique d'Ha\u00efti",
+ "common": "Ha\u00efti"
+ },
+ "hrv": {
+ "official": "Republika Haiti",
+ "common": "Haiti"
+ },
+ "hun": {
+ "official": "Haiti K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Haiti"
+ },
+ "ita": {
+ "official": "Repubblica di Haiti",
+ "common": "Haiti"
+ },
+ "jpn": {
+ "official": "\u30cf\u30a4\u30c1\u5171\u548c\u56fd",
+ "common": "\u30cf\u30a4\u30c1"
+ },
+ "kor": {
+ "official": "\uc544\uc774\ud2f0 \uacf5\ud654\uad6d",
+ "common": "\uc544\uc774\ud2f0"
+ },
+ "nld": {
+ "official": "Republiek Ha\u00efti",
+ "common": "Ha\u00efti"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0647\u0627\u0626\u06cc\u062a\u06cc",
+ "common": "\u0647\u0627\u0626\u06cc\u062a\u06cc"
+ },
+ "pol": {
+ "official": "Republika Haiti",
+ "common": "Haiti"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Haiti",
+ "common": "Haiti"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0413\u0430\u0438\u0442\u0438",
+ "common": "\u0413\u0430\u0438\u0442\u0438"
+ },
+ "slk": {
+ "official": "Haitsk\u00e1 republika",
+ "common": "Haiti"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Hait\u00ed",
+ "common": "Hait\u00ed"
+ },
+ "srp": {
+ "official": "Republika Haiti",
+ "common": "Haiti"
+ },
+ "swe": {
+ "official": "Republiken Haiti",
+ "common": "Haiti"
+ },
+ "tur": {
+ "official": "Haiti Cumhuriyeti",
+ "common": "Haiti"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06c1\u06cc\u0679\u06cc",
+ "common": "\u06c1\u06cc\u0679\u06cc"
+ },
+ "zho": {
+ "official": "\u6d77\u5730\u5171\u548c\u56fd",
+ "common": "\u6d77\u5730"
+ }
+ },
+ "latlng": [
+ 19,
+ -72.41666666
+ ],
+ "landlocked": false,
+ "borders": [
+ "DOM"
+ ],
+ "area": 27750,
+ "flag": "\ud83c\udded\ud83c\uddf9",
+ "demonyms": {
+ "eng": {
+ "f": "Haitian",
+ "m": "Haitian"
+ },
+ "fra": {
+ "f": "Ha\u00eftienne",
+ "m": "Ha\u00eftien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Hungary",
+ "official": "Hungary",
+ "native": {
+ "hun": {
+ "official": "Magyarorsz\u00e1g",
+ "common": "Magyarorsz\u00e1g"
+ }
+ }
+ },
+ "tld": [
+ ".hu"
+ ],
+ "cca2": "HU",
+ "ccn3": "348",
+ "cca3": "HUN",
+ "cioc": "HUN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "HUF": {
+ "name": "Hungarian forint",
+ "symbol": "Ft"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "6"
+ ]
+ },
+ "capital": [
+ "Budapest"
+ ],
+ "altSpellings": [
+ "HU"
+ ],
+ "region": "Europe",
+ "subregion": "Central Europe",
+ "languages": {
+ "hun": "Hungarian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0645\u062c\u0631\u064a\u0629",
+ "common": "\u0627\u0644\u0645\u062c\u0631"
+ },
+ "bre": {
+ "official": "Hungaria",
+ "common": "Hungaria"
+ },
+ "ces": {
+ "official": "Ma\u010farsko",
+ "common": "Ma\u010farsko"
+ },
+ "deu": {
+ "official": "Ungarn",
+ "common": "Ungarn"
+ },
+ "est": {
+ "official": "Ungari",
+ "common": "Ungari"
+ },
+ "fin": {
+ "official": "Unkari",
+ "common": "Unkari"
+ },
+ "fra": {
+ "official": "Hongrie",
+ "common": "Hongrie"
+ },
+ "hrv": {
+ "official": "Mad\u017earska",
+ "common": "Ma\u0111arska"
+ },
+ "hun": {
+ "official": "Magyarorsz\u00e1g",
+ "common": "Magyarorsz\u00e1g"
+ },
+ "ita": {
+ "official": "Ungheria",
+ "common": "Ungheria"
+ },
+ "jpn": {
+ "official": "\u30cf\u30f3\u30ac\u30ea\u30fc",
+ "common": "\u30cf\u30f3\u30ac\u30ea\u30fc"
+ },
+ "kor": {
+ "official": "\ud5dd\uac00\ub9ac",
+ "common": "\ud5dd\uac00\ub9ac"
+ },
+ "nld": {
+ "official": "Hongarije",
+ "common": "Hongarije"
+ },
+ "per": {
+ "official": "\u0645\u062c\u0627\u0631\u0633\u062a\u0627\u0646",
+ "common": "\u0645\u062c\u0627\u0631\u0633\u062a\u0627\u0646"
+ },
+ "pol": {
+ "official": "W\u0119gry",
+ "common": "W\u0119gry"
+ },
+ "por": {
+ "official": "Hungria",
+ "common": "Hungria"
+ },
+ "rus": {
+ "official": "\u0412\u0435\u043d\u0433\u0440\u0438\u044f",
+ "common": "\u0412\u0435\u043d\u0433\u0440\u0438\u044f"
+ },
+ "slk": {
+ "official": "Ma\u010farsko",
+ "common": "Ma\u010farsko"
+ },
+ "spa": {
+ "official": "Hungr\u00eda",
+ "common": "Hungr\u00eda"
+ },
+ "srp": {
+ "official": "Ma\u0111arska",
+ "common": "Ma\u0111arska"
+ },
+ "swe": {
+ "official": "Ungern",
+ "common": "Ungern"
+ },
+ "tur": {
+ "official": "Macaristan",
+ "common": "Macaristan"
+ },
+ "urd": {
+ "official": "\u0645\u062c\u0627\u0631\u0633\u062a\u0627\u0646",
+ "common": "\u0645\u062c\u0627\u0631\u0633\u062a\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u5308\u7259\u5229",
+ "common": "\u5308\u7259\u5229"
+ }
+ },
+ "latlng": [
+ 47,
+ 20
+ ],
+ "landlocked": true,
+ "borders": [
+ "AUT",
+ "HRV",
+ "ROU",
+ "SRB",
+ "SVK",
+ "SVN",
+ "UKR"
+ ],
+ "area": 93028,
+ "flag": "\ud83c\udded\ud83c\uddfa",
+ "demonyms": {
+ "eng": {
+ "f": "Hungarian",
+ "m": "Hungarian"
+ },
+ "fra": {
+ "f": "Hongroise",
+ "m": "Hongrois"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Indonesia",
+ "official": "Republic of Indonesia",
+ "native": {
+ "ind": {
+ "official": "Republik Indonesia",
+ "common": "Indonesia"
+ }
+ }
+ },
+ "tld": [
+ ".id"
+ ],
+ "cca2": "ID",
+ "ccn3": "360",
+ "cca3": "IDN",
+ "cioc": "INA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "IDR": {
+ "name": "Indonesian rupiah",
+ "symbol": "Rp"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "2"
+ ]
+ },
+ "capital": [
+ "Jakarta"
+ ],
+ "altSpellings": [
+ "ID",
+ "Republic of Indonesia",
+ "Republik Indonesia"
+ ],
+ "region": "Asia",
+ "subregion": "South-Eastern Asia",
+ "languages": {
+ "ind": "Indonesian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0625\u0646\u062f\u0648\u0646\u064a\u0633\u064a\u0627",
+ "common": "\u0625\u0646\u062f\u0648\u0646\u064a\u0633\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Indonezia",
+ "common": "Indonezia"
+ },
+ "ces": {
+ "official": "Indon\u00e9sk\u00e1 republika",
+ "common": "Indon\u00e9sie"
+ },
+ "deu": {
+ "official": "Republik Indonesien",
+ "common": "Indonesien"
+ },
+ "est": {
+ "official": "Indoneesia Vabariik",
+ "common": "Indoneesia"
+ },
+ "fin": {
+ "official": "Indonesian tasavalta",
+ "common": "Indonesia"
+ },
+ "fra": {
+ "official": "R\u00e9publique d'Indon\u00e9sie",
+ "common": "Indon\u00e9sie"
+ },
+ "hrv": {
+ "official": "Republika Indonezija",
+ "common": "Indonezija"
+ },
+ "hun": {
+ "official": "Indon\u00e9z K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Indon\u00e9zia"
+ },
+ "ita": {
+ "official": "Repubblica di Indonesia",
+ "common": "Indonesia"
+ },
+ "jpn": {
+ "official": "\u30a4\u30f3\u30c9\u30cd\u30b7\u30a2\u5171\u548c\u56fd",
+ "common": "\u30a4\u30f3\u30c9\u30cd\u30b7\u30a2"
+ },
+ "kor": {
+ "official": "\uc778\ub3c4\ub124\uc2dc\uc544 \uacf5\ud654\uad6d",
+ "common": "\uc778\ub3c4\ub124\uc2dc\uc544"
+ },
+ "nld": {
+ "official": "Republiek Indonesi\u00eb",
+ "common": "Indonesi\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0646\u062f\u0648\u0646\u0632\u06cc",
+ "common": "\u0627\u0646\u062f\u0648\u0646\u0632\u06cc"
+ },
+ "pol": {
+ "official": "Republika Indonezji",
+ "common": "Indonezja"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Indon\u00e9sia",
+ "common": "Indon\u00e9sia"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0418\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u044f",
+ "common": "\u0418\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u044f"
+ },
+ "slk": {
+ "official": "Indon\u00e9zska republika",
+ "common": "Indon\u00e9zia"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Indonesia",
+ "common": "Indonesia"
+ },
+ "srp": {
+ "official": "Republika Indonezija",
+ "common": "Indonezija"
+ },
+ "swe": {
+ "official": "Republiken Indonesien",
+ "common": "Indonesien"
+ },
+ "tur": {
+ "official": "Endonezya Cumhuriyeti",
+ "common": "Endonezya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0627\u0646\u0688\u0648\u0646\u06cc\u0634\u06cc\u0627",
+ "common": "\u0627\u0646\u0688\u0648\u0646\u06cc\u0634\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u5370\u5ea6\u5c3c\u897f\u4e9a\u5171\u548c\u56fd",
+ "common": "\u5370\u5ea6\u5c3c\u897f\u4e9a"
+ }
+ },
+ "latlng": [
+ -5,
+ 120
+ ],
+ "landlocked": false,
+ "borders": [
+ "TLS",
+ "MYS",
+ "PNG"
+ ],
+ "area": 1904569,
+ "flag": "\ud83c\uddee\ud83c\udde9",
+ "demonyms": {
+ "eng": {
+ "f": "Indonesian",
+ "m": "Indonesian"
+ },
+ "fra": {
+ "f": "Indon\u00e9sienne",
+ "m": "Indon\u00e9sien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Isle of Man",
+ "official": "Isle of Man",
+ "native": {
+ "eng": {
+ "official": "Isle of Man",
+ "common": "Isle of Man"
+ },
+ "glv": {
+ "official": "Ellan Vannin or Mannin",
+ "common": "Mannin"
+ }
+ }
+ },
+ "tld": [
+ ".im"
+ ],
+ "cca2": "IM",
+ "ccn3": "833",
+ "cca3": "IMN",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "GBP": {
+ "name": "British pound",
+ "symbol": "\u00a3"
+ },
+ "IMP": {
+ "name": "Manx pound",
+ "symbol": "\u00a3"
+ }
+ },
+ "idd": {
+ "root": "+4",
+ "suffixes": [
+ "4"
+ ]
+ },
+ "capital": [
+ "Douglas"
+ ],
+ "altSpellings": [
+ "IM",
+ "Ellan Vannin",
+ "Mann",
+ "Mannin"
+ ],
+ "region": "Europe",
+ "subregion": "Northern Europe",
+ "languages": {
+ "eng": "English",
+ "glv": "Manx"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0632\u064a\u0631\u0629 \u0645\u0627\u0646",
+ "common": "\u062c\u0632\u064a\u0631\u0629 \u0645\u0627\u0646"
+ },
+ "bre": {
+ "official": "Enez Vanav",
+ "common": "Enez Vanav"
+ },
+ "ces": {
+ "official": "Ostrov Man",
+ "common": "Ostrov Man"
+ },
+ "deu": {
+ "official": "Isle of Man",
+ "common": "Insel Man"
+ },
+ "est": {
+ "official": "Mani saar",
+ "common": "Mani saar"
+ },
+ "fin": {
+ "official": "Mansaari",
+ "common": "Mansaari"
+ },
+ "fra": {
+ "official": "Isle of Man",
+ "common": "\u00cele de Man"
+ },
+ "hrv": {
+ "official": "Mana ostrvo",
+ "common": "Otok Man"
+ },
+ "hun": {
+ "official": "Man",
+ "common": "Man"
+ },
+ "ita": {
+ "official": "Isola di Man",
+ "common": "Isola di Man"
+ },
+ "jpn": {
+ "official": "\u30de\u30f3\u5cf6",
+ "common": "\u30de\u30f3\u5cf6"
+ },
+ "kor": {
+ "official": "\ub9e8\uc12c",
+ "common": "\ub9e8\uc12c"
+ },
+ "nld": {
+ "official": "Isle of Man",
+ "common": "Isle of Man"
+ },
+ "per": {
+ "official": "\u062c\u0632\u06cc\u0631\u0647\u0654 \u0645\u064e\u0646",
+ "common": "\u062c\u0632\u06cc\u0631\u0647\u0654 \u0645\u064e\u0646"
+ },
+ "pol": {
+ "official": "Wyspa Man",
+ "common": "Wyspa Man"
+ },
+ "por": {
+ "official": "Isle of Man",
+ "common": "Ilha de Man"
+ },
+ "rus": {
+ "official": "\u041e\u0441\u0442\u0440\u043e\u0432 \u041c\u044d\u043d",
+ "common": "\u041e\u0441\u0442\u0440\u043e\u0432 \u041c\u044d\u043d"
+ },
+ "slk": {
+ "official": "Ostrov Man",
+ "common": "Man"
+ },
+ "spa": {
+ "official": "Isla de Man",
+ "common": "Isla de Man"
+ },
+ "srp": {
+ "official": "Ostrvo Men",
+ "common": "Men Ostrvo"
+ },
+ "swe": {
+ "official": "Isle of Man",
+ "common": "Isle of Man"
+ },
+ "tur": {
+ "official": "Man Adas\u0131",
+ "common": "Man Adas\u0131"
+ },
+ "urd": {
+ "official": "\u0622\u0626\u0644 \u0622\u0641 \u0645\u06cc\u0646",
+ "common": "\u0622\u0626\u0644 \u0622\u0641 \u0645\u06cc\u0646"
+ },
+ "zho": {
+ "official": "\u9a6c\u6069\u5c9b",
+ "common": "\u9a6c\u6069\u5c9b"
+ }
+ },
+ "latlng": [
+ 54.25,
+ -4.5
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 572,
+ "flag": "\ud83c\uddee\ud83c\uddf2",
+ "demonyms": {
+ "eng": {
+ "f": "Manx",
+ "m": "Manx"
+ },
+ "fra": {
+ "f": "",
+ "m": ""
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "India",
+ "official": "Republic of India",
+ "native": {
+ "eng": {
+ "official": "Republic of India",
+ "common": "India"
+ },
+ "hin": {
+ "official": "\u092d\u093e\u0930\u0924 \u0917\u0923\u0930\u093e\u091c\u094d\u092f",
+ "common": "\u092d\u093e\u0930\u0924"
+ },
+ "tam": {
+ "official": "\u0b87\u0ba8\u0bcd\u0ba4\u0bbf\u0baf\u0b95\u0bcd \u0b95\u0bc1\u0b9f\u0bbf\u0baf\u0bb0\u0b9a\u0bc1",
+ "common": "\u0b87\u0ba8\u0bcd\u0ba4\u0bbf\u0baf\u0bbe"
+ }
+ }
+ },
+ "tld": [
+ ".in"
+ ],
+ "cca2": "IN",
+ "ccn3": "356",
+ "cca3": "IND",
+ "cioc": "IND",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "INR": {
+ "name": "Indian rupee",
+ "symbol": "\u20b9"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "1"
+ ]
+ },
+ "capital": [
+ "New Delhi"
+ ],
+ "altSpellings": [
+ "IN",
+ "Bh\u0101rat",
+ "Republic of India",
+ "Bharat Ganrajya",
+ "\u0b87\u0ba8\u0bcd\u0ba4\u0bbf\u0baf\u0bbe"
+ ],
+ "region": "Asia",
+ "subregion": "Southern Asia",
+ "languages": {
+ "eng": "English",
+ "hin": "Hindi",
+ "tam": "Tamil"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0647\u0646\u062f",
+ "common": "\u0627\u0644\u0647\u0646\u062f"
+ },
+ "bre": {
+ "official": "Republik India",
+ "common": "India"
+ },
+ "ces": {
+ "official": "Indick\u00e1 republika",
+ "common": "Indie"
+ },
+ "deu": {
+ "official": "Republik Indien",
+ "common": "Indien"
+ },
+ "est": {
+ "official": "India Vabariik",
+ "common": "India"
+ },
+ "fin": {
+ "official": "Intian tasavalta",
+ "common": "Intia"
+ },
+ "fra": {
+ "official": "R\u00e9publique de l'Inde",
+ "common": "Inde"
+ },
+ "hrv": {
+ "official": "Republika Indija",
+ "common": "Indija"
+ },
+ "hun": {
+ "official": "Indiai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "India"
+ },
+ "ita": {
+ "official": "Repubblica dell'India",
+ "common": "India"
+ },
+ "jpn": {
+ "official": "\u30a4\u30f3\u30c9",
+ "common": "\u30a4\u30f3\u30c9"
+ },
+ "kor": {
+ "official": "\uc778\ub3c4 \uacf5\ud654\uad6d",
+ "common": "\uc778\ub3c4"
+ },
+ "nld": {
+ "official": "Republiek India",
+ "common": "India"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0647\u0646\u062f\u0648\u0633\u062a\u0627\u0646",
+ "common": "\u0647\u0646\u062f"
+ },
+ "pol": {
+ "official": "Republika Indii",
+ "common": "Indie"
+ },
+ "por": {
+ "official": "Rep\u00fablica da \u00cdndia",
+ "common": "\u00cdndia"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0418\u043d\u0434\u0438\u044f",
+ "common": "\u0418\u043d\u0434\u0438\u044f"
+ },
+ "slk": {
+ "official": "Indick\u00e1 republika",
+ "common": "India"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de la India",
+ "common": "India"
+ },
+ "srp": {
+ "official": "Republika Indija",
+ "common": "Indija"
+ },
+ "swe": {
+ "official": "Republiken Indien",
+ "common": "Indien"
+ },
+ "tur": {
+ "official": "Hindistan Cumhuriyeti",
+ "common": "Hindistan"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0628\u06be\u0627\u0631\u062a",
+ "common": "\u0628\u06be\u0627\u0631\u062a"
+ },
+ "zho": {
+ "official": "\u5370\u5ea6\u5171\u548c\u56fd",
+ "common": "\u5370\u5ea6"
+ }
+ },
+ "latlng": [
+ 20,
+ 77
+ ],
+ "landlocked": false,
+ "borders": [
+ "BGD",
+ "BTN",
+ "MMR",
+ "CHN",
+ "NPL",
+ "PAK"
+ ],
+ "area": 3287590,
+ "flag": "\ud83c\uddee\ud83c\uddf3",
+ "demonyms": {
+ "eng": {
+ "f": "Indian",
+ "m": "Indian"
+ },
+ "fra": {
+ "f": "Indienne",
+ "m": "Indien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "British Indian Ocean Territory",
+ "official": "British Indian Ocean Territory",
+ "native": {
+ "eng": {
+ "official": "British Indian Ocean Territory",
+ "common": "British Indian Ocean Territory"
+ }
+ }
+ },
+ "tld": [
+ ".io"
+ ],
+ "cca2": "IO",
+ "ccn3": "086",
+ "cca3": "IOT",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "46"
+ ]
+ },
+ "capital": [
+ "Diego Garcia"
+ ],
+ "altSpellings": [
+ "IO"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0625\u0642\u0644\u064a\u0645 \u0627\u0644\u0645\u062d\u064a\u0637 \u0627\u0644\u0647\u0646\u062f\u064a \u0627\u0644\u0628\u0631\u064a\u0637\u0627\u0646\u064a",
+ "common": "\u0625\u0642\u0644\u064a\u0645 \u0627\u0644\u0645\u062d\u064a\u0637 \u0627\u0644\u0647\u0646\u062f\u064a \u0627\u0644\u0628\u0631\u064a\u0637\u0627\u0646\u064a"
+ },
+ "bre": {
+ "official": "Tiriad breizhveurat Meurvor Indez",
+ "common": "Tiriad breizhveurat Meurvor Indez"
+ },
+ "ces": {
+ "official": "Britsk\u00e9 indickooce\u00e1nsk\u00e9 \u00fazem\u00ed",
+ "common": "Britsk\u00e9 indickooce\u00e1nsk\u00e9 \u00fazem\u00ed"
+ },
+ "deu": {
+ "official": "Britisches Territorium im Indischen Ozean",
+ "common": "Britisches Territorium im Indischen Ozean"
+ },
+ "est": {
+ "official": "Briti India ookeani ala",
+ "common": "Briti India ookeani ala"
+ },
+ "fin": {
+ "official": "Brittil\u00e4inen Intian valtameren alue",
+ "common": "Brittil\u00e4inen Intian valtameren alue"
+ },
+ "fra": {
+ "official": "Territoire britannique de l' oc\u00e9an Indien",
+ "common": "Territoire britannique de l'oc\u00e9an Indien"
+ },
+ "hrv": {
+ "official": "British Indian Ocean Territory",
+ "common": "Britanski Indijskooceanski teritorij"
+ },
+ "hun": {
+ "official": "Brit Indiai-\u00f3ce\u00e1ni Ter\u00fclet",
+ "common": "Brit Indiai-\u00f3ce\u00e1ni Ter\u00fclet"
+ },
+ "ita": {
+ "official": "Territorio britannico dell'Oceano Indiano",
+ "common": "Territorio britannico dell'oceano indiano"
+ },
+ "jpn": {
+ "official": "\u82f1\u9818\u30a4\u30f3\u30c9\u6d0b\u5730\u57df",
+ "common": "\u30a4\u30ae\u30ea\u30b9\u9818\u30a4\u30f3\u30c9\u6d0b\u5730\u57df"
+ },
+ "kor": {
+ "official": "\uc778\ub3c4 \uacf5\ud654\uad6d",
+ "common": "\uc778\ub3c4"
+ },
+ "nld": {
+ "official": "Brits Indische Oceaan Territorium",
+ "common": "Britse Gebieden in de Indische Oceaan"
+ },
+ "per": {
+ "official": "\u0642\u0644\u0645\u0631\u0648 \u0628\u0631\u06cc\u062a\u0627\u0646\u06cc\u0627 \u062f\u0631 \u0627\u0642\u06cc\u0627\u0646\u0648\u0633 \u0647\u0646\u062f",
+ "common": "\u0642\u0644\u0645\u0631\u0648 \u0628\u0631\u06cc\u062a\u0627\u0646\u06cc\u0627 \u062f\u0631 \u0627\u0642\u06cc\u0627\u0646\u0648\u0633 \u0647\u0646\u062f"
+ },
+ "pol": {
+ "official": "Brytyjskie Terytorium Oceanu Indyjskiego",
+ "common": "Brytyjskie Terytorium Oceanu Indyjskiego"
+ },
+ "por": {
+ "official": "British Indian Ocean Territory",
+ "common": "Territ\u00f3rio Brit\u00e2nico do Oceano \u00cdndico"
+ },
+ "rus": {
+ "official": "\u0411\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0418\u043d\u0434\u0438\u0439\u0441\u043a\u043e\u0433\u043e \u043e\u043a\u0435\u0430\u043d\u0430",
+ "common": "\u0411\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0430\u044f \u0442\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0432 \u0418\u043d\u0434\u0438\u0439\u0441\u043a\u043e\u043c \u043e\u043a\u0435\u0430\u043d\u0435"
+ },
+ "slk": {
+ "official": "Britsk\u00e9 indickooce\u00e1nske \u00fazemie",
+ "common": "Britsk\u00e9 indickooce\u00e1nske \u00fazemie"
+ },
+ "spa": {
+ "official": "Territorio Brit\u00e1nico del Oc\u00e9ano \u00cdndico",
+ "common": "Territorio Brit\u00e1nico del Oc\u00e9ano \u00cdndico"
+ },
+ "srp": {
+ "official": "Britanska Teritorija Indijskog Okeana",
+ "common": "Britanska Teritorija Indijskog Okeana"
+ },
+ "swe": {
+ "official": "Brittiska territoriet i Indiska Oceanen",
+ "common": "Brittiska territoriet i Indiska Oceanen"
+ },
+ "tur": {
+ "official": "Britanya Hint Okyanusu Topraklar\u0131",
+ "common": "Britanya Hint Okyanusu Topraklar\u0131"
+ },
+ "urd": {
+ "official": "\u0628\u0631\u0637\u0627\u0646\u0648\u06cc \u0628\u062d\u0631\u06c1\u0646\u062f \u062e\u0637\u06c1",
+ "common": "\u0628\u0631\u0637\u0627\u0646\u0648\u06cc \u0628\u062d\u0631\u06c1\u0646\u062f \u062e\u0637\u06c1"
+ },
+ "zho": {
+ "official": "\u82f1\u5c5e\u5370\u5ea6\u6d0b\u9886\u5730",
+ "common": "\u82f1\u5c5e\u5370\u5ea6\u6d0b\u9886\u5730"
+ }
+ },
+ "latlng": [
+ -6,
+ 71.5
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 60,
+ "flag": "\ud83c\uddee\ud83c\uddf4",
+ "demonyms": {
+ "eng": {
+ "f": "Indian",
+ "m": "Indian"
+ },
+ "fra": {
+ "f": "",
+ "m": ""
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Ireland",
+ "official": "Republic of Ireland",
+ "native": {
+ "eng": {
+ "official": "Republic of Ireland",
+ "common": "Ireland"
+ },
+ "gle": {
+ "official": "Poblacht na h\u00c9ireann",
+ "common": "\u00c9ire"
+ }
+ }
+ },
+ "tld": [
+ ".ie"
+ ],
+ "cca2": "IE",
+ "ccn3": "372",
+ "cca3": "IRL",
+ "cioc": "IRL",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "53"
+ ]
+ },
+ "capital": [
+ "Dublin"
+ ],
+ "altSpellings": [
+ "IE",
+ "\u00c9ire",
+ "Republic of Ireland",
+ "Poblacht na h\u00c9ireann"
+ ],
+ "region": "Europe",
+ "subregion": "Northern Europe",
+ "languages": {
+ "eng": "English",
+ "gle": "Irish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0623\u064a\u0631\u0644\u0646\u062f\u0627",
+ "common": "\u0623\u064a\u0631\u0644\u0646\u062f\u0627"
+ },
+ "bre": {
+ "official": "Republik Iwerzhon",
+ "common": "Iwerzhon"
+ },
+ "ces": {
+ "official": "Irsko",
+ "common": "Irsko"
+ },
+ "deu": {
+ "official": "Republik Irland",
+ "common": "Irland"
+ },
+ "est": {
+ "official": "Iirimaa",
+ "common": "Iirimaa"
+ },
+ "fin": {
+ "official": "Irlannin tasavalta",
+ "common": "Irlanti"
+ },
+ "fra": {
+ "official": "R\u00e9publique d'Irlande",
+ "common": "Irlande"
+ },
+ "hrv": {
+ "official": "Republika Irska",
+ "common": "Irska"
+ },
+ "hun": {
+ "official": "\u00cdr K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "\u00cdrorsz\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica d'Irlanda",
+ "common": "Irlanda"
+ },
+ "jpn": {
+ "official": "\u30a2\u30a4\u30eb\u30e9\u30f3\u30c9",
+ "common": "\u30a2\u30a4\u30eb\u30e9\u30f3\u30c9"
+ },
+ "kor": {
+ "official": "\uc544\uc77c\ub79c\ub4dc \uacf5\ud654\uad6d",
+ "common": "\uc544\uc77c\ub79c\ub4dc"
+ },
+ "nld": {
+ "official": "Republic of Ireland",
+ "common": "Ierland"
+ },
+ "per": {
+ "official": "\u0627\u06cc\u0631\u0644\u0646\u062f",
+ "common": "\u0627\u06cc\u0631\u0644\u0646\u062f"
+ },
+ "pol": {
+ "official": "Republika Irlandii",
+ "common": "Irlandia"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Irlanda",
+ "common": "Irlanda"
+ },
+ "rus": {
+ "official": "\u0418\u0440\u043b\u0430\u043d\u0434\u0438\u044f",
+ "common": "\u0418\u0440\u043b\u0430\u043d\u0434\u0438\u044f"
+ },
+ "slk": {
+ "official": "\u00cdrska republika",
+ "common": "\u00cdrsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Irlanda",
+ "common": "Irlanda"
+ },
+ "srp": {
+ "official": "Republika Irska",
+ "common": "Irska"
+ },
+ "swe": {
+ "official": "Irland",
+ "common": "Irland"
+ },
+ "tur": {
+ "official": "\u0130rlanda Cumhuriyeti",
+ "common": "\u0130rlanda"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u062c\u0632\u06cc\u0631\u06c1 \u0622\u0626\u0631\u0644\u06cc\u0646\u0688",
+ "common": "\u062c\u0632\u06cc\u0631\u06c1 \u0622\u0626\u0631\u0644\u06cc\u0646\u0688"
+ },
+ "zho": {
+ "official": "\u7231\u5c14\u5170\u5171\u548c\u56fd",
+ "common": "\u7231\u5c14\u5170"
+ }
+ },
+ "latlng": [
+ 53,
+ -8
+ ],
+ "landlocked": false,
+ "borders": [
+ "GBR"
+ ],
+ "area": 70273,
+ "flag": "\ud83c\uddee\ud83c\uddea",
+ "demonyms": {
+ "eng": {
+ "f": "Irish",
+ "m": "Irish"
+ },
+ "fra": {
+ "f": "Irlandaise",
+ "m": "Irlandais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Iran",
+ "official": "Islamic Republic of Iran",
+ "native": {
+ "fas": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0633\u0644\u0627\u0645\u06cc \u0627\u06cc\u0631\u0627\u0646",
+ "common": "\u0627\u06cc\u0631\u0627\u0646"
+ }
+ }
+ },
+ "tld": [
+ ".ir",
+ "\u0627\u06cc\u0631\u0627\u0646."
+ ],
+ "cca2": "IR",
+ "ccn3": "364",
+ "cca3": "IRN",
+ "cioc": "IRI",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "IRR": {
+ "name": "Iranian rial",
+ "symbol": "\ufdfc"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "8"
+ ]
+ },
+ "capital": [
+ "Tehran"
+ ],
+ "altSpellings": [
+ "IR",
+ "Islamic Republic of Iran",
+ "Iran, Islamic Republic of",
+ "Jomhuri-ye Esl\u0101mi-ye Ir\u0101n"
+ ],
+ "region": "Asia",
+ "subregion": "Southern Asia",
+ "languages": {
+ "fas": "Persian (Farsi)"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0625\u064a\u0631\u0627\u0646 \u0627\u0644\u0625\u0633\u0644\u0627\u0645\u064a\u0629",
+ "common": "\u0625\u064a\u0631\u0627\u0646"
+ },
+ "bre": {
+ "official": "Republik Islamek Iran",
+ "common": "Iran"
+ },
+ "ces": {
+ "official": "Isl\u00e1msk\u00e1 republika \u00cdr\u00e1n",
+ "common": "\u00cdr\u00e1n"
+ },
+ "deu": {
+ "official": "Islamische Republik Iran",
+ "common": "Iran"
+ },
+ "est": {
+ "official": "Iraani Islamivabariik",
+ "common": "Iraan"
+ },
+ "fin": {
+ "official": "Iranin islamilainen tasavalta",
+ "common": "Iran"
+ },
+ "fra": {
+ "official": "R\u00e9publique islamique d'Iran",
+ "common": "Iran"
+ },
+ "hrv": {
+ "official": "Islamska Republika Iran",
+ "common": "Iran"
+ },
+ "hun": {
+ "official": "Ir\u00e1ni Iszl\u00e1m K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Ir\u00e1n"
+ },
+ "ita": {
+ "official": "Repubblica islamica dell'Iran",
+ "common": "Iran"
+ },
+ "jpn": {
+ "official": "\u30a4\u30e9\u30f3\u30fb\u30a4\u30b9\u30e9\u30e0\u5171\u548c\u56fd",
+ "common": "\u30a4\u30e9\u30f3"
+ },
+ "kor": {
+ "official": "\uc774\ub780 \uc774\uc2ac\ub78c \uacf5\ud654\uad6d",
+ "common": "\uc774\ub780"
+ },
+ "nld": {
+ "official": "Islamitische Republiek Iran",
+ "common": "Iran"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0633\u0644\u0627\u0645\u06cc \u0627\u06cc\u0631\u0627\u0646",
+ "common": "\u0627\u06cc\u0631\u0627\u0646"
+ },
+ "pol": {
+ "official": "Islamska Republika Iranu",
+ "common": "Iran"
+ },
+ "por": {
+ "official": "Rep\u00fablica Isl\u00e2mica do Ir\u00e3",
+ "common": "Ir\u00e3o"
+ },
+ "rus": {
+ "official": "\u0418\u0441\u043b\u0430\u043c\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0418\u0440\u0430\u043d",
+ "common": "\u0418\u0440\u0430\u043d"
+ },
+ "slk": {
+ "official": "Ir\u00e1nska islamsk\u00e1 republika",
+ "common": "Ir\u00e1n"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Isl\u00e1mica de Ir\u00e1n",
+ "common": "Iran"
+ },
+ "srp": {
+ "official": "Islamska Republika Iran",
+ "common": "Iran"
+ },
+ "swe": {
+ "official": "Islamiska republiken Iran",
+ "common": "Iran"
+ },
+ "tur": {
+ "official": "\u0130ran \u0130slam Cumhuriyeti",
+ "common": "\u0130ran"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0627\u06cc\u0631\u0627\u0646",
+ "common": "\u0627\u06cc\u0631\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u4f0a\u6717\u4f0a\u65af\u5170\u5171\u548c\u56fd",
+ "common": "\u4f0a\u6717"
+ }
+ },
+ "latlng": [
+ 32,
+ 53
+ ],
+ "landlocked": false,
+ "borders": [
+ "AFG",
+ "ARM",
+ "AZE",
+ "IRQ",
+ "PAK",
+ "TUR",
+ "TKM"
+ ],
+ "area": 1648195,
+ "flag": "\ud83c\uddee\ud83c\uddf7",
+ "demonyms": {
+ "eng": {
+ "f": "Iranian",
+ "m": "Iranian"
+ },
+ "fra": {
+ "f": "Iranienne",
+ "m": "Iranien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Iraq",
+ "official": "Republic of Iraq",
+ "native": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0639\u0631\u0627\u0642",
+ "common": "\u0627\u0644\u0639\u0631\u0627\u0642"
+ },
+ "arc": {
+ "official": "\u0729\u0718\u073c\u071b\u0722\u0735\u0710 \u0710\u071d\u073c\u072a\u0732\u0729",
+ "common": "\u0729\u0718\u073c\u071b\u0722\u0735\u0710"
+ },
+ "ckb": {
+ "official": "\u06a9\u06c6\u0645\u0627\u0631\u06cc \u0639\u06ce\u0631\u0627\u0642",
+ "common": "\u06a9\u06c6\u0645\u0627\u0631\u06cc"
+ }
+ }
+ },
+ "tld": [
+ ".iq"
+ ],
+ "cca2": "IQ",
+ "ccn3": "368",
+ "cca3": "IRQ",
+ "cioc": "IRQ",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "IQD": {
+ "name": "Iraqi dinar",
+ "symbol": "\u0639.\u062f"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "64"
+ ]
+ },
+ "capital": [
+ "Baghdad"
+ ],
+ "altSpellings": [
+ "IQ",
+ "Republic of Iraq",
+ "Jumh\u016briyyat al-\u2018Ir\u0101q"
+ ],
+ "region": "Asia",
+ "subregion": "Western Asia",
+ "languages": {
+ "ara": "Arabic",
+ "arc": "Aramaic",
+ "ckb": "Sorani"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0639\u0631\u0627\u0642",
+ "common": "\u0627\u0644\u0639\u0631\u0627\u0642"
+ },
+ "bre": {
+ "official": "Republik Irak",
+ "common": "Irak"
+ },
+ "ces": {
+ "official": "Ir\u00e1ck\u00e1 republika",
+ "common": "Ir\u00e1k"
+ },
+ "deu": {
+ "official": "Republik Irak",
+ "common": "Irak"
+ },
+ "est": {
+ "official": "Iraagi Vabariik",
+ "common": "Iraak"
+ },
+ "fin": {
+ "official": "Irakin tasavalta",
+ "common": "Irak"
+ },
+ "fra": {
+ "official": "R\u00e9publique d'Irak",
+ "common": "Irak"
+ },
+ "hrv": {
+ "official": "Republika Irak",
+ "common": "Irak"
+ },
+ "hun": {
+ "official": "Iraki K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Irak"
+ },
+ "ita": {
+ "official": "Repubblica dell'Iraq",
+ "common": "Iraq"
+ },
+ "jpn": {
+ "official": "\u30a4\u30e9\u30af\u5171\u548c\u56fd",
+ "common": "\u30a4\u30e9\u30af"
+ },
+ "kor": {
+ "official": "\uc774\ub77c\ud06c \uacf5\ud654\uad6d",
+ "common": "\uc774\ub77c\ud06c"
+ },
+ "nld": {
+ "official": "Republiek Irak",
+ "common": "Irak"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0639\u0631\u0627\u0642",
+ "common": "\u0639\u0631\u0627\u0642"
+ },
+ "pol": {
+ "official": "Republika Iraku",
+ "common": "Irak"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Iraque",
+ "common": "Iraque"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0418\u0440\u0430\u043a",
+ "common": "\u0418\u0440\u0430\u043a"
+ },
+ "slk": {
+ "official": "Irack\u00e1 republika",
+ "common": "Irak"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Irak",
+ "common": "Irak"
+ },
+ "srp": {
+ "official": "Republika Irak",
+ "common": "Irak"
+ },
+ "swe": {
+ "official": "Republiken Irak",
+ "common": "Irak"
+ },
+ "tur": {
+ "official": "Irak Cumhuriyeti",
+ "common": "Irak"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0639\u0631\u0627\u0642",
+ "common": "\u0639\u0631\u0627\u0642"
+ },
+ "zho": {
+ "official": "\u4f0a\u62c9\u514b\u5171\u548c\u56fd",
+ "common": "\u4f0a\u62c9\u514b"
+ }
+ },
+ "latlng": [
+ 33,
+ 44
+ ],
+ "landlocked": false,
+ "borders": [
+ "IRN",
+ "JOR",
+ "KWT",
+ "SAU",
+ "SYR",
+ "TUR"
+ ],
+ "area": 438317,
+ "flag": "\ud83c\uddee\ud83c\uddf6",
+ "demonyms": {
+ "eng": {
+ "f": "Iraqi",
+ "m": "Iraqi"
+ },
+ "fra": {
+ "f": "Irakienne",
+ "m": "Irakien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Iceland",
+ "official": "Iceland",
+ "native": {
+ "isl": {
+ "official": "\u00cdsland",
+ "common": "\u00cdsland"
+ }
+ }
+ },
+ "tld": [
+ ".is"
+ ],
+ "cca2": "IS",
+ "ccn3": "352",
+ "cca3": "ISL",
+ "cioc": "ISL",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "ISK": {
+ "name": "Icelandic kr\u00f3na",
+ "symbol": "kr"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "54"
+ ]
+ },
+ "capital": [
+ "Reykjavik"
+ ],
+ "altSpellings": [
+ "IS",
+ "Island",
+ "Republic of Iceland",
+ "L\u00fd\u00f0veldi\u00f0 \u00cdsland"
+ ],
+ "region": "Europe",
+ "subregion": "Northern Europe",
+ "languages": {
+ "isl": "Icelandic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0622\u064a\u0633\u0644\u0646\u062f\u0627",
+ "common": "\u0622\u064a\u0633\u0644\u0646\u062f\u0627"
+ },
+ "bre": {
+ "official": "Island",
+ "common": "Island"
+ },
+ "ces": {
+ "official": "Island",
+ "common": "Island"
+ },
+ "deu": {
+ "official": "Island",
+ "common": "Island"
+ },
+ "est": {
+ "official": "Islandi Vabariik",
+ "common": "Island"
+ },
+ "fin": {
+ "official": "Islanti",
+ "common": "Islanti"
+ },
+ "fra": {
+ "official": "R\u00e9publique d'Islande",
+ "common": "Islande"
+ },
+ "hrv": {
+ "official": "Island",
+ "common": "Island"
+ },
+ "hun": {
+ "official": "Izland",
+ "common": "Izland"
+ },
+ "ita": {
+ "official": "Islanda",
+ "common": "Islanda"
+ },
+ "jpn": {
+ "official": "\u30a2\u30a4\u30b9\u30e9\u30f3\u30c9",
+ "common": "\u30a2\u30a4\u30b9\u30e9\u30f3\u30c9"
+ },
+ "kor": {
+ "official": "\uc544\uc774\uc2ac\ub780\ub4dc \uacf5\ud654\uad6d",
+ "common": "\uc544\uc774\uc2ac\ub780\ub4dc"
+ },
+ "nld": {
+ "official": "IJsland",
+ "common": "IJsland"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u06cc\u0633\u0644\u0646\u062f",
+ "common": "\u0627\u06cc\u0633\u0644\u0646\u062f"
+ },
+ "pol": {
+ "official": "Republika Islandii",
+ "common": "Islandia"
+ },
+ "por": {
+ "official": "Isl\u00e2ndia",
+ "common": "Isl\u00e2ndia"
+ },
+ "rus": {
+ "official": "\u0418\u0441\u043b\u0430\u043d\u0434\u0438\u044f",
+ "common": "\u0418\u0441\u043b\u0430\u043d\u0434\u0438\u044f"
+ },
+ "slk": {
+ "official": "Islandsk\u00e1 republika",
+ "common": "Island"
+ },
+ "spa": {
+ "official": "Islandia",
+ "common": "Islandia"
+ },
+ "srp": {
+ "official": "Republika Island",
+ "common": "Island"
+ },
+ "swe": {
+ "official": "Island",
+ "common": "Island"
+ },
+ "tur": {
+ "official": "\u0130zlanda",
+ "common": "\u0130zlanda"
+ },
+ "urd": {
+ "official": "\u0622\u0626\u0633 \u0644\u06cc\u0646\u0688",
+ "common": "\u0622\u0626\u0633 \u0644\u06cc\u0646\u0688"
+ },
+ "zho": {
+ "official": "\u51b0\u5c9b",
+ "common": "\u51b0\u5c9b"
+ }
+ },
+ "latlng": [
+ 65,
+ -18
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 103000,
+ "flag": "\ud83c\uddee\ud83c\uddf8",
+ "demonyms": {
+ "eng": {
+ "f": "Icelander",
+ "m": "Icelander"
+ },
+ "fra": {
+ "f": "Islandaise",
+ "m": "Islandais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Israel",
+ "official": "State of Israel",
+ "native": {
+ "ara": {
+ "official": "\u062f\u0648\u0644\u0629 \u0625\u0633\u0631\u0627\u0626\u064a\u0644",
+ "common": "\u0625\u0633\u0631\u0627\u0626\u064a\u0644"
+ },
+ "heb": {
+ "official": "\u05de\u05d3\u05d9\u05e0\u05ea \u05d9\u05e9\u05e8\u05d0\u05dc",
+ "common": "\u05d9\u05e9\u05e8\u05d0\u05dc"
+ }
+ }
+ },
+ "tld": [
+ ".il"
+ ],
+ "cca2": "IL",
+ "ccn3": "376",
+ "cca3": "ISR",
+ "cioc": "ISR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "ILS": {
+ "name": "Israeli new shekel",
+ "symbol": "\u20aa"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "72"
+ ]
+ },
+ "capital": [
+ "Jerusalem"
+ ],
+ "altSpellings": [
+ "IL",
+ "State of Israel",
+ "Med\u012bnat Yisr\u0101'el"
+ ],
+ "region": "Asia",
+ "subregion": "Western Asia",
+ "languages": {
+ "ara": "Arabic",
+ "heb": "Hebrew"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062f\u0648\u0644\u0629 \u0625\u0633\u0631\u0627\u0626\u064a\u0644",
+ "common": "\u0625\u0633\u0631\u0627\u0626\u064a\u0644"
+ },
+ "bre": {
+ "official": "Stad Israel",
+ "common": "Israel"
+ },
+ "ces": {
+ "official": "St\u00e1t Izrael",
+ "common": "Izrael"
+ },
+ "deu": {
+ "official": "Staat Israel",
+ "common": "Israel"
+ },
+ "est": {
+ "official": "Iisraeli Riik",
+ "common": "Iisrael"
+ },
+ "fin": {
+ "official": "Israelin valtio",
+ "common": "Israel"
+ },
+ "fra": {
+ "official": "\u00c9tat d'Isra\u00ebl",
+ "common": "Isra\u00ebl"
+ },
+ "hrv": {
+ "official": "Dr\u017eava Izrael",
+ "common": "Izrael"
+ },
+ "hun": {
+ "official": "Izrael",
+ "common": "Izrael"
+ },
+ "ita": {
+ "official": "Stato di Israele",
+ "common": "Israele"
+ },
+ "jpn": {
+ "official": "\u30a4\u30b9\u30e9\u30a8\u30eb\u56fd",
+ "common": "\u30a4\u30b9\u30e9\u30a8\u30eb"
+ },
+ "kor": {
+ "official": "\uc774\uc2a4\ub77c\uc5d8\uad6d",
+ "common": "\uc774\uc2a4\ub77c\uc5d8"
+ },
+ "nld": {
+ "official": "Staat Isra\u00ebl",
+ "common": "Isra\u00ebl"
+ },
+ "per": {
+ "official": "\u0641\u0644\u0633\u0637\u064a\u0646 \u0627\u0634\u063a\u0627\u0644\u06cc",
+ "common": "\u0641\u0644\u0633\u0637\u064a\u0646 \u0627\u0634\u063a\u0627\u0644\u06cc"
+ },
+ "pol": {
+ "official": "Pa\u0144stwo Izrael",
+ "common": "Izrael"
+ },
+ "por": {
+ "official": "Estado de Israel",
+ "common": "Israel"
+ },
+ "rus": {
+ "official": "\u0413\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u043e \u0418\u0437\u0440\u0430\u0438\u043b\u044c",
+ "common": "\u0418\u0437\u0440\u0430\u0438\u043b\u044c"
+ },
+ "slk": {
+ "official": "Izraelsk\u00fd \u0161t\u00e1t",
+ "common": "Izrael"
+ },
+ "spa": {
+ "official": "Estado de Israel",
+ "common": "Israel"
+ },
+ "srp": {
+ "official": "Dr\u017eava Izrael",
+ "common": "Izrael"
+ },
+ "swe": {
+ "official": "Staten Israel",
+ "common": "Israel"
+ },
+ "tur": {
+ "official": "\u0130srail Devleti",
+ "common": "\u0130srail"
+ },
+ "urd": {
+ "official": "\u0631\u06cc\u0627\u0633\u062a\u0650 \u0627\u0633\u0631\u0627\u0626\u06cc\u0644",
+ "common": "\u0627\u0633\u0631\u0627\u0626\u06cc\u0644"
+ },
+ "zho": {
+ "official": "\u4ee5\u8272\u5217\u56fd",
+ "common": "\u4ee5\u8272\u5217"
+ }
+ },
+ "latlng": [
+ 31.47,
+ 35.13
+ ],
+ "landlocked": false,
+ "borders": [
+ "EGY",
+ "JOR",
+ "LBN",
+ "PSE",
+ "SYR"
+ ],
+ "area": 20770,
+ "flag": "\ud83c\uddee\ud83c\uddf1",
+ "demonyms": {
+ "eng": {
+ "f": "Israeli",
+ "m": "Israeli"
+ },
+ "fra": {
+ "f": "Isra\u00e9lienne",
+ "m": "Isra\u00e9lien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Italy",
+ "official": "Italian Republic",
+ "native": {
+ "ita": {
+ "official": "Repubblica italiana",
+ "common": "Italia"
+ }
+ }
+ },
+ "tld": [
+ ".it"
+ ],
+ "cca2": "IT",
+ "ccn3": "380",
+ "cca3": "ITA",
+ "cioc": "ITA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "9"
+ ]
+ },
+ "capital": [
+ "Rome"
+ ],
+ "altSpellings": [
+ "IT",
+ "Italian Republic",
+ "Repubblica italiana"
+ ],
+ "region": "Europe",
+ "subregion": "Southern Europe",
+ "languages": {
+ "ita": "Italian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0625\u064a\u0637\u0627\u0644\u064a\u0629",
+ "common": "\u0625\u064a\u0637\u0627\u0644\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Italia",
+ "common": "Italia"
+ },
+ "ces": {
+ "official": "Italsk\u00e1 republika",
+ "common": "It\u00e1lie"
+ },
+ "deu": {
+ "official": "Italienische Republik",
+ "common": "Italien"
+ },
+ "est": {
+ "official": "Itaalia Vabariik",
+ "common": "Itaalia"
+ },
+ "fin": {
+ "official": "Italian tasavalta",
+ "common": "Italia"
+ },
+ "fra": {
+ "official": "R\u00e9publique italienne",
+ "common": "Italie"
+ },
+ "hrv": {
+ "official": "talijanska Republika",
+ "common": "Italija"
+ },
+ "hun": {
+ "official": "Olasz K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Olaszorsz\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica italiana",
+ "common": "Italia"
+ },
+ "jpn": {
+ "official": "\u30a4\u30bf\u30ea\u30a2\u5171\u548c\u56fd",
+ "common": "\u30a4\u30bf\u30ea\u30a2"
+ },
+ "kor": {
+ "official": "\uc774\ud0c8\ub9ac\uc544 \uacf5\ud654\uad6d",
+ "common": "\uc774\ud0c8\ub9ac\uc544"
+ },
+ "nld": {
+ "official": "Italiaanse Republiek",
+ "common": "Itali\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u06cc\u062a\u0627\u0644\u06cc\u0627",
+ "common": "\u0627\u06cc\u062a\u0627\u0644\u06cc\u0627"
+ },
+ "pol": {
+ "official": "Republika W\u0142oska",
+ "common": "W\u0142ochy"
+ },
+ "por": {
+ "official": "Rep\u00fablica Italiana",
+ "common": "It\u00e1lia"
+ },
+ "rus": {
+ "official": "\u0438\u0442\u0430\u043b\u044c\u044f\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0418\u0442\u0430\u043b\u0438\u044f"
+ },
+ "slk": {
+ "official": "Talianska republika",
+ "common": "Taliansko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Italiana",
+ "common": "Italia"
+ },
+ "srp": {
+ "official": "Republika Italija",
+ "common": "Italija"
+ },
+ "swe": {
+ "official": "Republiken Italien",
+ "common": "Italien"
+ },
+ "tur": {
+ "official": "\u0130talya Cumhuriyeti",
+ "common": "\u0130talya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0627\u0637\u0627\u0644\u06cc\u06c1",
+ "common": "\u0627\u0637\u0627\u0644\u06cc\u06c1"
+ },
+ "zho": {
+ "official": "\u610f\u5927\u5229\u5171\u548c\u56fd",
+ "common": "\u610f\u5927\u5229"
+ }
+ },
+ "latlng": [
+ 42.83333333,
+ 12.83333333
+ ],
+ "landlocked": false,
+ "borders": [
+ "AUT",
+ "FRA",
+ "SMR",
+ "SVN",
+ "CHE",
+ "VAT"
+ ],
+ "area": 301336,
+ "flag": "\ud83c\uddee\ud83c\uddf9",
+ "demonyms": {
+ "eng": {
+ "f": "Italian",
+ "m": "Italian"
+ },
+ "fra": {
+ "f": "Italienne",
+ "m": "Italien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Jamaica",
+ "official": "Jamaica",
+ "native": {
+ "eng": {
+ "official": "Jamaica",
+ "common": "Jamaica"
+ },
+ "jam": {
+ "official": "Jamaica",
+ "common": "Jamaica"
+ }
+ }
+ },
+ "tld": [
+ ".jm"
+ ],
+ "cca2": "JM",
+ "ccn3": "388",
+ "cca3": "JAM",
+ "cioc": "JAM",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "JMD": {
+ "name": "Jamaican dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "876"
+ ]
+ },
+ "capital": [
+ "Kingston"
+ ],
+ "altSpellings": [
+ "JM"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English",
+ "jam": "Jamaican Patois"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0627\u0645\u0627\u064a\u0643\u0627",
+ "common": "\u062c\u0627\u0645\u0627\u064a\u0643\u0627"
+ },
+ "bre": {
+ "official": "Jamaika",
+ "common": "Jamaika"
+ },
+ "ces": {
+ "official": "Jamajka",
+ "common": "Jamajka"
+ },
+ "deu": {
+ "official": "Jamaika",
+ "common": "Jamaika"
+ },
+ "est": {
+ "official": "Jamaica",
+ "common": "Jamaica"
+ },
+ "fin": {
+ "official": "Jamaika",
+ "common": "Jamaika"
+ },
+ "fra": {
+ "official": "Jama\u00efque",
+ "common": "Jama\u00efque"
+ },
+ "hrv": {
+ "official": "Jamajka",
+ "common": "Jamajka"
+ },
+ "hun": {
+ "official": "Jamaica",
+ "common": "Jamaica"
+ },
+ "ita": {
+ "official": "Giamaica",
+ "common": "Giamaica"
+ },
+ "jpn": {
+ "official": "\u30b8\u30e3\u30de\u30a4\u30ab",
+ "common": "\u30b8\u30e3\u30de\u30a4\u30ab"
+ },
+ "kor": {
+ "official": "\uc790\uba54\uc774\uce74",
+ "common": "\uc790\uba54\uc774\uce74"
+ },
+ "nld": {
+ "official": "Jamaica",
+ "common": "Jamaica"
+ },
+ "per": {
+ "official": "\u062c\u0627\u0645\u0627\u0626\u06cc\u06a9\u0627",
+ "common": "\u062c\u0627\u0645\u0627\u0626\u06cc\u06a9\u0627"
+ },
+ "pol": {
+ "official": "Jamajka",
+ "common": "Jamajka"
+ },
+ "por": {
+ "official": "Jamaica",
+ "common": "Jamaica"
+ },
+ "rus": {
+ "official": "\u042f\u043c\u0430\u0439\u043a\u0430",
+ "common": "\u042f\u043c\u0430\u0439\u043a\u0430"
+ },
+ "slk": {
+ "official": "Jamajka",
+ "common": "Jamajka"
+ },
+ "spa": {
+ "official": "Jamaica",
+ "common": "Jamaica"
+ },
+ "srp": {
+ "official": "Jamajka",
+ "common": "Jamajka"
+ },
+ "swe": {
+ "official": "Jamaica",
+ "common": "Jamaica"
+ },
+ "tur": {
+ "official": "Jamaika",
+ "common": "Jamaika"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06cc\u06a9\u0627",
+ "common": "\u062c\u0645\u06cc\u06a9\u0627"
+ },
+ "zho": {
+ "official": "\u7259\u4e70\u52a0",
+ "common": "\u7259\u4e70\u52a0"
+ }
+ },
+ "latlng": [
+ 18.25,
+ -77.5
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 10991,
+ "flag": "\ud83c\uddef\ud83c\uddf2",
+ "demonyms": {
+ "eng": {
+ "f": "Jamaican",
+ "m": "Jamaican"
+ },
+ "fra": {
+ "f": "Jama\u00efcaine",
+ "m": "Jama\u00efcain"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Jersey",
+ "official": "Bailiwick of Jersey",
+ "native": {
+ "eng": {
+ "official": "Bailiwick of Jersey",
+ "common": "Jersey"
+ },
+ "fra": {
+ "official": "Bailliage de Jersey",
+ "common": "Jersey"
+ },
+ "nrf": {
+ "official": "Bailliage d\u00e9 J\u00e8rri",
+ "common": "J\u00e8rri"
+ }
+ }
+ },
+ "tld": [
+ ".je"
+ ],
+ "cca2": "JE",
+ "ccn3": "832",
+ "cca3": "JEY",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "GBP": {
+ "name": "British pound",
+ "symbol": "\u00a3"
+ },
+ "JEP": {
+ "name": "Jersey pound",
+ "symbol": "\u00a3"
+ }
+ },
+ "idd": {
+ "root": "+4",
+ "suffixes": [
+ "4"
+ ]
+ },
+ "capital": [
+ "Saint Helier"
+ ],
+ "altSpellings": [
+ "JE",
+ "Bailiwick of Jersey",
+ "Bailliage de Jersey",
+ "Bailliage d\u00e9 J\u00e8rri"
+ ],
+ "region": "Europe",
+ "subregion": "Northern Europe",
+ "languages": {
+ "eng": "English",
+ "fra": "French",
+ "nrf": "J\u00e8rriais"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u064a\u0631\u0632\u064a",
+ "common": "\u062c\u064a\u0631\u0632\u064a"
+ },
+ "bre": {
+ "official": "Jerzenez",
+ "common": "Jerzenez"
+ },
+ "ces": {
+ "official": "Rycht\u00e1\u0159stv\u00ed Jersey",
+ "common": "Jersey"
+ },
+ "deu": {
+ "official": "Vogtei Jersey",
+ "common": "Jersey"
+ },
+ "est": {
+ "official": "Jersey foogtkond",
+ "common": "Jersey"
+ },
+ "fin": {
+ "official": "Jersey",
+ "common": "Jersey"
+ },
+ "fra": {
+ "official": "Bailliage de Jersey",
+ "common": "Jersey"
+ },
+ "hrv": {
+ "official": "Struka od Jersey",
+ "common": "Jersey"
+ },
+ "hun": {
+ "official": "Jersey",
+ "common": "Jersey"
+ },
+ "ita": {
+ "official": "Baliato di Jersey",
+ "common": "Isola di Jersey"
+ },
+ "jpn": {
+ "official": "\u30b8\u30e3\u30fc\u30b8\u30fc\u5cf6",
+ "common": "\u30b8\u30e3\u30fc\u30b8\u30fc"
+ },
+ "kor": {
+ "official": "\uc800\uc9c0 \uc12c",
+ "common": "\uc800\uc9c0 \uc12c"
+ },
+ "nld": {
+ "official": "Baljuwschap Jersey",
+ "common": "Jersey"
+ },
+ "per": {
+ "official": "\u062c\u0631\u0632\u06cc",
+ "common": "\u062c\u0631\u0632\u06cc"
+ },
+ "pol": {
+ "official": "Jersey",
+ "common": "Jersey"
+ },
+ "por": {
+ "official": "Bailiado de Jersey",
+ "common": "Jersey"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u0440\u043e\u043d\u043d\u043e\u0435 \u0432\u043b\u0430\u0434\u0435\u043d\u0438\u0435 \u0414\u0436\u0435\u0440\u0441\u0438",
+ "common": "\u0414\u0436\u0435\u0440\u0441\u0438"
+ },
+ "slk": {
+ "official": "Bailiwick Jersey",
+ "common": "Jersey"
+ },
+ "spa": {
+ "official": "Bail\u00eda de Jersey",
+ "common": "Jersey"
+ },
+ "srp": {
+ "official": "Bejlivik D\u017Eerzi",
+ "common": "D\u017Eerzi"
+ },
+ "swe": {
+ "official": "Jersey",
+ "common": "Jersey"
+ },
+ "tur": {
+ "official": "Jersey",
+ "common": "Jersey"
+ },
+ "urd": {
+ "official": "\u062c\u0631\u0632\u06cc",
+ "common": "\u062c\u0631\u0632\u06cc"
+ },
+ "zho": {
+ "official": "\u6cfd\u897f\u5c9b",
+ "common": "\u6cfd\u897f\u5c9b"
+ }
+ },
+ "latlng": [
+ 49.25,
+ -2.16666666
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 116,
+ "flag": "\ud83c\uddef\ud83c\uddea",
+ "demonyms": {
+ "eng": {
+ "f": "Channel Islander",
+ "m": "Channel Islander"
+ },
+ "fra": {
+ "f": "Jersiaise",
+ "m": "Jersiais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Jordan",
+ "official": "Hashemite Kingdom of Jordan",
+ "native": {
+ "ara": {
+ "official": "\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0623\u0631\u062f\u0646\u064a\u0629 \u0627\u0644\u0647\u0627\u0634\u0645\u064a\u0629",
+ "common": "\u0627\u0644\u0623\u0631\u062f\u0646"
+ }
+ }
+ },
+ "tld": [
+ ".jo",
+ "\u0627\u0644\u0627\u0631\u062f\u0646."
+ ],
+ "cca2": "JO",
+ "ccn3": "400",
+ "cca3": "JOR",
+ "cioc": "JOR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "JOD": {
+ "name": "Jordanian dinar",
+ "symbol": "\u062f.\u0627"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "62"
+ ]
+ },
+ "capital": [
+ "Amman"
+ ],
+ "altSpellings": [
+ "JO",
+ "Hashemite Kingdom of Jordan",
+ "al-Mamlakah al-Urdun\u012byah al-H\u0101shim\u012byah"
+ ],
+ "region": "Asia",
+ "subregion": "Western Asia",
+ "languages": {
+ "ara": "Arabic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0623\u0631\u062f\u0646\u064a\u0629 \u0627\u0644\u0647\u0627\u0634\u0645\u064a\u0629",
+ "common": "\u0627\u0644\u0623\u0631\u062f\u0646"
+ },
+ "bre": {
+ "official": "Rouantelezh hachemit Jordania",
+ "common": "Jordania"
+ },
+ "ces": {
+ "official": "Jord\u00e1nsk\u00e9 h\u00e1\u0161imovsk\u00e9 kr\u00e1lovstv\u00ed",
+ "common": "Jord\u00e1nsko"
+ },
+ "deu": {
+ "official": "Haschemitisches K\u00f6nigreich Jordanien",
+ "common": "Jordanien"
+ },
+ "est": {
+ "official": "Jordaania Ha\u0161imiidi Kuningriik",
+ "common": "Jordaania"
+ },
+ "fin": {
+ "official": "Jordanian ha\u0161emiittinen kunigaskunta",
+ "common": "Jordania"
+ },
+ "fra": {
+ "official": "Royaume hach\u00e9mite de Jordanie",
+ "common": "Jordanie"
+ },
+ "hrv": {
+ "official": "Ha\u0161emitske Kraljevine Jordan",
+ "common": "Jordan"
+ },
+ "hun": {
+ "official": "Jord\u00e1nia",
+ "common": "Jord\u00e1nia"
+ },
+ "ita": {
+ "official": "Regno hascemita di Giordania",
+ "common": "Giordania"
+ },
+ "jpn": {
+ "official": "\u30e8\u30eb\u30c0\u30f3\u30fb\u30cf\u30b7\u30df\u30c6\u738b\u56fd",
+ "common": "\u30e8\u30eb\u30c0\u30f3"
+ },
+ "kor": {
+ "official": "\uc694\ub974\ub2e8 \ud558\uc2ec \uc655\uad6d",
+ "common": "\uc694\ub974\ub2e8"
+ },
+ "nld": {
+ "official": "Hasjemitisch Koninkrijk Jordani\u00eb",
+ "common": "Jordani\u00eb"
+ },
+ "per": {
+ "official": "\u067e\u0627\u062f\u0634\u0627\u0647\u06cc \u0627\u064f\u0631\u062f\u064f\u0646 \u0647\u0627\u0634\u0645\u06cc",
+ "common": "\u0627\u0631\u062f\u0646"
+ },
+ "pol": {
+ "official": "Jorda\u0144skie Kr\u00f3lestwo Haszymidzkie",
+ "common": "Jordania"
+ },
+ "por": {
+ "official": "Reino Hachemita da Jord\u00e2nia",
+ "common": "Jord\u00e2nia"
+ },
+ "rus": {
+ "official": "\u0418\u043e\u0440\u0434\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u0425\u0430\u0448\u0438\u043c\u0438\u0442\u0441\u043a\u043e\u0433\u043e \u041a\u043e\u0440\u043e\u043b\u0435\u0432\u0441\u0442\u0432\u0430",
+ "common": "\u0418\u043e\u0440\u0434\u0430\u043d\u0438\u044f"
+ },
+ "slk": {
+ "official": "Jord\u00e1nske h\u00e1\u0161imovsk\u00e9 kr\u00e1\u013eovstvo",
+ "common": "Jord\u00e1nsko"
+ },
+ "spa": {
+ "official": "Reino Hachemita de Jordania",
+ "common": "Jordania"
+ },
+ "srp": {
+ "official": "Ha\u0161emitska Kraljevina Jordan",
+ "common": "Jordan"
+ },
+ "swe": {
+ "official": "Hashimitiska kungad\u00f6met Jordanien",
+ "common": "Jordanien"
+ },
+ "tur": {
+ "official": "\u00fcrd\u00fcn H\u00e2\u015fimi Krall\u0131\u011f\u0131",
+ "common": "\u00fcrd\u00fcn"
+ },
+ "urd": {
+ "official": "\u06be\u0627\u0634\u0645\u06cc \u0645\u0645\u0644\u06a9\u062a\u0650 \u0627\u0631\u062f\u0646",
+ "common": "\u0627\u0631\u062f\u0646"
+ },
+ "zho": {
+ "official": "\u7ea6\u65e6\u54c8\u5e0c\u59c6\u738b\u56fd",
+ "common": "\u7ea6\u65e6"
+ }
+ },
+ "latlng": [
+ 31,
+ 36
+ ],
+ "landlocked": false,
+ "borders": [
+ "IRQ",
+ "ISR",
+ "PSE",
+ "SAU",
+ "SYR"
+ ],
+ "area": 89342,
+ "flag": "\ud83c\uddef\ud83c\uddf4",
+ "demonyms": {
+ "eng": {
+ "f": "Jordanian",
+ "m": "Jordanian"
+ },
+ "fra": {
+ "f": "Jordanienne",
+ "m": "Jordanien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Japan",
+ "official": "Japan",
+ "native": {
+ "jpn": {
+ "official": "\u65e5\u672c",
+ "common": "\u65e5\u672c"
+ }
+ }
+ },
+ "tld": [
+ ".jp",
+ ".\u307f\u3093\u306a"
+ ],
+ "cca2": "JP",
+ "ccn3": "392",
+ "cca3": "JPN",
+ "cioc": "JPN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "JPY": {
+ "name": "Japanese yen",
+ "symbol": "\u00a5"
+ }
+ },
+ "idd": {
+ "root": "+8",
+ "suffixes": [
+ "1"
+ ]
+ },
+ "capital": [
+ "Tokyo"
+ ],
+ "altSpellings": [
+ "JP",
+ "Nippon",
+ "Nihon"
+ ],
+ "region": "Asia",
+ "subregion": "Eastern Asia",
+ "languages": {
+ "jpn": "Japanese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u064a\u0627\u0628\u0627\u0646",
+ "common": "\u0627\u0644\u064a\u0627\u0628\u0627\u0646"
+ },
+ "bre": {
+ "official": "Japan",
+ "common": "Japan"
+ },
+ "ces": {
+ "official": "Japonsko",
+ "common": "Japonsko"
+ },
+ "deu": {
+ "official": "Japan",
+ "common": "Japan"
+ },
+ "est": {
+ "official": "Jaapan",
+ "common": "Jaapan"
+ },
+ "fin": {
+ "official": "Japani",
+ "common": "Japani"
+ },
+ "fra": {
+ "official": "Japon",
+ "common": "Japon"
+ },
+ "hrv": {
+ "official": "Japan",
+ "common": "Japan"
+ },
+ "hun": {
+ "official": "Jap\u00e1n",
+ "common": "Jap\u00e1n"
+ },
+ "ita": {
+ "official": "Giappone",
+ "common": "Giappone"
+ },
+ "jpn": {
+ "official": "\u65e5\u672c\u56fd",
+ "common": "\u65e5\u672c"
+ },
+ "kor": {
+ "official": "\uc77c\ubcf8\uad6d",
+ "common": "\uc77c\ubcf8"
+ },
+ "nld": {
+ "official": "Japan",
+ "common": "Japan"
+ },
+ "per": {
+ "official": "\u0698\u0627\u067e\u0646",
+ "common": "\u0698\u0627\u067e\u0646"
+ },
+ "pol": {
+ "official": "Japonia",
+ "common": "Japonia"
+ },
+ "por": {
+ "official": "Jap\u00e3o",
+ "common": "Jap\u00e3o"
+ },
+ "rus": {
+ "official": "\u042f\u043f\u043e\u043d\u0438\u044f",
+ "common": "\u042f\u043f\u043e\u043d\u0438\u044f"
+ },
+ "slk": {
+ "official": "Japonsko",
+ "common": "Japonsko"
+ },
+ "spa": {
+ "official": "Jap\u00f3n",
+ "common": "Jap\u00f3n"
+ },
+ "srp": {
+ "official": "Japan",
+ "common": "Japan"
+ },
+ "swe": {
+ "official": "Japan",
+ "common": "Japan"
+ },
+ "tur": {
+ "official": "Japonya",
+ "common": "Japonya"
+ },
+ "urd": {
+ "official": "\u062c\u0627\u067e\u0627\u0646",
+ "common": "\u062c\u0627\u067e\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u65e5\u672c\u56fd",
+ "common": "\u65e5\u672c"
+ }
+ },
+ "latlng": [
+ 36,
+ 138
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 377930,
+ "flag": "\ud83c\uddef\ud83c\uddf5",
+ "demonyms": {
+ "eng": {
+ "f": "Japanese",
+ "m": "Japanese"
+ },
+ "fra": {
+ "f": "Japonaise",
+ "m": "Japonais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Kazakhstan",
+ "official": "Republic of Kazakhstan",
+ "native": {
+ "kaz": {
+ "official": "\u049a\u0430\u0437\u0430\u049b\u0441\u0442\u0430\u043d \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0441\u044b",
+ "common": "\u049a\u0430\u0437\u0430\u049b\u0441\u0442\u0430\u043d"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d",
+ "common": "\u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d"
+ }
+ }
+ },
+ "tld": [
+ ".kz",
+ ".\u049b\u0430\u0437"
+ ],
+ "cca2": "KZ",
+ "ccn3": "398",
+ "cca3": "KAZ",
+ "cioc": "KAZ",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "KZT": {
+ "name": "Kazakhstani tenge",
+ "symbol": "\u20b8"
+ }
+ },
+ "idd": {
+ "root": "+7",
+ "suffixes": [
+ "6",
+ "7"
+ ]
+ },
+ "capital": [
+ "Astana"
+ ],
+ "altSpellings": [
+ "KZ",
+ "Qazaqstan",
+ "\u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d",
+ "Republic of Kazakhstan",
+ "\u049a\u0430\u0437\u0430\u049b\u0441\u0442\u0430\u043d \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0441\u044b",
+ "Qazaqstan Respubl\u00efkas\u0131",
+ "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d",
+ "Respublika Kazakhstan"
+ ],
+ "region": "Asia",
+ "subregion": "Central Asia",
+ "languages": {
+ "kaz": "Kazakh",
+ "rus": "Russian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0643\u0627\u0632\u0627\u062e\u0633\u062a\u0627\u0646",
+ "common": "\u0643\u0627\u0632\u0627\u062e\u0633\u062a\u0627\u0646"
+ },
+ "bre": {
+ "official": "Republik Kazakstan",
+ "common": "Kazakstan"
+ },
+ "ces": {
+ "official": "Republika Kazachst\u00e1n",
+ "common": "Kazachst\u00e1n"
+ },
+ "deu": {
+ "official": "Republik Kasachstan",
+ "common": "Kasachstan"
+ },
+ "est": {
+ "official": "Kasahstani Vabariik",
+ "common": "Kasahstan"
+ },
+ "fin": {
+ "official": "Kazakstanin tasavalta",
+ "common": "Kazakstan"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Kazakhstan",
+ "common": "Kazakhstan"
+ },
+ "hrv": {
+ "official": "Republika Kazahstan",
+ "common": "Kazahstan"
+ },
+ "hun": {
+ "official": "Kazah K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Kazahszt\u00e1n"
+ },
+ "ita": {
+ "official": "Repubblica del Kazakhstan",
+ "common": "Kazakistan"
+ },
+ "jpn": {
+ "official": "\u30ab\u30b6\u30d5\u30b9\u30bf\u30f3\u5171\u548c\u56fd",
+ "common": "\u30ab\u30b6\u30d5\u30b9\u30bf\u30f3"
+ },
+ "kor": {
+ "official": "\uce74\uc790\ud750\uc2a4\ud0c4 \uacf5\ud654\uad6d",
+ "common": "\uce74\uc790\ud750\uc2a4\ud0c4"
+ },
+ "nld": {
+ "official": "Republiek Kazachstan",
+ "common": "Kazachstan"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0642\u0632\u0627\u0642\u0633\u062a\u0627\u0646",
+ "common": "\u0642\u0632\u0627\u0642\u0633\u062a\u0627\u0646"
+ },
+ "pol": {
+ "official": "Republika Kazachstanu",
+ "common": "Kazachstan"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Cazaquist\u00e3o",
+ "common": "Cazaquist\u00e3o"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d",
+ "common": "\u041a\u0430\u0437\u0430\u0445\u0441\u0442\u0430\u043d"
+ },
+ "slk": {
+ "official": "Kaza\u0161sk\u00e1 republika",
+ "common": "Kazachstan"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Kazajst\u00e1n",
+ "common": "Kazajist\u00e1n"
+ },
+ "srp": {
+ "official": "Republika Kazahstan",
+ "common": "Kazahstan"
+ },
+ "swe": {
+ "official": "Republiken Kazakstan",
+ "common": "Kazakstan"
+ },
+ "tur": {
+ "official": "Kazakistan Cumhuriyeti",
+ "common": "Kazakistan"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0642\u0627\u0632\u0642\u0633\u062a\u0627\u0646",
+ "common": "\u0642\u0627\u0632\u0642\u0633\u062a\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u54c8\u8428\u514b\u65af\u5766\u5171\u548c\u56fd",
+ "common": "\u54c8\u8428\u514b\u65af\u5766"
+ }
+ },
+ "latlng": [
+ 48,
+ 68
+ ],
+ "landlocked": true,
+ "borders": [
+ "CHN",
+ "KGZ",
+ "RUS",
+ "TKM",
+ "UZB"
+ ],
+ "area": 2724900,
+ "flag": "\ud83c\uddf0\ud83c\uddff",
+ "demonyms": {
+ "eng": {
+ "f": "Kazakhstani",
+ "m": "Kazakhstani"
+ },
+ "fra": {
+ "f": "Kazakhstanaise",
+ "m": "Kazakhstanais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Kenya",
+ "official": "Republic of Kenya",
+ "native": {
+ "eng": {
+ "official": "Republic of Kenya",
+ "common": "Kenya"
+ },
+ "swa": {
+ "official": "Republic of Kenya",
+ "common": "Kenya"
+ }
+ }
+ },
+ "tld": [
+ ".ke"
+ ],
+ "cca2": "KE",
+ "ccn3": "404",
+ "cca3": "KEN",
+ "cioc": "KEN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "KES": {
+ "name": "Kenyan shilling",
+ "symbol": "Sh"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "54"
+ ]
+ },
+ "capital": [
+ "Nairobi"
+ ],
+ "altSpellings": [
+ "KE",
+ "Republic of Kenya",
+ "Jamhuri ya Kenya"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "eng": "English",
+ "swa": "Swahili"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0643\u064a\u0646\u064a\u0627",
+ "common": "\u0643\u064a\u0646\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Kenya",
+ "common": "Kenya"
+ },
+ "ces": {
+ "official": "Ke\u0148sk\u00e1 republika",
+ "common": "Ke\u0148a"
+ },
+ "deu": {
+ "official": "Republik Kenia",
+ "common": "Kenia"
+ },
+ "est": {
+ "official": "Keenia Vabariik",
+ "common": "Keenia"
+ },
+ "fin": {
+ "official": "Kenian tasavalta",
+ "common": "Kenia"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Kenya",
+ "common": "Kenya"
+ },
+ "hrv": {
+ "official": "Republika Kenija",
+ "common": "Kenija"
+ },
+ "hun": {
+ "official": "Kenyai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Kenya"
+ },
+ "ita": {
+ "official": "Repubblica del Kenya",
+ "common": "Kenya"
+ },
+ "jpn": {
+ "official": "\u30b1\u30cb\u30a2\u5171\u548c\u56fd",
+ "common": "\u30b1\u30cb\u30a2"
+ },
+ "kor": {
+ "official": "\ucf00\ub0d0 \uacf5\ud654\uad6d",
+ "common": "\ucf00\ub0d0"
+ },
+ "nld": {
+ "official": "Republiek Kenia",
+ "common": "Kenia"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06a9\u0646\u06cc\u0627",
+ "common": "\u06a9\u0646\u06cc\u0627"
+ },
+ "pol": {
+ "official": "Republika Kenii",
+ "common": "Kenia"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Qu\u00e9nia",
+ "common": "Qu\u00e9nia"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u0435\u043d\u0438\u044f",
+ "common": "\u041a\u0435\u043d\u0438\u044f"
+ },
+ "slk": {
+ "official": "Kensk\u00e1 republika",
+ "common": "Ke\u0148a"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Kenya",
+ "common": "Kenia"
+ },
+ "srp": {
+ "official": "Republika Kenija",
+ "common": "Kenija"
+ },
+ "swe": {
+ "official": "Republiken Kenya",
+ "common": "Kenya"
+ },
+ "tur": {
+ "official": "Kenya Cumhuriyeti",
+ "common": "Kenya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06a9\u06cc\u0646\u06cc\u0627",
+ "common": "\u06a9\u06cc\u0646\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u80af\u5c3c\u4e9a\u5171\u548c\u56fd",
+ "common": "\u80af\u5c3c\u4e9a"
+ }
+ },
+ "latlng": [
+ 1,
+ 38
+ ],
+ "landlocked": false,
+ "borders": [
+ "ETH",
+ "SOM",
+ "SSD",
+ "TZA",
+ "UGA"
+ ],
+ "area": 580367,
+ "flag": "\ud83c\uddf0\ud83c\uddea",
+ "demonyms": {
+ "eng": {
+ "f": "Kenyan",
+ "m": "Kenyan"
+ },
+ "fra": {
+ "f": "K\u00e9nyane",
+ "m": "K\u00e9nyan"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Kyrgyzstan",
+ "official": "Kyrgyz Republic",
+ "native": {
+ "kir": {
+ "official": "\u041a\u044b\u0440\u0433\u044b\u0437 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0441\u044b",
+ "common": "\u041a\u044b\u0440\u0433\u044b\u0437\u0441\u0442\u0430\u043d"
+ },
+ "rus": {
+ "official": "\u041a\u044b\u0440\u0433\u044b\u0437\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u041a\u0438\u0440\u0433\u0438\u0437\u0438\u044f"
+ }
+ }
+ },
+ "tld": [
+ ".kg"
+ ],
+ "cca2": "KG",
+ "ccn3": "417",
+ "cca3": "KGZ",
+ "cioc": "KGZ",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "KGS": {
+ "name": "Kyrgyzstani som",
+ "symbol": "\u0441"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "96"
+ ]
+ },
+ "capital": [
+ "Bishkek"
+ ],
+ "altSpellings": [
+ "KG",
+ "\u041a\u0438\u0440\u0433\u0438\u0437\u0438\u044f",
+ "Kyrgyz Republic",
+ "\u041a\u044b\u0440\u0433\u044b\u0437 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0441\u044b",
+ "Kyrgyz Respublikasy"
+ ],
+ "region": "Asia",
+ "subregion": "Central Asia",
+ "languages": {
+ "kir": "Kyrgyz",
+ "rus": "Russian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0642\u064a\u0631\u063a\u064a\u0632\u064a\u0629",
+ "common": "\u0642\u064a\u0631\u063a\u064a\u0632\u0633\u062a\u0627\u0646"
+ },
+ "bre": {
+ "official": "Republik Kirgiz",
+ "common": "Kirgizstan"
+ },
+ "ces": {
+ "official": "Kyrgyzsk\u00e1 republika",
+ "common": "Kyrgyzst\u00e1n"
+ },
+ "deu": {
+ "official": "Kirgisische Republik",
+ "common": "Kirgisistan"
+ },
+ "est": {
+ "official": "Kirgiisi Vabariik",
+ "common": "K\u00f5rg\u00f5zstan"
+ },
+ "fin": {
+ "official": "Kirgisian tasavalta",
+ "common": "Kirgisia"
+ },
+ "fra": {
+ "official": "R\u00e9publique kirghize",
+ "common": "Kirghizistan"
+ },
+ "hrv": {
+ "official": "Kirgistanu",
+ "common": "Kirgistan"
+ },
+ "hun": {
+ "official": "Kirgiz K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Kirgiziszt\u00e1n"
+ },
+ "ita": {
+ "official": "Kirghizistan",
+ "common": "Kirghizistan"
+ },
+ "jpn": {
+ "official": "\u30ad\u30eb\u30ae\u30b9\u5171\u548c\u56fd",
+ "common": "\u30ad\u30eb\u30ae\u30b9"
+ },
+ "kor": {
+ "official": "\ud0a4\ub974\uae30\uc2a4 \uacf5\ud654\uad6d",
+ "common": "\ud0a4\ub974\uae30\uc2a4\uc2a4\ud0c4"
+ },
+ "nld": {
+ "official": "Kirgizische Republiek",
+ "common": "Kirgizi\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0642\u0650\u0631\u0642\u06cc\u0632\u0633\u062a\u0627\u0646",
+ "common": "\u0642\u0631\u0642\u06cc\u0632\u0633\u062a\u0627\u0646"
+ },
+ "pol": {
+ "official": "Republika Kirgiska",
+ "common": "Kirgistan"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Quirguist\u00e3o",
+ "common": "Quirguist\u00e3o"
+ },
+ "rus": {
+ "official": "\u041a\u044b\u0440\u0433\u044b\u0437\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u041a\u0438\u0440\u0433\u0438\u0437\u0438\u044f"
+ },
+ "slk": {
+ "official": "Kirgizsk\u00e1 republika",
+ "common": "Kirgizsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Kirguisa",
+ "common": "Kirguizist\u00e1n"
+ },
+ "srp": {
+ "official": "Kirgiska Republika",
+ "common": "Kirgistan"
+ },
+ "swe": {
+ "official": "Republiken Kirgizistan",
+ "common": "Kirgizistan"
+ },
+ "tur": {
+ "official": "K\u0131rg\u0131z Cumhuriyeti",
+ "common": "K\u0131rg\u0131zistan"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06a9\u0631\u063a\u06cc\u0632\u0633\u062a\u0627\u0646",
+ "common": "\u06a9\u0631\u063a\u06cc\u0632\u0633\u062a\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u5409\u5c14\u5409\u65af\u65af\u5766\u5171\u548c\u56fd",
+ "common": "\u5409\u5c14\u5409\u65af\u65af\u5766"
+ }
+ },
+ "latlng": [
+ 41,
+ 75
+ ],
+ "landlocked": true,
+ "borders": [
+ "CHN",
+ "KAZ",
+ "TJK",
+ "UZB"
+ ],
+ "area": 199951,
+ "flag": "\ud83c\uddf0\ud83c\uddec",
+ "demonyms": {
+ "eng": {
+ "f": "Kirghiz",
+ "m": "Kirghiz"
+ },
+ "fra": {
+ "f": "Kirghize",
+ "m": "Kirghize"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Cambodia",
+ "official": "Kingdom of Cambodia",
+ "native": {
+ "khm": {
+ "official": "\u1796\u17d2\u179a\u17c7\u179a\u17b6\u1787\u17b6\u178e\u17b6\u1785\u1780\u17d2\u179a\u1780\u1798\u17d2\u1796\u17bb\u1787\u17b6",
+ "common": "K\u00e2mp\u016dch\u00e9a"
+ }
+ }
+ },
+ "tld": [
+ ".kh"
+ ],
+ "cca2": "KH",
+ "ccn3": "116",
+ "cca3": "KHM",
+ "cioc": "CAM",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "KHR": {
+ "name": "Cambodian riel",
+ "symbol": "\u17db"
+ },
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+8",
+ "suffixes": [
+ "55"
+ ]
+ },
+ "capital": [
+ "Phnom Penh"
+ ],
+ "altSpellings": [
+ "KH",
+ "Kingdom of Cambodia"
+ ],
+ "region": "Asia",
+ "subregion": "South-Eastern Asia",
+ "languages": {
+ "khm": "Khmer"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0645\u0644\u0643\u0629 \u0643\u0645\u0628\u0648\u062f\u064a\u0627",
+ "common": "\u0643\u0645\u0628\u0648\u062f\u064a\u0627"
+ },
+ "bre": {
+ "official": "Rouantelezh Kambodja",
+ "common": "Kambodja"
+ },
+ "ces": {
+ "official": "Kambod\u017esk\u00e9 kr\u00e1lovstv\u00ed",
+ "common": "Kambod\u017ea"
+ },
+ "deu": {
+ "official": "K\u00f6nigreich Kambodscha",
+ "common": "Kambodscha"
+ },
+ "est": {
+ "official": "Kambod\u017ea Kuningriik",
+ "common": "Kambod\u017ea"
+ },
+ "fin": {
+ "official": "Kambod\u017ean kuningaskunta",
+ "common": "Kambod\u017ea"
+ },
+ "fra": {
+ "official": "Royaume du Cambodge",
+ "common": "Cambodge"
+ },
+ "hrv": {
+ "official": "Kraljevina Kambod\u017ea",
+ "common": "Kambod\u017ea"
+ },
+ "hun": {
+ "official": "Kambodzsai Kir\u00e1lys\u00e1g",
+ "common": "Kambodzsa"
+ },
+ "ita": {
+ "official": "Regno di Cambogia",
+ "common": "Cambogia"
+ },
+ "jpn": {
+ "official": "\u30ab\u30f3\u30dc\u30b8\u30a2\u738b\u56fd",
+ "common": "\u30ab\u30f3\u30dc\u30b8\u30a2"
+ },
+ "kor": {
+ "official": "\uce84\ubcf4\ub514\uc544 \uc655\uad6d",
+ "common": "\uce84\ubcf4\ub514\uc544"
+ },
+ "nld": {
+ "official": "Koninkrijk Cambodja",
+ "common": "Cambodja"
+ },
+ "per": {
+ "official": "\u067e\u0627\u062f\u0634\u0627\u0647\u06cc \u06a9\u0627\u0645\u0628\u0648\u062c",
+ "common": "\u06a9\u0627\u0645\u0628\u0648\u062c"
+ },
+ "pol": {
+ "official": "Kr\u00f3lestwo Kambod\u017cy",
+ "common": "Kambod\u017ca"
+ },
+ "por": {
+ "official": "Reino do Camboja",
+ "common": "Camboja"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u0440\u043e\u043b\u0435\u0432\u0441\u0442\u0432\u043e \u041a\u0430\u043c\u0431\u043e\u0434\u0436\u0430",
+ "common": "\u041a\u0430\u043c\u0431\u043e\u0434\u0436\u0430"
+ },
+ "slk": {
+ "official": "Kambo\u01c6sk\u00e9 kr\u00e1\u013eovstvo",
+ "common": "Kambo\u01c6a"
+ },
+ "spa": {
+ "official": "Reino de Camboya",
+ "common": "Camboya"
+ },
+ "srp": {
+ "official": "Kraljevina Kambod\u017ea",
+ "common": "Kambod\u017ea"
+ },
+ "swe": {
+ "official": "Konungariket Kambodja",
+ "common": "Kambodja"
+ },
+ "tur": {
+ "official": "Kambo\u00e7ya Krall\u0131\u011f\u0131",
+ "common": "Kambo\u00e7ya"
+ },
+ "urd": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a\u0650 \u06a9\u0645\u0628\u0648\u0688\u06cc\u0627",
+ "common": "\u06a9\u0645\u0628\u0648\u0688\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u67ec\u57d4\u5be8\u738b\u56fd",
+ "common": "\u67ec\u57d4\u5be8"
+ }
+ },
+ "latlng": [
+ 13,
+ 105
+ ],
+ "landlocked": false,
+ "borders": [
+ "LAO",
+ "THA",
+ "VNM"
+ ],
+ "area": 181035,
+ "flag": "\ud83c\uddf0\ud83c\udded",
+ "demonyms": {
+ "eng": {
+ "f": "Cambodian",
+ "m": "Cambodian"
+ },
+ "fra": {
+ "f": "Cambodgienne",
+ "m": "Cambodgien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Kiribati",
+ "official": "Independent and Sovereign Republic of Kiribati",
+ "native": {
+ "eng": {
+ "official": "Independent and Sovereign Republic of Kiribati",
+ "common": "Kiribati"
+ },
+ "gil": {
+ "official": "Ribaberiki Kiribati",
+ "common": "Kiribati"
+ }
+ }
+ },
+ "tld": [
+ ".ki"
+ ],
+ "cca2": "KI",
+ "ccn3": "296",
+ "cca3": "KIR",
+ "cioc": "KIR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "AUD": {
+ "name": "Australian dollar",
+ "symbol": "$"
+ },
+ "KID": {
+ "name": "Kiribati dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "86"
+ ]
+ },
+ "capital": [
+ "South Tarawa"
+ ],
+ "altSpellings": [
+ "KI",
+ "Republic of Kiribati",
+ "Ribaberiki Kiribati"
+ ],
+ "region": "Oceania",
+ "subregion": "Micronesia",
+ "languages": {
+ "eng": "English",
+ "gil": "Gilbertese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0643\u064a\u0631\u064a\u0628\u0627\u062a\u064a",
+ "common": "\u0643\u064a\u0631\u064a\u0628\u0627\u062a\u064a"
+ },
+ "bre": {
+ "official": "Republik Kiribati",
+ "common": "Kiribati"
+ },
+ "ces": {
+ "official": "Republika Kiribati",
+ "common": "Kiribati"
+ },
+ "deu": {
+ "official": "Republik Kiribati",
+ "common": "Kiribati"
+ },
+ "est": {
+ "official": "Kiribati Vabariik",
+ "common": "Kiribati"
+ },
+ "fin": {
+ "official": "Kiribatin tasavalta",
+ "common": "Kiribati"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Kiribati",
+ "common": "Kiribati"
+ },
+ "hrv": {
+ "official": "Samostalne i suverene Republike Kiribati",
+ "common": "Kiribati"
+ },
+ "hun": {
+ "official": "Kiribati K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Kiribati"
+ },
+ "ita": {
+ "official": "Repubblica indipendente e sovrano di Kiribati",
+ "common": "Kiribati"
+ },
+ "jpn": {
+ "official": "\u30ad\u30ea\u30d0\u30b9\u5171\u548c\u56fd",
+ "common": "\u30ad\u30ea\u30d0\u30b9"
+ },
+ "kor": {
+ "official": "\ud0a4\ub9ac\ubc14\uc2dc \uacf5\ud654\uad6d",
+ "common": "\ud0a4\ub9ac\ubc14\uc2dc"
+ },
+ "nld": {
+ "official": "Onafhankelijke en soevereine republiek Kiribati",
+ "common": "Kiribati"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06a9\u06cc\u0631\u06cc\u0628\u0627\u062a\u06cc",
+ "common": "\u06a9\u06cc\u0631\u06cc\u0628\u0627\u062a\u06cc"
+ },
+ "pol": {
+ "official": "Republika Kiribati",
+ "common": "Kiribati"
+ },
+ "por": {
+ "official": "Independente e soberano Rep\u00fablica de Kiribati",
+ "common": "Kiribati"
+ },
+ "rus": {
+ "official": "\u041d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0439 \u0438 \u0441\u0443\u0432\u0435\u0440\u0435\u043d\u043d\u043e\u0439 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0438 \u041a\u0438\u0440\u0438\u0431\u0430\u0442\u0438",
+ "common": "\u041a\u0438\u0440\u0438\u0431\u0430\u0442\u0438"
+ },
+ "slk": {
+ "official": "Kiribatsk\u00e1 republika",
+ "common": "Kiribati"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Independiente y Soberano de Kiribati",
+ "common": "Kiribati"
+ },
+ "srp": {
+ "official": "Republika Kiribati",
+ "common": "Kiribati"
+ },
+ "swe": {
+ "official": "Republiken Kiribati",
+ "common": "Kiribati"
+ },
+ "tur": {
+ "official": "Kiribati Cumhuriyeti",
+ "common": "Kiribati"
+ },
+ "urd": {
+ "official": "\u0633\u0644\u0637\u0646\u062a \u0622\u0632\u0627\u062f \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06a9\u06cc\u0631\u06cc\u0628\u0627\u062a\u06cc",
+ "common": "\u06a9\u06cc\u0631\u06cc\u0628\u0627\u062a\u06cc"
+ },
+ "zho": {
+ "official": "\u57fa\u91cc\u5df4\u65af\u5171\u548c\u56fd",
+ "common": "\u57fa\u91cc\u5df4\u65af"
+ }
+ },
+ "latlng": [
+ 1.41666666,
+ 173
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 811,
+ "flag": "\ud83c\uddf0\ud83c\uddee",
+ "demonyms": {
+ "eng": {
+ "f": "I-Kiribati",
+ "m": "I-Kiribati"
+ },
+ "fra": {
+ "f": "Kiribatienne",
+ "m": "Kiribatien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Saint Kitts and Nevis",
+ "official": "Federation of Saint Christopher and Nevis",
+ "native": {
+ "eng": {
+ "official": "Federation of Saint Christopher and Nevis",
+ "common": "Saint Kitts and Nevis"
+ }
+ }
+ },
+ "tld": [
+ ".kn"
+ ],
+ "cca2": "KN",
+ "ccn3": "659",
+ "cca3": "KNA",
+ "cioc": "SKN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "XCD": {
+ "name": "Eastern Caribbean dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "869"
+ ]
+ },
+ "capital": [
+ "Basseterre"
+ ],
+ "altSpellings": [
+ "KN",
+ "Federation of Saint Christopher and Nevis"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u062a\u062d\u0627\u062f \u0627\u0644\u0642\u062f\u064a\u0633 \u0643\u0631\u064a\u0633\u062a\u0648\u0641\u0631 \u0648\u0646\u064a\u0641\u064a\u0633",
+ "common": "\u0633\u0627\u0646\u062a \u0643\u064a\u062a\u0633 \u0648\u0646\u064a\u0641\u064a\u0633"
+ },
+ "bre": {
+ "official": "Kevread Saint Kitts ha Nevis",
+ "common": "Saint Kitts ha Nevis"
+ },
+ "ces": {
+ "official": "Federace Sv. Kry\u0161tof a Nevis",
+ "common": "Svat\u00fd Kry\u0161tof a Nevis"
+ },
+ "deu": {
+ "official": "F\u00f6deration von St. Kitts und Nevis",
+ "common": "St. Kitts und Nevis"
+ },
+ "est": {
+ "official": "Saint Kittsi ja Nevise F\u00f6deratsioon",
+ "common": "Saint Kitts ja Nevis"
+ },
+ "fin": {
+ "official": "Saint Christopherin ja Nevisin federaatio",
+ "common": "Saint Kitts ja Nevis"
+ },
+ "fra": {
+ "official": "F\u00e9d\u00e9ration de Saint-Christophe-et-Ni\u00e9v\u00e8s",
+ "common": "Saint-Christophe-et-Ni\u00e9v\u00e8s"
+ },
+ "hrv": {
+ "official": "Federacija Sv.Kristofora i Nevisa",
+ "common": "Sveti Kristof i Nevis"
+ },
+ "hun": {
+ "official": "Saint Christopher \u00e9s Nevis \u00c1llamsz\u00f6vets\u00e9g",
+ "common": "Saint Kitts \u00e9s Nevis"
+ },
+ "ita": {
+ "official": "Federazione di Saint Christopher e Nevis",
+ "common": "Saint Kitts e Nevis"
+ },
+ "jpn": {
+ "official": "\u30bb\u30f3\u30c8\u30ad\u30c3\u30c4\u30fb\u30cd\u30fc\u30d3\u30b9",
+ "common": "\u30bb\u30f3\u30c8\u30ad\u30c3\u30c4\u30fb\u30cd\u30fc\u30f4\u30a3\u30b9\u9023\u90a6"
+ },
+ "kor": {
+ "official": "\uc138\uc778\ud2b8\ud0a4\uce20 \ub124\ube44\uc2a4 \uc5f0\ubc29",
+ "common": "\uc138\uc778\ud2b8\ud0a4\uce20 \ub124\ube44\uc2a4"
+ },
+ "nld": {
+ "official": "Federatie van Saint Kitts en Nevis",
+ "common": "Saint Kitts en Nevis"
+ },
+ "per": {
+ "official": "\u0641\u062f\u0631\u0627\u0633\u06cc\u0648\u0646 \u0633\u0646\u062a \u06a9\u06cc\u062a\u0633 \u0648 \u0646\u0648\u06cc\u0633",
+ "common": "\u0633\u0646\u062a \u06a9\u06cc\u062a\u0633 \u0648 \u0646\u0648\u06cc\u0633"
+ },
+ "pol": {
+ "official": "Federacja Saint Kitts i Nevis",
+ "common": "Saint Kitts i Nevis"
+ },
+ "por": {
+ "official": "Federa\u00e7\u00e3o de S\u00e3o Crist\u00f3v\u00e3o e Nevis",
+ "common": "S\u00e3o Crist\u00f3v\u00e3o e Nevis"
+ },
+ "rus": {
+ "official": "\u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f \u0421\u0435\u043d\u0442-\u041a\u0440\u0438\u0441\u0442\u043e\u0444\u0435\u0440 \u0438 \u041d \u0435 \u0432 \u0438 \u0441",
+ "common": "\u0421\u0435\u043d\u0442-\u041a\u0438\u0442\u0441 \u0438 \u041d\u0435\u0432\u0438\u0441"
+ },
+ "slk": {
+ "official": "Feder\u0ee1cia Sv\u00e4t\u00e9ho Kri\u0161tofa a Nevisu",
+ "common": "Sv\u00e4t\u00fd Kri\u0161tof a Nevis"
+ },
+ "spa": {
+ "official": "Federaci\u00f3n de San Crist\u00f3bal y Nevis",
+ "common": "San Crist\u00f3bal y Nieves"
+ },
+ "srp": {
+ "official": "Federacija Sent Kits i Nevis",
+ "common": "Sveti Kits i Nevis"
+ },
+ "swe": {
+ "official": "Federationen Saint Kitts och Nevis",
+ "common": "Saint Kitts och Nevis"
+ },
+ "tur": {
+ "official": "Saint Kitts ve Nevis Federasyonu",
+ "common": "Saint Kitts ve Nevis"
+ },
+ "urd": {
+ "official": "\u0648\u0641\u0627\u0642\u0650 \u0633\u06cc\u0646\u0679 \u06a9\u06cc\u0679\u0632 \u0648 \u0646\u0627\u0648\u06cc\u0633",
+ "common": "\u0633\u06cc\u0646\u0679 \u06a9\u06cc\u0679\u0632 \u0648 \u0646\u0627\u0648\u06cc\u0633"
+ },
+ "zho": {
+ "official": "\u5723\u514b\u91cc\u65af\u6258\u5f17\u548c\u5c3c\u7ef4\u65af\u8054\u90a6",
+ "common": "\u5723\u57fa\u8328\u548c\u5c3c\u7ef4\u65af"
+ }
+ },
+ "latlng": [
+ 17.33333333,
+ -62.75
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 261,
+ "flag": "\ud83c\uddf0\ud83c\uddf3",
+ "demonyms": {
+ "eng": {
+ "f": "Kittitian or Nevisian",
+ "m": "Kittitian or Nevisian"
+ },
+ "fra": {
+ "f": "Kittitienne-et-nevicienne",
+ "m": "Kittitien-et-nevicien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "South Korea",
+ "official": "Republic of Korea",
+ "native": {
+ "kor": {
+ "official": "\ub300\ud55c\ubbfc\uad6d",
+ "common": "\ud55c\uad6d"
+ }
+ }
+ },
+ "tld": [
+ ".kr",
+ ".\ud55c\uad6d"
+ ],
+ "cca2": "KR",
+ "ccn3": "410",
+ "cca3": "KOR",
+ "cioc": "KOR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "KRW": {
+ "name": "South Korean won",
+ "symbol": "\u20a9"
+ }
+ },
+ "idd": {
+ "root": "+8",
+ "suffixes": [
+ "2"
+ ]
+ },
+ "capital": [
+ "Seoul"
+ ],
+ "altSpellings": [
+ "KR",
+ "Korea, Republic of",
+ "Republic of Korea",
+ "\ub0a8\ud55c",
+ "\ub0a8\uc870\uc120"
+ ],
+ "region": "Asia",
+ "subregion": "Eastern Asia",
+ "languages": {
+ "kor": "Korean"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0643\u0648\u0631\u064a\u0627",
+ "common": "\u0643\u0648\u0631\u064a\u0627 \u0627\u0644\u062c\u0646\u0648\u0628\u064a\u0629"
+ },
+ "bre": {
+ "official": "Republik Korea",
+ "common": "Korea ar Su"
+ },
+ "ces": {
+ "official": "Korejsk\u00e1 republika",
+ "common": "Ji\u017en\u00ed Korea"
+ },
+ "deu": {
+ "official": "Republik Korea",
+ "common": "S\u00fcdkorea"
+ },
+ "est": {
+ "official": "Korea Vabariik",
+ "common": "L\u00f5una-Korea"
+ },
+ "fin": {
+ "official": "Korean tasavalta",
+ "common": "Etel\u00e4-Korea"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Cor\u00e9e",
+ "common": "Cor\u00e9e du Sud"
+ },
+ "hrv": {
+ "official": "Republika Koreja",
+ "common": "Ju\u017ena Koreja"
+ },
+ "hun": {
+ "official": "Koreai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "D\u00e9l-Korea"
+ },
+ "ita": {
+ "official": "Repubblica di Corea",
+ "common": "Corea del Sud"
+ },
+ "jpn": {
+ "official": "\u5927\u97d3\u6c11\u56fd",
+ "common": "\u97d3\u56fd"
+ },
+ "kor": {
+ "official": "\ub300\ud55c\ubbfc\uad6d",
+ "common": "\ud55c\uad6d"
+ },
+ "nld": {
+ "official": "Republiek Korea",
+ "common": "Zuid-Korea"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06a9\u0631\u0647",
+ "common": "\u06a9\u0631\u0647\u0654 \u062c\u0646\u0648\u0628\u06cc"
+ },
+ "pol": {
+ "official": "Republika Korei",
+ "common": "Korea Po\u0142udniowa"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Coreia",
+ "common": "Coreia do Sul"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u0440\u0435\u044f",
+ "common": "\u042e\u0436\u043d\u0430\u044f \u041a\u043e\u0440\u0435\u044f"
+ },
+ "slk": {
+ "official": "K\u00f3rejsk\u00e1 republika",
+ "common": "Ju\u017en\u00e1 K\u00f3rea"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Corea",
+ "common": "Corea del Sur"
+ },
+ "srp": {
+ "official": "Republika Koreja",
+ "common": "Ju\u017ena Koreja"
+ },
+ "swe": {
+ "official": "Republiken Korea",
+ "common": "Sydkorea"
+ },
+ "tur": {
+ "official": "Kore Cumhuriyeti",
+ "common": "G\u00fcney Kore"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06a9\u0648\u0631\u06cc\u0627 ",
+ "common": "\u062c\u0646\u0648\u0628\u06cc \u06a9\u0648\u0631\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u5927\u97e9\u6c11\u56fd",
+ "common": "\u97e9\u56fd"
+ }
+ },
+ "latlng": [
+ 37,
+ 127.5
+ ],
+ "landlocked": false,
+ "borders": [
+ "PRK"
+ ],
+ "area": 100210,
+ "flag": "\ud83c\uddf0\ud83c\uddf7",
+ "demonyms": {
+ "eng": {
+ "f": "South Korean",
+ "m": "South Korean"
+ },
+ "fra": {
+ "f": "Sud-cor\u00e9enne",
+ "m": "Sud-cor\u00e9en"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Kosovo",
+ "official": "Republic of Kosovo",
+ "native": {
+ "sqi": {
+ "official": "Republika e Kosov\u00ebs",
+ "common": "Kosova"
+ },
+ "srp": {
+ "official": "\u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u0441\u043e\u0432\u043e",
+ "common": "\u041a\u043e\u0441\u043e\u0432\u043e"
+ }
+ }
+ },
+ "tld": [
+ ".xk"
+ ],
+ "cca2": "XK",
+ "ccn3": "",
+ "cca3": "UNK",
+ "cioc": "KOS",
+ "independent": null,
+ "status": "user-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "83"
+ ]
+ },
+ "capital": [
+ "Pristina"
+ ],
+ "altSpellings": [
+ "XK",
+ "\u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u0441\u043e\u0432\u043e"
+ ],
+ "region": "Europe",
+ "subregion": "Southeast Europe",
+ "languages": {
+ "sqi": "Albanian",
+ "srp": "Serbian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0643\u0648\u0633\u0648\u0641\u0648",
+ "common": "\u0643\u0648\u0633\u0648\u0641\u0648"
+ },
+ "bre": {
+ "official": "Republik Kosovo",
+ "common": "Kosovo"
+ },
+ "ces": {
+ "official": "Kosovsk\u00e1 republika",
+ "common": "Kosovo"
+ },
+ "deu": {
+ "official": "Republik Kosovo",
+ "common": "Kosovo"
+ },
+ "est": {
+ "official": "Kosovo Vabariik",
+ "common": "Kosovo"
+ },
+ "fin": {
+ "official": "Kosovon tasavalta",
+ "common": "Kosovo"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Kosovo",
+ "common": "Kosovo"
+ },
+ "hrv": {
+ "official": "Republika Kosovo",
+ "common": "Kosovo"
+ },
+ "hun": {
+ "official": "Koszov\u00f3",
+ "common": "Koszov\u00f3"
+ },
+ "ita": {
+ "official": "Repubblica del Kosovo",
+ "common": "Kosovo"
+ },
+ "jpn": {
+ "official": "\u30b3\u30bd\u30dc\u5171\u548c\u56fd",
+ "common": "\u30b3\u30bd\u30dc"
+ },
+ "kor": {
+ "official": "\ucf54\uc18c\ubcf4 \uacf5\ud654\uad6d",
+ "common": "\ucf54\uc18c\ubcf4"
+ },
+ "nld": {
+ "official": "Republiek Kosovo",
+ "common": "Kosovo"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06a9\u0648\u0632\u0648\u0648",
+ "common": "\u06a9\u0648\u0632\u0648\u0648"
+ },
+ "pol": {
+ "official": "Republika Kosowa",
+ "common": "Kosowo"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Kosovo",
+ "common": "Kosovo"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u0441\u043e\u0432\u043e",
+ "common": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u0441\u043e\u0432\u043e"
+ },
+ "slk": {
+ "official": "Republika Kosovo",
+ "common": "Kosovo"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Kosovo",
+ "common": "Kosovo"
+ },
+ "srp": {
+ "official": "Republika Kosovo",
+ "common": "Kosovo"
+ },
+ "swe": {
+ "official": "Republiken Kosovo",
+ "common": "Kosovo"
+ },
+ "tur": {
+ "official": "Kosova Cumhuriyeti",
+ "common": "Kosova"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06a9\u0648\u0633\u0648\u0648\u06c1",
+ "common": "\u06a9\u0648\u0633\u0648\u0648\u06c1"
+ },
+ "zho": {
+ "official": "\u79d1\u7d22\u6c83\u5171\u548c\u56fd",
+ "common": "\u79d1\u7d22\u6c83"
+ }
+ },
+ "latlng": [
+ 42.666667,
+ 21.166667
+ ],
+ "landlocked": true,
+ "borders": [
+ "ALB",
+ "MKD",
+ "MNE",
+ "SRB"
+ ],
+ "area": 10908,
+ "flag": "\ud83c\uddfd\ud83c\uddf0",
+ "demonyms": {
+ "eng": {
+ "f": "Kosovar",
+ "m": "Kosovar"
+ },
+ "fra": {
+ "f": "Kosovare",
+ "m": "Kosovar"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Kuwait",
+ "official": "State of Kuwait",
+ "native": {
+ "ara": {
+ "official": "\u062f\u0648\u0644\u0629 \u0627\u0644\u0643\u0648\u064a\u062a",
+ "common": "\u0627\u0644\u0643\u0648\u064a\u062a"
+ }
+ }
+ },
+ "tld": [
+ ".kw"
+ ],
+ "cca2": "KW",
+ "ccn3": "414",
+ "cca3": "KWT",
+ "cioc": "KUW",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "KWD": {
+ "name": "Kuwaiti dinar",
+ "symbol": "\u062f.\u0643"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "65"
+ ]
+ },
+ "capital": [
+ "Kuwait City"
+ ],
+ "altSpellings": [
+ "KW",
+ "State of Kuwait",
+ "Dawlat al-Kuwait"
+ ],
+ "region": "Asia",
+ "subregion": "Western Asia",
+ "languages": {
+ "ara": "Arabic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062f\u0648\u0644\u0629 \u0627\u0644\u0643\u0648\u064a\u062a",
+ "common": "\u0627\u0644\u0643\u0648\u064a\u062a"
+ },
+ "bre": {
+ "official": "Stad Koweit",
+ "common": "Koweit"
+ },
+ "ces": {
+ "official": "St\u00e1t Kuvajt",
+ "common": "Kuvajt"
+ },
+ "deu": {
+ "official": "Staat Kuwait",
+ "common": "Kuwait"
+ },
+ "est": {
+ "official": "Kuveidi Riik",
+ "common": "Kuveit"
+ },
+ "fin": {
+ "official": "Kuwaitin valtio",
+ "common": "Kuwait"
+ },
+ "fra": {
+ "official": "\u00c9tat du Kowe\u00eft",
+ "common": "Kowe\u00eft"
+ },
+ "hrv": {
+ "official": "Dr\u017eava Kuvajt",
+ "common": "Kuvajt"
+ },
+ "hun": {
+ "official": "Kuvaiti \u00c1llam",
+ "common": "Kuvait"
+ },
+ "ita": {
+ "official": "Stato del Kuwait",
+ "common": "Kuwait"
+ },
+ "jpn": {
+ "official": "\u30af\u30a6\u30a7\u30fc\u30c8\u56fd",
+ "common": "\u30af\u30a6\u30a7\u30fc\u30c8"
+ },
+ "kor": {
+ "official": "\ucfe0\uc6e8\uc774\ud2b8\uad6d",
+ "common": "\ucfe0\uc6e8\uc774\ud2b8"
+ },
+ "nld": {
+ "official": "Staat Koeweit",
+ "common": "Koeweit"
+ },
+ "per": {
+ "official": "\u062f\u0648\u0644\u062a \u06a9\u0648\u06cc\u062a",
+ "common": "\u06a9\u064f\u0648\u06cc\u062a"
+ },
+ "pol": {
+ "official": "Pa\u0144stwo Kuwejt",
+ "common": "Kuwejt"
+ },
+ "por": {
+ "official": "Estado do Kuwait",
+ "common": "Kuwait"
+ },
+ "rus": {
+ "official": "\u0413\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u043e \u041a\u0443\u0432\u0435\u0439\u0442",
+ "common": "\u041a\u0443\u0432\u0435\u0439\u0442"
+ },
+ "slk": {
+ "official": "Kuvajtsk\u00fd \u0161t\u00e1t",
+ "common": "Kuvajt"
+ },
+ "spa": {
+ "official": "Estado de Kuwait",
+ "common": "Kuwait"
+ },
+ "srp": {
+ "official": "Dr\u017eava Kuvajt",
+ "common": "Kuvajt"
+ },
+ "swe": {
+ "official": "Staten Kuwait",
+ "common": "Kuwait"
+ },
+ "tur": {
+ "official": "Kuveyt Devleti",
+ "common": "Kuveyt"
+ },
+ "urd": {
+ "official": "\u062f\u0648\u0644\u062a\u0650 \u06a9\u0648\u06cc\u062a",
+ "common": "\u06a9\u0648\u06cc\u062a"
+ },
+ "zho": {
+ "official": "\u79d1\u5a01\u7279\u56fd",
+ "common": "\u79d1\u5a01\u7279"
+ }
+ },
+ "latlng": [
+ 29.5,
+ 45.75
+ ],
+ "landlocked": false,
+ "borders": [
+ "IRQ",
+ "SAU"
+ ],
+ "area": 17818,
+ "flag": "\ud83c\uddf0\ud83c\uddfc",
+ "demonyms": {
+ "eng": {
+ "f": "Kuwaiti",
+ "m": "Kuwaiti"
+ },
+ "fra": {
+ "f": "Kowe\u00eftienne",
+ "m": "Kowe\u00eftien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Laos",
+ "official": "Lao People's Democratic Republic",
+ "native": {
+ "lao": {
+ "official": "\u0eaa\u0eb2\u0e97\u0eb2\u0ea5\u0eb0\u0e99\u0eb0 \u0e8a\u0eb2\u0e97\u0eb4\u0e9b\u0eb0\u0ec4\u0e95 \u0e84\u0ebb\u0e99\u0ea5\u0eb2\u0ea7 \u0e82\u0ead\u0e87",
+ "common": "\u0eaa\u0e9b\u0e9b\u0ea5\u0eb2\u0ea7"
+ }
+ }
+ },
+ "tld": [
+ ".la"
+ ],
+ "cca2": "LA",
+ "ccn3": "418",
+ "cca3": "LAO",
+ "cioc": "LAO",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "LAK": {
+ "name": "Lao kip",
+ "symbol": "\u20ad"
+ }
+ },
+ "idd": {
+ "root": "+8",
+ "suffixes": [
+ "56"
+ ]
+ },
+ "capital": [
+ "Vientiane"
+ ],
+ "altSpellings": [
+ "LA",
+ "Lao",
+ "Lao People's Democratic Republic",
+ "Sathalanalat Paxathipatai Paxaxon Lao"
+ ],
+ "region": "Asia",
+ "subregion": "South-Eastern Asia",
+ "languages": {
+ "lao": "Lao"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0644\u0627\u0648\u0633 \u0627\u0644\u062f\u064a\u0645\u0642\u0631\u0627\u0637\u064a\u0629 \u0627\u0644\u0634\u0639\u0628\u064a\u0629",
+ "common": "\u0644\u0627\u0648\u0633"
+ },
+ "bre": {
+ "official": "Republik Demokratel ar Bobl Lao",
+ "common": "Laos"
+ },
+ "ces": {
+ "official": "Laosk\u00e1 lidov\u011b demokratick\u00e1 republika",
+ "common": "Laos"
+ },
+ "deu": {
+ "official": "Demokratische Volksrepublik Laos",
+ "common": "Laos"
+ },
+ "est": {
+ "official": "Laose Demokraatlik Rahvavabariik",
+ "common": "Laos"
+ },
+ "fin": {
+ "official": "Laosin demokraattinen kansantasavalta",
+ "common": "Laos"
+ },
+ "fra": {
+ "official": "R\u00e9publique d\u00e9mocratique populaire lao",
+ "common": "Laos"
+ },
+ "hrv": {
+ "official": "Narodna Demokratska Republika",
+ "common": "Laos"
+ },
+ "hun": {
+ "official": "Laoszi N\u00e9pi Demokratikus K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Laosz"
+ },
+ "ita": {
+ "official": "Repubblica democratica popolare del Laos",
+ "common": "Laos"
+ },
+ "jpn": {
+ "official": "\u30e9\u30aa\u30b9\u4eba\u6c11\u6c11\u4e3b\u5171\u548c\u56fd",
+ "common": "\u30e9\u30aa\u30b9"
+ },
+ "kor": {
+ "official": "\ub77c\uc624 \uc778\ubbfc \ubbfc\uc8fc \uacf5\ud654\uad6d",
+ "common": "\ub77c\uc624\uc2a4"
+ },
+ "nld": {
+ "official": "Lao Democratische Volksrepubliek",
+ "common": "Laos"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062f\u0645\u0648\u06a9\u0631\u0627\u062a\u06cc\u06a9 \u062e\u0644\u0642 \u0644\u0627\u0626\u0648\u0633",
+ "common": "\u0644\u0627\u0626\u0648\u0633"
+ },
+ "pol": {
+ "official": "Laota\u0144ska Republika Ludowo-Demokratyczna",
+ "common": "Laos"
+ },
+ "por": {
+ "official": "Laos, Rep\u00fablica Democr\u00e1tica",
+ "common": "Laos"
+ },
+ "rus": {
+ "official": "\u041b\u0430\u043e\u0441\u0441\u043a\u0430\u044f \u041d\u0430\u0440\u043e\u0434\u043d\u043e-\u0414\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u041b\u0430\u043e\u0441"
+ },
+ "slk": {
+ "official": "Laosk\u00e1 \u013eudovodemokratick\u00e1 republika",
+ "common": "Laos"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Democr\u00e1tica Popular Lao",
+ "common": "Laos"
+ },
+ "srp": {
+ "official": "Narodna Demokratska Republika Laos",
+ "common": "Laos"
+ },
+ "swe": {
+ "official": "Demokratiska folkrepubliken Laos",
+ "common": "Laos"
+ },
+ "tur": {
+ "official": "Laos Demokratik Halk Cumhuriyeti",
+ "common": "Laos"
+ },
+ "urd": {
+ "official": "\u0639\u0648\u0627\u0645\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0644\u0627\u0624",
+ "common": "\u0644\u0627\u0624\u0633"
+ },
+ "zho": {
+ "official": "\u8001\u631d\u4eba\u6c11\u6c11\u4e3b\u5171\u548c\u56fd",
+ "common": "\u8001\u631d"
+ }
+ },
+ "latlng": [
+ 18,
+ 105
+ ],
+ "landlocked": true,
+ "borders": [
+ "MMR",
+ "KHM",
+ "CHN",
+ "THA",
+ "VNM"
+ ],
+ "area": 236800,
+ "flag": "\ud83c\uddf1\ud83c\udde6",
+ "demonyms": {
+ "eng": {
+ "f": "Laotian",
+ "m": "Laotian"
+ },
+ "fra": {
+ "f": "Laotienne",
+ "m": "Laotien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Lebanon",
+ "official": "Lebanese Republic",
+ "native": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0644\u0628\u0646\u0627\u0646\u064a\u0629",
+ "common": "\u0644\u0628\u0646\u0627\u0646"
+ },
+ "fra": {
+ "official": "R\u00e9publique libanaise",
+ "common": "Liban"
+ }
+ }
+ },
+ "tld": [
+ ".lb"
+ ],
+ "cca2": "LB",
+ "ccn3": "422",
+ "cca3": "LBN",
+ "cioc": "LBN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "LBP": {
+ "name": "Lebanese pound",
+ "symbol": "\u0644.\u0644"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "61"
+ ]
+ },
+ "capital": [
+ "Beirut"
+ ],
+ "altSpellings": [
+ "LB",
+ "Lebanese Republic",
+ "Al-Jumh\u016br\u012byah Al-Libn\u0101n\u012byah"
+ ],
+ "region": "Asia",
+ "subregion": "Western Asia",
+ "languages": {
+ "ara": "Arabic",
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0644\u0628\u0646\u0627\u0646\u064a\u0629",
+ "common": "\u0644\u0628\u0646\u0627\u0646"
+ },
+ "bre": {
+ "official": "Republik Liban",
+ "common": "Liban"
+ },
+ "ces": {
+ "official": "Libanonsk\u00e1 republika",
+ "common": "Libanon"
+ },
+ "deu": {
+ "official": "Libanesische Republik",
+ "common": "Libanon"
+ },
+ "est": {
+ "official": "Liibanoni Vabariik",
+ "common": "Liibanon"
+ },
+ "fin": {
+ "official": "Libanonin tasavalta",
+ "common": "Libanon"
+ },
+ "fra": {
+ "official": "R\u00e9publique libanaise",
+ "common": "Liban"
+ },
+ "hrv": {
+ "official": "Libanonska Republika",
+ "common": "Libanon"
+ },
+ "hun": {
+ "official": "Libanoni K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Libanon"
+ },
+ "ita": {
+ "official": "Repubblica libanese",
+ "common": "Libano"
+ },
+ "jpn": {
+ "official": "\u30ec\u30d0\u30ce\u30f3\u5171\u548c\u56fd",
+ "common": "\u30ec\u30d0\u30ce\u30f3"
+ },
+ "kor": {
+ "official": "\ub808\ubc14\ub17c \uacf5\ud654\uad6d",
+ "common": "\ub808\ubc14\ub17c"
+ },
+ "nld": {
+ "official": "Libanese Republiek",
+ "common": "Libanon"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0644\u0628\u0646\u0627\u0646",
+ "common": "\u0644\u0628\u0646\u0627\u0646"
+ },
+ "pol": {
+ "official": "Republika Liba\u0144ska",
+ "common": "Liban"
+ },
+ "por": {
+ "official": "Rep\u00fablica Libanesa",
+ "common": "L\u00edbano"
+ },
+ "rus": {
+ "official": "\u041b\u0438\u0432\u0430\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u041b\u0438\u0432\u0430\u043d"
+ },
+ "slk": {
+ "official": "Libanonsk\u00e1 republika",
+ "common": "Libanon"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Libanesa",
+ "common": "L\u00edbano"
+ },
+ "srp": {
+ "official": "Libanska Republika",
+ "common": "Liban"
+ },
+ "swe": {
+ "official": "Republiken Libanon",
+ "common": "Libanon"
+ },
+ "tur": {
+ "official": "L\u00fcbnan Cumhuriyeti",
+ "common": "L\u00fcbnan"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0644\u0628\u0646\u0627\u0646",
+ "common": "\u0644\u0628\u0646\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u9ece\u5df4\u5ae9\u5171\u548c\u56fd",
+ "common": "\u9ece\u5df4\u5ae9"
+ }
+ },
+ "latlng": [
+ 33.83333333,
+ 35.83333333
+ ],
+ "landlocked": false,
+ "borders": [
+ "ISR",
+ "SYR"
+ ],
+ "area": 10452,
+ "flag": "\ud83c\uddf1\ud83c\udde7",
+ "demonyms": {
+ "eng": {
+ "f": "Lebanese",
+ "m": "Lebanese"
+ },
+ "fra": {
+ "f": "Libanaise",
+ "m": "Libanais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Liberia",
+ "official": "Republic of Liberia",
+ "native": {
+ "eng": {
+ "official": "Republic of Liberia",
+ "common": "Liberia"
+ }
+ }
+ },
+ "tld": [
+ ".lr"
+ ],
+ "cca2": "LR",
+ "ccn3": "430",
+ "cca3": "LBR",
+ "cioc": "LBR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "LRD": {
+ "name": "Liberian dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "31"
+ ]
+ },
+ "capital": [
+ "Monrovia"
+ ],
+ "altSpellings": [
+ "LR",
+ "Republic of Liberia"
+ ],
+ "region": "Africa",
+ "subregion": "Western Africa",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0644\u064a\u0628\u064a\u0631\u064a\u0627",
+ "common": "\u0644\u064a\u0628\u064a\u0631\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Liberia",
+ "common": "Liberia"
+ },
+ "ces": {
+ "official": "Liberijsk\u00e1 republika",
+ "common": "Lib\u00e9rie"
+ },
+ "deu": {
+ "official": "Republik Liberia",
+ "common": "Liberia"
+ },
+ "est": {
+ "official": "Libeeria Vabariik",
+ "common": "Libeeria"
+ },
+ "fin": {
+ "official": "Liberian tasavalta",
+ "common": "Liberia"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Lib\u00e9ria",
+ "common": "Liberia"
+ },
+ "hrv": {
+ "official": "Republika Liberija",
+ "common": "Liberija"
+ },
+ "hun": {
+ "official": "Lib\u00e9riai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Lib\u00e9ria"
+ },
+ "ita": {
+ "official": "Repubblica di Liberia",
+ "common": "Liberia"
+ },
+ "jpn": {
+ "official": "\u30ea\u30d9\u30ea\u30a2\u5171\u548c\u56fd",
+ "common": "\u30ea\u30d9\u30ea\u30a2"
+ },
+ "kor": {
+ "official": "\ub77c\uc774\ubca0\ub9ac\uc544 \uacf5\ud654\uad6d",
+ "common": "\ub77c\uc774\ubca0\ub9ac\uc544"
+ },
+ "nld": {
+ "official": "Republiek Liberia",
+ "common": "Liberia"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0644\u06cc\u0628\u0631\u06cc\u0627",
+ "common": "\u0644\u06cc\u0628\u0640\u0650\u0631\u06cc\u0627"
+ },
+ "pol": {
+ "official": "Republika Liberii",
+ "common": "Liberia"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Lib\u00e9ria",
+ "common": "Lib\u00e9ria"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041b\u0438\u0431\u0435\u0440\u0438\u044f",
+ "common": "\u041b\u0438\u0431\u0435\u0440\u0438\u044f"
+ },
+ "slk": {
+ "official": "Lib\u00e9rijsk\u00e1 republika",
+ "common": "Lib\u00e9ria"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Liberia",
+ "common": "Liberia"
+ },
+ "srp": {
+ "official": "Republika Liberija",
+ "common": "Liberija"
+ },
+ "swe": {
+ "official": "Republiken Liberia",
+ "common": "Liberia"
+ },
+ "tur": {
+ "official": "Liberya Cumhuriyeti",
+ "common": "Liberya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0644\u0627\u0626\u0628\u06cc\u0631\u06cc\u0627",
+ "common": "\u0644\u0627\u0626\u0628\u06cc\u0631\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u5229\u6bd4\u91cc\u4e9a\u5171\u548c\u56fd",
+ "common": "\u5229\u6bd4\u91cc\u4e9a"
+ }
+ },
+ "latlng": [
+ 6.5,
+ -9.5
+ ],
+ "landlocked": false,
+ "borders": [
+ "GIN",
+ "CIV",
+ "SLE"
+ ],
+ "area": 111369,
+ "flag": "\ud83c\uddf1\ud83c\uddf7",
+ "demonyms": {
+ "eng": {
+ "f": "Liberian",
+ "m": "Liberian"
+ },
+ "fra": {
+ "f": "Lib\u00e9rienne",
+ "m": "Lib\u00e9rien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Libya",
+ "official": "State of Libya",
+ "native": {
+ "ara": {
+ "official": "\u062f\u0648\u0644\u0629 \u0644\u064a\u0628\u064a\u0627",
+ "common": "\u0644\u064a\u0628\u064a\u0627"
+ }
+ }
+ },
+ "tld": [
+ ".ly"
+ ],
+ "cca2": "LY",
+ "ccn3": "434",
+ "cca3": "LBY",
+ "cioc": "LBA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "LYD": {
+ "name": "Libyan dinar",
+ "symbol": "\u0644.\u062f"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "18"
+ ]
+ },
+ "capital": [
+ "Tripoli"
+ ],
+ "altSpellings": [
+ "LY",
+ "State of Libya",
+ "Dawlat Libya"
+ ],
+ "region": "Africa",
+ "subregion": "Northern Africa",
+ "languages": {
+ "ara": "Arabic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062f\u0648\u0644\u0629 \u0644\u064a\u0628\u064a\u0627",
+ "common": "\u0644\u064a\u0628\u064a\u0627"
+ },
+ "bre": {
+ "official": "Stad Libia",
+ "common": "Libia"
+ },
+ "ces": {
+ "official": "St\u00e1t Libye",
+ "common": "Libye"
+ },
+ "deu": {
+ "official": "Staat Libyen",
+ "common": "Libyen"
+ },
+ "est": {
+ "official": "Liib\u00fca",
+ "common": "Liib\u00fca"
+ },
+ "fin": {
+ "official": "Libyan valtio",
+ "common": "Libya"
+ },
+ "fra": {
+ "official": "Grande R\u00e9publique arabe libyenne populaire et socialiste",
+ "common": "Libye"
+ },
+ "hrv": {
+ "official": "Dr\u017eava Libiji",
+ "common": "Libija"
+ },
+ "hun": {
+ "official": "L\u00edbia \u00c1llam",
+ "common": "L\u00edbia"
+ },
+ "ita": {
+ "official": "Stato della Libia",
+ "common": "Libia"
+ },
+ "jpn": {
+ "official": "\u30ea\u30d3\u30a2",
+ "common": "\u30ea\u30d3\u30a2"
+ },
+ "kor": {
+ "official": "\ub9ac\ube44\uc544",
+ "common": "\ub9ac\ube44\uc544"
+ },
+ "nld": {
+ "official": "Staat van Libi\u00eb",
+ "common": "Libi\u00eb"
+ },
+ "per": {
+ "official": "\u062f\u0648\u0644\u062a \u0644\u06cc\u0628\u06cc",
+ "common": "\u0644\u06cc\u0628\u06cc"
+ },
+ "pol": {
+ "official": "Pa\u0144stwo Libia",
+ "common": "Libia"
+ },
+ "por": {
+ "official": "Estado da L\u00edbia",
+ "common": "L\u00edbia"
+ },
+ "rus": {
+ "official": "\u0413\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u043e \u041b\u0438\u0432\u0438\u0438",
+ "common": "\u041b\u0438\u0432\u0438\u044f"
+ },
+ "slk": {
+ "official": "L\u00edbya",
+ "common": "L\u00edbya"
+ },
+ "spa": {
+ "official": "Estado de Libia",
+ "common": "Libia"
+ },
+ "srp": {
+ "official": "Dr\u017eava Libija",
+ "common": "Libija"
+ },
+ "swe": {
+ "official": "Staten Libyen",
+ "common": "Libyen"
+ },
+ "tur": {
+ "official": "Libya Devleti",
+ "common": "Libya"
+ },
+ "urd": {
+ "official": "\u0631\u06cc\u0627\u0633\u062a\u0650 \u0644\u06cc\u0628\u06cc\u0627",
+ "common": "\u0644\u06cc\u0628\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u5229\u6bd4\u4e9a\u56fd",
+ "common": "\u5229\u6bd4\u4e9a"
+ }
+ },
+ "latlng": [
+ 25,
+ 17
+ ],
+ "landlocked": false,
+ "borders": [
+ "DZA",
+ "TCD",
+ "EGY",
+ "NER",
+ "SDN",
+ "TUN"
+ ],
+ "area": 1759540,
+ "flag": "\ud83c\uddf1\ud83c\uddfe",
+ "demonyms": {
+ "eng": {
+ "f": "Libyan",
+ "m": "Libyan"
+ },
+ "fra": {
+ "f": "Libyenne",
+ "m": "Libyen"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Saint Lucia",
+ "official": "Saint Lucia",
+ "native": {
+ "eng": {
+ "official": "Saint Lucia",
+ "common": "Saint Lucia"
+ }
+ }
+ },
+ "tld": [
+ ".lc"
+ ],
+ "cca2": "LC",
+ "ccn3": "662",
+ "cca3": "LCA",
+ "cioc": "LCA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "XCD": {
+ "name": "Eastern Caribbean dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "758"
+ ]
+ },
+ "capital": [
+ "Castries"
+ ],
+ "altSpellings": [
+ "LC"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0633\u0627\u0646\u062a \u0644\u0648\u0633\u064a\u0627",
+ "common": "\u0633\u0627\u0646\u062a \u0644\u0648\u0633\u064a\u0627"
+ },
+ "bre": {
+ "official": "Santez-Lusia",
+ "common": "Santez-Lusia"
+ },
+ "ces": {
+ "official": "Svat\u00e1 Lucie",
+ "common": "Svat\u00e1 Lucie"
+ },
+ "deu": {
+ "official": "St. Lucia",
+ "common": "St. Lucia"
+ },
+ "est": {
+ "official": "Saint Lucia",
+ "common": "Saint Lucia"
+ },
+ "fin": {
+ "official": "Saint Lucia",
+ "common": "Saint Lucia"
+ },
+ "fra": {
+ "official": "Sainte-Lucie",
+ "common": "Sainte-Lucie"
+ },
+ "hrv": {
+ "official": "Sveta Lucija",
+ "common": "Sveta Lucija"
+ },
+ "hun": {
+ "official": "Saint Lucia",
+ "common": "Saint Lucia"
+ },
+ "ita": {
+ "official": "Santa Lucia",
+ "common": "Santa Lucia"
+ },
+ "jpn": {
+ "official": "\u30bb\u30f3\u30c8\u30eb\u30b7\u30a2",
+ "common": "\u30bb\u30f3\u30c8\u30eb\u30b7\u30a2"
+ },
+ "kor": {
+ "official": "\uc138\uc778\ud2b8\ub8e8\uc2dc\uc544",
+ "common": "\uc138\uc778\ud2b8\ub8e8\uc2dc\uc544"
+ },
+ "nld": {
+ "official": "Saint Lucia",
+ "common": "Saint Lucia"
+ },
+ "per": {
+ "official": "\u0633\u0646\u062a \u0644\u0648\u0633\u06cc\u0627",
+ "common": "\u0633\u0646\u062a \u0644\u0648\u0633\u06cc\u0627"
+ },
+ "pol": {
+ "official": "Saint Lucia",
+ "common": "Saint Lucia"
+ },
+ "por": {
+ "official": "Santa L\u00facia",
+ "common": "Santa L\u00facia"
+ },
+ "rus": {
+ "official": "\u0421\u0435\u043d\u0442-\u041b\u044e\u0441\u0438\u044f",
+ "common": "\u0421\u0435\u043d\u0442-\u041b\u044e\u0441\u0438\u044f"
+ },
+ "slk": {
+ "official": "Sv\u00e4t\u00e1 Lucia",
+ "common": "Sv\u00e4t\u00e1 Lucia"
+ },
+ "spa": {
+ "official": "Santa Luc\u00eda",
+ "common": "Santa Luc\u00eda"
+ },
+ "srp": {
+ "official": "Sveta Lucija",
+ "common": "Sveta Lucija"
+ },
+ "swe": {
+ "official": "Saint Lucia",
+ "common": "Saint Lucia"
+ },
+ "tur": {
+ "official": "Saint Lucia",
+ "common": "Saint Lucia"
+ },
+ "urd": {
+ "official": "\u0633\u06cc\u0646\u0679 \u0644\u0648\u0633\u06cc\u0627",
+ "common": "\u0633\u06cc\u0646\u0679 \u0644\u0648\u0633\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u5723\u5362\u897f\u4e9a",
+ "common": "\u5723\u5362\u897f\u4e9a"
+ }
+ },
+ "latlng": [
+ 13.88333333,
+ -60.96666666
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 616,
+ "flag": "\ud83c\uddf1\ud83c\udde8",
+ "demonyms": {
+ "eng": {
+ "f": "Saint Lucian",
+ "m": "Saint Lucian"
+ },
+ "fra": {
+ "f": "Saint-Lucienne",
+ "m": "Saint-Lucien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Liechtenstein",
+ "official": "Principality of Liechtenstein",
+ "native": {
+ "deu": {
+ "official": "F\u00fcrstentum Liechtenstein",
+ "common": "Liechtenstein"
+ }
+ }
+ },
+ "tld": [
+ ".li"
+ ],
+ "cca2": "LI",
+ "ccn3": "438",
+ "cca3": "LIE",
+ "cioc": "LIE",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "CHF": {
+ "name": "Swiss franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+4",
+ "suffixes": [
+ "23"
+ ]
+ },
+ "capital": [
+ "Vaduz"
+ ],
+ "altSpellings": [
+ "LI",
+ "Principality of Liechtenstein",
+ "F\u00fcrstentum Liechtenstein"
+ ],
+ "region": "Europe",
+ "subregion": "Western Europe",
+ "languages": {
+ "deu": "German"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0625\u0645\u0627\u0631\u0629 \u0644\u064a\u062e\u062a\u0646\u0634\u062a\u0627\u064a\u0646",
+ "common": "\u0644\u064a\u062e\u062a\u0646\u0634\u062a\u0627\u064a\u0646"
+ },
+ "bre": {
+ "official": "Priñselezh Liechtenstein",
+ "common": "Liechtenstein"
+ },
+ "ces": {
+ "official": "Kn\u00ed\u017eectv\u00ed Lichten\u0161tejnsk\u00e9",
+ "common": "Lichten\u0161tejnsko"
+ },
+ "deu": {
+ "official": "F\u00fcrstentum Liechtenstein",
+ "common": "Liechtenstein"
+ },
+ "est": {
+ "official": "Liechtensteini V\u00fcrstiriik",
+ "common": "Liechtenstein"
+ },
+ "fin": {
+ "official": "Liechensteinin ruhtinaskunta",
+ "common": "Liechenstein"
+ },
+ "fra": {
+ "official": "Principaut\u00e9 du Liechtenstein",
+ "common": "Liechtenstein"
+ },
+ "hrv": {
+ "official": "Kne\u017eevina Lihten\u0161tajn",
+ "common": "Lihten\u0161tajn"
+ },
+ "hun": {
+ "official": "Liechtensteini Hercegs\u00e9g",
+ "common": "Liechtenstein"
+ },
+ "ita": {
+ "official": "Principato del Liechtenstein",
+ "common": "Liechtenstein"
+ },
+ "jpn": {
+ "official": "\u30ea\u30d2\u30c6\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u516c\u56fd",
+ "common": "\u30ea\u30d2\u30c6\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3"
+ },
+ "kor": {
+ "official": "\ub9ac\ud788\ud150\uc288\ud0c0\uc778 \uacf5\uad6d",
+ "common": "\ub9ac\ud788\ud150\uc288\ud0c0\uc778"
+ },
+ "nld": {
+ "official": "Vorstendom Liechtenstein",
+ "common": "Liechtenstein"
+ },
+ "per": {
+ "official": "\u0634\u0627\u0647\u0632\u0627\u062f\u0647\u200c\u0646\u0634\u06cc\u0646 \u0644\u06cc\u062e\u062a\u0646\u200c\u0627\u0634\u062a\u0627\u06cc\u0646",
+ "common": "\u0644\u06cc\u062e\u062a\u0646\u200c\u0627\u0634\u062a\u0627\u06cc\u0646"
+ },
+ "pol": {
+ "official": "Ksi\u0119stwo Liechtensteinu",
+ "common": "Liechtenstein"
+ },
+ "por": {
+ "official": "Principado de Liechtenstein",
+ "common": "Liechtenstein"
+ },
+ "rus": {
+ "official": "\u041a\u043d\u044f\u0436\u0435\u0441\u0442\u0432\u043e \u041b\u0438\u0445\u0442\u0435\u043d\u0448\u0442\u0435\u0439\u043d",
+ "common": "\u041b\u0438\u0445\u0442\u0435\u043d\u0448\u0442\u0435\u0439\u043d"
+ },
+ "slk": {
+ "official": "Lichten\u0161tajnsk\u00e9 knie\u017eatstvo",
+ "common": "Lichten\u0161tajnsko"
+ },
+ "spa": {
+ "official": "Principado de Liechtenstein",
+ "common": "Liechtenstein"
+ },
+ "srp": {
+ "official": "Kne\u017eevina Lihten\u0161tajn",
+ "common": "Lihten\u0161tajn"
+ },
+ "swe": {
+ "official": "Furstend\u00f6met Liechtenstein",
+ "common": "Liechtenstein"
+ },
+ "tur": {
+ "official": "Lihten\u015ftayn Prensli\u011fi",
+ "common": "Lihten\u015ftayn"
+ },
+ "urd": {
+ "official": "\u0627\u0645\u0627\u0631\u0627\u062a \u0644\u06cc\u062e\u062a\u06cc\u0646\u0633\u062a\u0627\u0626\u0646",
+ "common": "\u0644\u06cc\u062e\u062a\u06cc\u0646\u0633\u062a\u0627\u0626\u0646"
+ },
+ "zho": {
+ "official": "\u5217\u652f\u6566\u58eb\u767b\u516c\u56fd",
+ "common": "\u5217\u652f\u6566\u58eb\u767b"
+ }
+ },
+ "latlng": [
+ 47.26666666,
+ 9.53333333
+ ],
+ "landlocked": true,
+ "borders": [
+ "AUT",
+ "CHE"
+ ],
+ "area": 160,
+ "flag": "\ud83c\uddf1\ud83c\uddee",
+ "demonyms": {
+ "eng": {
+ "f": "Liechtensteiner",
+ "m": "Liechtensteiner"
+ },
+ "fra": {
+ "f": "Liechtensteinoise",
+ "m": "Liechtensteinois"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Sri Lanka",
+ "official": "Democratic Socialist Republic of Sri Lanka",
+ "native": {
+ "sin": {
+ "official": "\u0dc1\u0dca\u200d\u0dbb\u0dd3 \u0dbd\u0d82\u0d9a\u0dcf \u0db4\u0dca\u200d\u0dbb\u0da2\u0dcf\u0dad\u0dcf\u0db1\u0dca\u0dad\u0dca\u200d\u0dbb\u0dd2\u0d9a \u0dc3\u0db8\u0dcf\u0da2\u0dc0\u0dcf\u0daf\u0dd3 \u0da2\u0db1\u0dbb\u0da2\u0dba",
+ "common": "\u0dc1\u0dca\u200d\u0dbb\u0dd3 \u0dbd\u0d82\u0d9a\u0dcf\u0dc0"
+ },
+ "tam": {
+ "official": "\u0b87\u0bb2\u0b99\u0bcd\u0b95\u0bc8 \u0b9a\u0ba9\u0ba8\u0bbe\u0baf\u0b95 \u0b9a\u0bcb\u0b9a\u0bb2\u0bbf\u0b9a\u0b95\u0bcd \u0b95\u0bc1\u0b9f\u0bbf\u0baf\u0bb0\u0b9a\u0bc1",
+ "common": "\u0b87\u0bb2\u0b99\u0bcd\u0b95\u0bc8"
+ }
+ }
+ },
+ "tld": [
+ ".lk",
+ ".\u0b87\u0bb2\u0b99\u0bcd\u0b95\u0bc8",
+ ".\u0dbd\u0d82\u0d9a\u0dcf"
+ ],
+ "cca2": "LK",
+ "ccn3": "144",
+ "cca3": "LKA",
+ "cioc": "SRI",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "LKR": {
+ "name": "Sri Lankan rupee",
+ "symbol": "Rs \u0dbb\u0dd4"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "4"
+ ]
+ },
+ "capital": [
+ "Colombo"
+ ],
+ "altSpellings": [
+ "LK",
+ "ila\u1e45kai",
+ "Democratic Socialist Republic of Sri Lanka"
+ ],
+ "region": "Asia",
+ "subregion": "Southern Asia",
+ "languages": {
+ "sin": "Sinhala",
+ "tam": "Tamil"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0633\u0631\u064a\u0644\u0627\u0646\u0643\u0627 \u0627\u0644\u062f\u064a\u0645\u0642\u0631\u0627\u0637\u064a\u0629 \u0627\u0644\u0634\u0639\u0628\u064a\u0629",
+ "common": "\u0633\u0631\u064a\u0644\u0627\u0646\u0643\u0627"
+ },
+ "bre": {
+ "official": "Republik Demokratel ha Sokialour Sri Lanka",
+ "common": "Sri Lanka"
+ },
+ "ces": {
+ "official": "Sr\u00edlansk\u00e1 demokratick\u00e1 socialistick\u00e1 republika",
+ "common": "Sr\u00ed Lanka"
+ },
+ "deu": {
+ "official": "Demokratische Sozialistische Republik Sri Lanka",
+ "common": "Sri Lanka"
+ },
+ "est": {
+ "official": "Sri Lanka Demokraatlik Sotsialistlik Vabariik",
+ "common": "Sri Lanka"
+ },
+ "fin": {
+ "official": "Sri Lankan demokraattinen sosialistinen tasavalta",
+ "common": "Sri Lanka"
+ },
+ "fra": {
+ "official": "R\u00e9publique d\u00e9mocratique socialiste du Sri Lanka",
+ "common": "Sri Lanka"
+ },
+ "hrv": {
+ "official": "Demokratska Socijalisti\u010dke Republike \u0160ri Lanke",
+ "common": "\u0160ri Lanka"
+ },
+ "hun": {
+ "official": "Sr\u00ed Lanka-i Demokratikus Szocialista K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Sr\u00ed Lanka"
+ },
+ "ita": {
+ "official": "Repubblica democratica socialista dello Sri Lanka",
+ "common": "Sri Lanka"
+ },
+ "jpn": {
+ "official": "\u30b9\u30ea\u30e9\u30f3\u30ab\u6c11\u4e3b\u793e\u4f1a\u4e3b\u7fa9\u5171\u548c\u56fd",
+ "common": "\u30b9\u30ea\u30e9\u30f3\u30ab"
+ },
+ "kor": {
+ "official": "\uc2a4\ub9ac\ub791\uce74 \ubbfc\uc8fc \uc0ac\ud68c\uc8fc\uc758 \uacf5\ud654\uad6d",
+ "common": "\uc2a4\ub9ac\ub791\uce74"
+ },
+ "nld": {
+ "official": "Democratische Socialistische Republiek Sri Lanka",
+ "common": "Sri Lanka"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062f\u0645\u0648\u06a9\u0631\u0627\u062a\u06cc\u06a9 \u0633\u0648\u0633\u06cc\u0627\u0644\u06cc\u0633\u062a\u06cc \u0633\u0631\u06cc\u200c\u0644\u0627\u0646\u06a9\u0627",
+ "common": "\u0633\u0631\u06cc\u200c\u0644\u0627\u0646\u06a9\u0627"
+ },
+ "pol": {
+ "official": "Demokratyczno-Socjalistyczna Republika Sri Lanki",
+ "common": "Sri Lanka"
+ },
+ "por": {
+ "official": "Rep\u00fablica Democr\u00e1tica Socialista do Sri Lanka",
+ "common": "Sri Lanka"
+ },
+ "rus": {
+ "official": "\u0414\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0421\u043e\u0446\u0438\u0430\u043b\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0428\u0440\u0438-\u041b\u0430\u043d\u043a\u0430",
+ "common": "\u0428\u0440\u0438-\u041b\u0430\u043d\u043a\u0430"
+ },
+ "slk": {
+ "official": "Sr\u00edlansk\u00e1 demokratick\u00e1 socialistick\u00e1 republika",
+ "common": "Sr\u00ed Lanka"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Democr\u00e1tica Socialista de Sri Lanka",
+ "common": "Sri Lanka"
+ },
+ "srp": {
+ "official": "Demokratska Socijalisti\u010dka Republika \u0160ri Lanka",
+ "common": "\u0160ri Lanka"
+ },
+ "swe": {
+ "official": "Demokratiska socialistiska republiken Sri Lanka",
+ "common": "Sri Lanka"
+ },
+ "tur": {
+ "official": "Sri Lanka Demokratik Sosyalist Cumhuriyeti",
+ "common": "Sri Lanka"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc \u0648 \u0627\u0634\u062a\u0631\u0627\u06a9\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0633\u0631\u06cc \u0644\u0646\u06a9\u0627",
+ "common": "\u0633\u0631\u06cc \u0644\u0646\u06a9\u0627"
+ },
+ "zho": {
+ "official": "\u65af\u91cc\u5170\u5361\u6c11\u4e3b\u793e\u4f1a\u4e3b\u4e49\u5171\u548c\u56fd",
+ "common": "\u65af\u91cc\u5170\u5361"
+ }
+ },
+ "latlng": [
+ 7,
+ 81
+ ],
+ "landlocked": false,
+ "borders": [
+ "IND"
+ ],
+ "area": 65610,
+ "flag": "\ud83c\uddf1\ud83c\uddf0",
+ "demonyms": {
+ "eng": {
+ "f": "Sri Lankan",
+ "m": "Sri Lankan"
+ },
+ "fra": {
+ "f": "Sri-lankaise",
+ "m": "Sri-lankais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Lesotho",
+ "official": "Kingdom of Lesotho",
+ "native": {
+ "eng": {
+ "official": "Kingdom of Lesotho",
+ "common": "Lesotho"
+ },
+ "sot": {
+ "official": "Kingdom of Lesotho",
+ "common": "Lesotho"
+ }
+ }
+ },
+ "tld": [
+ ".ls"
+ ],
+ "cca2": "LS",
+ "ccn3": "426",
+ "cca3": "LSO",
+ "cioc": "LES",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "LSL": {
+ "name": "Lesotho loti",
+ "symbol": "L"
+ },
+ "ZAR": {
+ "name": "South African rand",
+ "symbol": "R"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "66"
+ ]
+ },
+ "capital": [
+ "Maseru"
+ ],
+ "altSpellings": [
+ "LS",
+ "Kingdom of Lesotho",
+ "Muso oa Lesotho"
+ ],
+ "region": "Africa",
+ "subregion": "Southern Africa",
+ "languages": {
+ "eng": "English",
+ "sot": "Sotho"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0645\u0644\u0643\u0629 \u0644\u064a\u0633\u0648\u062a\u0648",
+ "common": "\u0644\u064a\u0633\u0648\u062a\u0648"
+ },
+ "bre": {
+ "official": "Rouantelezh Lesotho",
+ "common": "Lesotho"
+ },
+ "ces": {
+ "official": "Lesothsk\u00e9 kr\u00e1lovstv\u00ed",
+ "common": "Lesotho"
+ },
+ "deu": {
+ "official": "K\u00f6nigreich Lesotho",
+ "common": "Lesotho"
+ },
+ "est": {
+ "official": "Lesotho Kuningriik",
+ "common": "Lesotho"
+ },
+ "fin": {
+ "official": "Lesothon kuningaskunta",
+ "common": "Lesotho"
+ },
+ "fra": {
+ "official": "Royaume du Lesotho",
+ "common": "Lesotho"
+ },
+ "hrv": {
+ "official": "Kraljevina Lesoto",
+ "common": "Lesoto"
+ },
+ "hun": {
+ "official": "Lesoth\u00f3i Kir\u00e1lys\u00e1g",
+ "common": "Lesotho"
+ },
+ "ita": {
+ "official": "Regno del Lesotho",
+ "common": "Lesotho"
+ },
+ "jpn": {
+ "official": "\u30ec\u30bd\u30c8\u738b\u56fd",
+ "common": "\u30ec\u30bd\u30c8"
+ },
+ "kor": {
+ "official": "\ub808\uc18c\ud1a0 \uc655\uad6d",
+ "common": "\ub808\uc18c\ud1a0"
+ },
+ "nld": {
+ "official": "Koninkrijk Lesotho",
+ "common": "Lesotho"
+ },
+ "per": {
+ "official": "\u067e\u0627\u062f\u0634\u0627\u0647\u06cc \u0644\u0633\u0648\u062a\u0648",
+ "common": "\u0644\u0633\u0648\u062a\u0648"
+ },
+ "pol": {
+ "official": "Kr\u00f3lestwo Lesotho",
+ "common": "Lesotho"
+ },
+ "por": {
+ "official": "Reino do Lesoto",
+ "common": "Lesoto"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u0440\u043e\u043b\u0435\u0432\u0441\u0442\u0432\u043e \u041b\u0435\u0441\u043e\u0442\u043e",
+ "common": "\u041b\u0435\u0441\u043e\u0442\u043e"
+ },
+ "slk": {
+ "official": "Lesothsk\u00e9 kr\u00e1\u013eovstvo",
+ "common": "Lesotho"
+ },
+ "spa": {
+ "official": "Reino de Lesotho",
+ "common": "Lesotho"
+ },
+ "srp": {
+ "official": "Kraljevina Lesoto",
+ "common": "Lesoto"
+ },
+ "swe": {
+ "official": "Konungariket Lesotho",
+ "common": "Lesotho"
+ },
+ "tur": {
+ "official": "Lesotho Krall\u0131\u011f\u0131",
+ "common": "Lesotho"
+ },
+ "urd": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a\u0650 \u0644\u06cc\u0633\u0648\u062a\u06be\u0648",
+ "common": "\u0644\u06cc\u0633\u0648\u062a\u06be\u0648"
+ },
+ "zho": {
+ "official": "\u83b1\u7d22\u6258\u738b\u56fd",
+ "common": "\u83b1\u7d22\u6258"
+ }
+ },
+ "latlng": [
+ -29.5,
+ 28.5
+ ],
+ "landlocked": true,
+ "borders": [
+ "ZAF"
+ ],
+ "area": 30355,
+ "flag": "\ud83c\uddf1\ud83c\uddf8",
+ "demonyms": {
+ "eng": {
+ "f": "Mosotho",
+ "m": "Mosotho"
+ },
+ "fra": {
+ "f": "L\u00e9sothienne",
+ "m": "L\u00e9sothien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Lithuania",
+ "official": "Republic of Lithuania",
+ "native": {
+ "lit": {
+ "official": "Lietuvos Respublikos",
+ "common": "Lietuva"
+ }
+ }
+ },
+ "tld": [
+ ".lt"
+ ],
+ "cca2": "LT",
+ "ccn3": "440",
+ "cca3": "LTU",
+ "cioc": "LTU",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "70"
+ ]
+ },
+ "capital": [
+ "Vilnius"
+ ],
+ "altSpellings": [
+ "LT",
+ "Republic of Lithuania",
+ "Lietuvos Respublika"
+ ],
+ "region": "Europe",
+ "subregion": "Northern Europe",
+ "languages": {
+ "lit": "Lithuanian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0644\u064a\u062a\u0648\u0627\u0646\u064a\u0627",
+ "common": "\u0644\u064a\u062a\u0648\u0627\u0646\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Lituania",
+ "common": "Lituania"
+ },
+ "ces": {
+ "official": "Litevsk\u00e1 republika",
+ "common": "Litva"
+ },
+ "deu": {
+ "official": "Republik Litauen",
+ "common": "Litauen"
+ },
+ "est": {
+ "official": "Leedu Vabariik",
+ "common": "Leedu"
+ },
+ "fin": {
+ "official": "Liettuan tasavalta",
+ "common": "Liettua"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Lituanie",
+ "common": "Lituanie"
+ },
+ "hrv": {
+ "official": "Republika Litva",
+ "common": "Litva"
+ },
+ "hun": {
+ "official": "Litv\u00e1n K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Litv\u00e1nia"
+ },
+ "ita": {
+ "official": "Repubblica di Lituania",
+ "common": "Lituania"
+ },
+ "jpn": {
+ "official": "\u30ea\u30c8\u30a2\u30cb\u30a2\u5171\u548c\u56fd",
+ "common": "\u30ea\u30c8\u30a2\u30cb\u30a2"
+ },
+ "kor": {
+ "official": "\ub9ac\ud22c\uc544\ub2c8\uc544 \uacf5\ud654\uad6d",
+ "common": "\ub9ac\ud22c\uc544\ub2c8\uc544"
+ },
+ "nld": {
+ "official": "Republiek Litouwen",
+ "common": "Litouwen"
+ },
+ "per": {
+ "official": "\u0644\u06cc\u062a\u0648\u0627\u0646\u06cc\u0627\u06cc\u06cc\u200c\u0647\u0627",
+ "common": "\u0644\u06cc\u062a\u0648\u0627\u0646\u06cc\u0627\u06cc\u06cc\u200c\u0647\u0627"
+ },
+ "pol": {
+ "official": "Republika Litewska",
+ "common": "Litwa"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Litu\u00e2nia",
+ "common": "Litu\u00e2nia"
+ },
+ "rus": {
+ "official": "\u041b\u0438\u0442\u043e\u0432\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u041b\u0438\u0442\u0432\u0430"
+ },
+ "slk": {
+ "official": "Litovsk\u00e1 republika",
+ "common": "Litva"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Lituania",
+ "common": "Lituania"
+ },
+ "srp": {
+ "official": "Republika Litvanija",
+ "common": "Litvanija"
+ },
+ "swe": {
+ "official": "Republiken Litauen",
+ "common": "Litauen"
+ },
+ "tur": {
+ "official": "Litvanya Cumhuriyeti",
+ "common": "Litvanya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0644\u062a\u06be\u0648\u0648\u06cc\u0646\u06cc\u0627",
+ "common": "\u0644\u062a\u06be\u0648\u0648\u06cc\u0646\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u7acb\u9676\u5b9b\u5171\u548c\u56fd",
+ "common": "\u7acb\u9676\u5b9b"
+ }
+ },
+ "latlng": [
+ 56,
+ 24
+ ],
+ "landlocked": false,
+ "borders": [
+ "BLR",
+ "LVA",
+ "POL",
+ "RUS"
+ ],
+ "area": 65300,
+ "flag": "\ud83c\uddf1\ud83c\uddf9",
+ "demonyms": {
+ "eng": {
+ "f": "Lithuanian",
+ "m": "Lithuanian"
+ },
+ "fra": {
+ "f": "Lituanienne",
+ "m": "Lituanien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Luxembourg",
+ "official": "Grand Duchy of Luxembourg",
+ "native": {
+ "deu": {
+ "official": "Gro\u00dfherzogtum Luxemburg",
+ "common": "Luxemburg"
+ },
+ "fra": {
+ "official": "Grand-Duch\u00e9 de Luxembourg",
+ "common": "Luxembourg"
+ },
+ "ltz": {
+ "official": "Groussherzogtum L\u00ebtzebuerg",
+ "common": "L\u00ebtzebuerg"
+ }
+ }
+ },
+ "tld": [
+ ".lu"
+ ],
+ "cca2": "LU",
+ "ccn3": "442",
+ "cca3": "LUX",
+ "cioc": "LUX",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "52"
+ ]
+ },
+ "capital": [
+ "Luxembourg"
+ ],
+ "altSpellings": [
+ "LU",
+ "Grand Duchy of Luxembourg",
+ "Grand-Duch\u00e9 de Luxembourg",
+ "Gro\u00dfherzogtum Luxemburg",
+ "Groussherzogtum L\u00ebtzebuerg"
+ ],
+ "region": "Europe",
+ "subregion": "Western Europe",
+ "languages": {
+ "deu": "German",
+ "fra": "French",
+ "ltz": "Luxembourgish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062f\u0648\u0642\u064a\u0629 \u0644\u0648\u0643\u0633\u0645\u0628\u0648\u0631\u063a",
+ "common": "\u0644\u0648\u0643\u0633\u0645\u0628\u0648\u0631\u063a"
+ },
+ "bre": {
+ "official": "Dugelezh Veur Luksembourg",
+ "common": "Luksembourg"
+ },
+ "ces": {
+ "official": "Lucembursk\u00e9 velkov\u00e9vodstv\u00ed",
+ "common": "Lucembursko"
+ },
+ "deu": {
+ "official": "Gro\u00dfherzogtum Luxemburg,",
+ "common": "Luxemburg"
+ },
+ "est": {
+ "official": "Luksemburgi Suurhertsogiriik",
+ "common": "Luksemburg"
+ },
+ "fin": {
+ "official": "Luxemburgin suurherttuakunta",
+ "common": "Luxemburg"
+ },
+ "fra": {
+ "official": "Grand-Duch\u00e9 de Luxembourg",
+ "common": "Luxembourg"
+ },
+ "hrv": {
+ "official": "Veliko Vojvodstvo Luksemburg",
+ "common": "Luksemburg"
+ },
+ "hun": {
+ "official": "Luxemburgi Nagyhercegs\u00e9g",
+ "common": "Luxemburg"
+ },
+ "ita": {
+ "official": "Granducato di Lussemburgo",
+ "common": "Lussemburgo"
+ },
+ "jpn": {
+ "official": "\u30eb\u30af\u30bb\u30f3\u30d6\u30eb\u30af\u5927\u516c\u56fd",
+ "common": "\u30eb\u30af\u30bb\u30f3\u30d6\u30eb\u30af"
+ },
+ "kor": {
+ "official": "\ub8e9\uc148\ubd80\ub974\ud06c \ub300\uacf5\uad6d",
+ "common": "\ub8e9\uc148\ubd80\ub974\ud06c"
+ },
+ "nld": {
+ "official": "Groothertogdom Luxemburg",
+ "common": "Luxemburg"
+ },
+ "per": {
+ "official": "\u062f\u0648\u06a9\u200c\u0646\u0634\u06cc\u0646 \u0644\u0648\u06a9\u0632\u0627\u0645\u0628\u0648\u0631\u06af",
+ "common": "\u0644\u0648\u06a9\u0632\u0627\u0645\u0628\u0648\u0631\u06af"
+ },
+ "pol": {
+ "official": "Wielkie Ksi\u0119stwo Luksemburga",
+ "common": "Luksemburg"
+ },
+ "por": {
+ "official": "Gr\u00e3o-Ducado do Luxemburgo",
+ "common": "Luxemburgo"
+ },
+ "rus": {
+ "official": "\u0412\u0435\u043b\u0438\u043a\u043e\u0435 \u0413\u0435\u0440\u0446\u043e\u0433\u0441\u0442\u0432\u043e \u041b\u044e\u043a\u0441\u0435\u043c\u0431\u0443\u0440\u0433",
+ "common": "\u041b\u044e\u043a\u0441\u0435\u043c\u0431\u0443\u0440\u0433"
+ },
+ "slk": {
+ "official": "Luxembursk\u00e9 ve\u013ekovojvodstvo",
+ "common": "Luxembursko"
+ },
+ "spa": {
+ "official": "Gran Ducado de Luxemburgo",
+ "common": "Luxemburgo"
+ },
+ "srp": {
+ "official": "Veliko Vojvodstvo Luksemburg",
+ "common": "Luksemburg"
+ },
+ "swe": {
+ "official": "Storhertigd\u00f6met Luxemburg",
+ "common": "Luxemburg"
+ },
+ "tur": {
+ "official": "L\u00fcksemburg B\u00fcy\u00fck D\u00fckal\u0131\u011f\u0131",
+ "common": "L\u00fcksemburg"
+ },
+ "urd": {
+ "official": "\u062f\u0648\u0642\u06cc\u06c1 \u06a9\u0628\u06cc\u0631\u0644\u06a9\u0633\u0645\u0628\u0631\u06af",
+ "common": "\u0644\u06a9\u0633\u0645\u0628\u0631\u06af"
+ },
+ "zho": {
+ "official": "\u5362\u68ee\u5821\u5927\u516c\u56fd",
+ "common": "\u5362\u68ee\u5821"
+ }
+ },
+ "latlng": [
+ 49.75,
+ 6.16666666
+ ],
+ "landlocked": true,
+ "borders": [
+ "BEL",
+ "FRA",
+ "DEU"
+ ],
+ "area": 2586,
+ "flag": "\ud83c\uddf1\ud83c\uddfa",
+ "demonyms": {
+ "eng": {
+ "f": "Luxembourger",
+ "m": "Luxembourger"
+ },
+ "fra": {
+ "f": "Luxembourgeoise",
+ "m": "Luxembourgeois"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Latvia",
+ "official": "Republic of Latvia",
+ "native": {
+ "lav": {
+ "official": "Latvijas Republikas",
+ "common": "Latvija"
+ }
+ }
+ },
+ "tld": [
+ ".lv"
+ ],
+ "cca2": "LV",
+ "ccn3": "428",
+ "cca3": "LVA",
+ "cioc": "LAT",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "71"
+ ]
+ },
+ "capital": [
+ "Riga"
+ ],
+ "altSpellings": [
+ "LV",
+ "Republic of Latvia",
+ "Latvijas Republika"
+ ],
+ "region": "Europe",
+ "subregion": "Northern Europe",
+ "languages": {
+ "lav": "Latvian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0644\u0627\u062a\u0641\u064a\u0627",
+ "common": "\u0644\u0627\u062a\u0641\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Latvia",
+ "common": "Latvia"
+ },
+ "ces": {
+ "official": "Loty\u0161sk\u00e1 republika",
+ "common": "Loty\u0161sko"
+ },
+ "deu": {
+ "official": "Republik Lettland",
+ "common": "Lettland"
+ },
+ "est": {
+ "official": "L\u00e4ti Vabariik",
+ "common": "L\u00e4ti"
+ },
+ "fin": {
+ "official": "Latvian tasavalta",
+ "common": "Latvia"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Lettonie",
+ "common": "Lettonie"
+ },
+ "hrv": {
+ "official": "Republika Latvija",
+ "common": "Latvija"
+ },
+ "hun": {
+ "official": "Lett K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Lettorsz\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica di Lettonia",
+ "common": "Lettonia"
+ },
+ "jpn": {
+ "official": "\u30e9\u30c8\u30d3\u30a2\u5171\u548c\u56fd",
+ "common": "\u30e9\u30c8\u30d3\u30a2"
+ },
+ "kor": {
+ "official": "\ub77c\ud2b8\ube44\uc544 \uacf5\ud654\uad6d",
+ "common": "\ub77c\ud2b8\ube44\uc544"
+ },
+ "nld": {
+ "official": "Republiek Letland",
+ "common": "Letland"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0644\u062a\u0648\u0646\u06cc",
+ "common": "\u0644\u062a\u0648\u0646\u06cc"
+ },
+ "pol": {
+ "official": "Republika \u0141otewska",
+ "common": "\u0141otwa"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Let\u00f3nia",
+ "common": "Let\u00f3nia"
+ },
+ "rus": {
+ "official": "\u041b\u0430\u0442\u0432\u0438\u0439\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u041b\u0430\u0442\u0432\u0438\u044f"
+ },
+ "slk": {
+ "official": "Loty\u0161sk\u00e1 republika",
+ "common": "Loty\u0161sko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Letonia",
+ "common": "Letonia"
+ },
+ "srp": {
+ "official": "Republika Letonija",
+ "common": "Letonija"
+ },
+ "swe": {
+ "official": "Republiken Lettland",
+ "common": "Lettland"
+ },
+ "tur": {
+ "official": "Letonya Cumhuriyeti",
+ "common": "Letonya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0644\u0679\u0648\u06cc\u0627",
+ "common": "\u0644\u0679\u0648\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u62c9\u8131\u7ef4\u4e9a\u5171\u548c\u56fd",
+ "common": "\u62c9\u8131\u7ef4\u4e9a"
+ }
+ },
+ "latlng": [
+ 57,
+ 25
+ ],
+ "landlocked": false,
+ "borders": [
+ "BLR",
+ "EST",
+ "LTU",
+ "RUS"
+ ],
+ "area": 64559,
+ "flag": "\ud83c\uddf1\ud83c\uddfb",
+ "demonyms": {
+ "eng": {
+ "f": "Latvian",
+ "m": "Latvian"
+ },
+ "fra": {
+ "f": "Lettone",
+ "m": "Letton"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Macau",
+ "official": "Macao Special Administrative Region of the People's Republic of China",
+ "native": {
+ "por": {
+ "official": "Regi\u00e3o Administrativa Especial de Macau da Rep\u00fablica Popular da China",
+ "common": "Macau"
+ },
+ "zho": {
+ "official": "\u4e2d\u534e\u4eba\u6c11\u5171\u548c\u56fd\u6fb3\u95e8\u7279\u522b\u884c\u653f\u533a",
+ "common": "\u6fb3\u95e8"
+ }
+ }
+ },
+ "tld": [
+ ".mo"
+ ],
+ "cca2": "MO",
+ "ccn3": "446",
+ "cca3": "MAC",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "MOP": {
+ "name": "Macanese pataca",
+ "symbol": "P"
+ }
+ },
+ "idd": {
+ "root": "+8",
+ "suffixes": [
+ "53"
+ ]
+ },
+ "capital": [],
+ "altSpellings": [
+ "MO",
+ "\u6fb3\u95e8",
+ "Macao",
+ "Macao Special Administrative Region of the People's Republic of China",
+ "\u4e2d\u83ef\u4eba\u6c11\u5171\u548c\u570b\u6fb3\u9580\u7279\u5225\u884c\u653f\u5340",
+ "Regi\u00e3o Administrativa Especial de Macau da Rep\u00fablica Popular da China"
+ ],
+ "region": "Asia",
+ "subregion": "Eastern Asia",
+ "languages": {
+ "por": "Portuguese",
+ "zho": "Chinese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0646\u0637\u0642\u0629 \u0645\u0627\u0643\u0627\u0648 \u0627\u0644\u0625\u062f\u0627\u0631\u064a\u0629 \u0627\u0644\u062a\u0627\u0628\u0639\u0629 \u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0635\u064a\u0646 \u0627\u0644\u0634\u0639\u0628\u064a\u0629",
+ "common": "\u0645\u0627\u0643\u0627\u0648"
+ },
+ "bre": {
+ "official": "Rannvro velestradurel arbennik Makao eus Republik pobl Sina",
+ "common": "Makao"
+ },
+ "ces": {
+ "official": "Zvl\u00e1\u0161tn\u00ed spr\u00e1vn\u00ed oblast \u010c\u00ednsk\u00e9 lidov\u00e9 republiky Macao",
+ "common": "Macao"
+ },
+ "deu": {
+ "official": "Sonderverwaltungsregion Macau der Volksrepublik China",
+ "common": "Macao"
+ },
+ "est": {
+ "official": "Macau erihalduspiirkond",
+ "common": "Macau"
+ },
+ "fin": {
+ "official": "Macaon Kiinan kansantasavallan erityishallintoalue",
+ "common": "Macao"
+ },
+ "fra": {
+ "official": "R\u00e9gion administrative sp\u00e9ciale de Macao de la R\u00e9publique populaire de Chine",
+ "common": "Macao"
+ },
+ "hrv": {
+ "official": "Makao Posebnog upravnog podru\u010djaNarodne Republike Kine",
+ "common": "Makao"
+ },
+ "hun": {
+ "official": "Maka\u00f3",
+ "common": "Maka\u00f3"
+ },
+ "ita": {
+ "official": "Macao Regione amministrativa speciale della Repubblica Popolare Cinese",
+ "common": "Macao"
+ },
+ "jpn": {
+ "official": "\u6fb3\u9580\u7279\u5225\u884c\u653f\u533a",
+ "common": "\u30de\u30ab\u30aa"
+ },
+ "kor": {
+ "official": "\uc911\ud654\uc778\ubbfc\uacf5\ud654\uad6d \ub9c8\uce74\uc624 \ud2b9\ubcc4\ud589\uc815\uad6c",
+ "common": "\ub9c8\uce74\uc624"
+ },
+ "nld": {
+ "official": "Speciale Administratieve Regio Macau van de Volksrepubliek China",
+ "common": "Macao"
+ },
+ "per": {
+ "official": "\u0645\u0627\u06a9\u0627\u0626\u0648",
+ "common": "\u0645\u0627\u06a9\u0627\u0626\u0648"
+ },
+ "pol": {
+ "official": "Specjalny Region Administracyjny Chi\u0144skiej Republiki Ludowej Makau",
+ "common": "Makau"
+ },
+ "por": {
+ "official": "Macau Regi\u00e3o Administrativa Especial da Rep\u00fablica Popular da China",
+ "common": "Macau"
+ },
+ "rus": {
+ "official": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043d\u044b\u0439 \u0440\u0430\u0439\u043e\u043d \u041c\u0430\u043a\u0430\u043e \u041a\u0438\u0442\u0430\u0439\u0441\u043a\u043e\u0439 \u041d\u0430\u0440\u043e\u0434\u043d\u043e\u0439 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0438 \u041a\u0438\u0442\u0430\u0439",
+ "common": "\u041c\u0430\u043a\u0430\u043e"
+ },
+ "slk": {
+ "official": "Macao, \u0160peci\u00e0lna administrat\u00edvna oblas\u0166",
+ "common": "Macao"
+ },
+ "spa": {
+ "official": "Macao, Regi\u00f3n Administrativa Especial de la Rep\u00fablica Popular China",
+ "common": "Macao"
+ },
+ "srp": {
+ "official": "Makao specijalna administrativna oblast Narodne Republike Kine",
+ "common": "Makao"
+ },
+ "swe": {
+ "official": "Macao",
+ "common": "Macao"
+ },
+ "tur": {
+ "official": "\u00e7in Halk Cumhuriyeti Makao \u00f6zel \u0130dari B\u00f6lgesi",
+ "common": "Makao"
+ },
+ "urd": {
+ "official": "\u0645\u06a9\u0627\u0624 \u0639\u0648\u0627\u0645\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0686\u06cc\u0646 \u06a9\u0627 \u062e\u0635\u0648\u0635\u06cc \u0627\u0646\u062a\u0638\u0627\u0645\u06cc \u0639\u0644\u0627\u0642\u06c1",
+ "common": "\u0645\u06a9\u0627\u0624"
+ },
+ "zho": {
+ "official": "\u4e2d\u534e\u4eba\u6c11\u5171\u548c\u56fd\u6fb3\u95e8\u7279\u522b\u884c\u653f\u533a",
+ "common": "\u6fb3\u95e8"
+ }
+ },
+ "latlng": [
+ 22.16666666,
+ 113.55
+ ],
+ "landlocked": false,
+ "borders": [
+ "CHN"
+ ],
+ "area": 30,
+ "flag": "\ud83c\uddf2\ud83c\uddf4",
+ "demonyms": {
+ "eng": {
+ "f": "Macanese",
+ "m": "Macanese"
+ },
+ "fra": {
+ "f": "Macanaise",
+ "m": "Macanais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Saint Martin",
+ "official": "Saint Martin",
+ "native": {
+ "fra": {
+ "official": "Saint-Martin",
+ "common": "Saint-Martin"
+ }
+ }
+ },
+ "tld": [
+ ".fr",
+ ".gp"
+ ],
+ "cca2": "MF",
+ "ccn3": "663",
+ "cca3": "MAF",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "90"
+ ]
+ },
+ "capital": [
+ "Marigot"
+ ],
+ "altSpellings": [
+ "MF",
+ "Collectivity of Saint Martin",
+ "Collectivit\u00e9 de Saint-Martin",
+ "Saint Martin (French part)"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0633\u0627\u0646\u062a \u0645\u0627\u0631\u062a\u0646",
+ "common": "\u0633\u0627\u0646\u062a \u0645\u0627\u0631\u062a\u0646"
+ },
+ "bre": {
+ "official": "Saint-Martin",
+ "common": "Saint-Martin"
+ },
+ "ces": {
+ "official": "Svat\u00fd Martin",
+ "common": "Svat\u00fd Martin (Francie)"
+ },
+ "deu": {
+ "official": "Saint-Martin",
+ "common": "Saint-Martin"
+ },
+ "est": {
+ "official": "Saint-Martini \u00fchendus",
+ "common": "Saint-Martin"
+ },
+ "fin": {
+ "official": "Saint-Martin",
+ "common": "Saint-Martin"
+ },
+ "fra": {
+ "official": "Saint-Martin",
+ "common": "Saint-Martin"
+ },
+ "hrv": {
+ "official": "Saint Martin",
+ "common": "Sveti Martin"
+ },
+ "hun": {
+ "official": "Saint-Martin K\u00f6z\u00f6ss\u00e9g",
+ "common": "Saint-Martin"
+ },
+ "ita": {
+ "official": "saint Martin",
+ "common": "Saint Martin"
+ },
+ "jpn": {
+ "official": "\u30b5\u30f3\u30de\u30eb\u30bf\u30f3",
+ "common": "\u30b5\u30f3\u30fb\u30de\u30eb\u30bf\u30f3"
+ },
+ "kor": {
+ "official": "\uc0dd\ub9c8\ub974\ud0f1",
+ "common": "\uc0dd\ub9c8\ub974\ud0f1"
+ },
+ "nld": {
+ "official": "Saint Martin",
+ "common": "Saint-Martin"
+ },
+ "per": {
+ "official": "\u0633\u0646 \u0645\u0627\u0631\u062a\u0646",
+ "common": "\u0633\u0646 \u0645\u0627\u0631\u062a\u0646"
+ },
+ "pol": {
+ "official": "Wsp\u00f3lnota Saint-Martin",
+ "common": "Saint-Martin"
+ },
+ "por": {
+ "official": "saint Martin",
+ "common": "S\u00e3o Martinho"
+ },
+ "rus": {
+ "official": "\u0421\u0435\u043d-\u041c\u0430\u0440\u0442\u0435\u043d",
+ "common": "\u0421\u0435\u043d-\u041c\u0430\u0440\u0442\u0435\u043d"
+ },
+ "slk": {
+ "official": "Saint-Martin",
+ "common": "Saint-Martin"
+ },
+ "spa": {
+ "official": "Saint Martin",
+ "common": "Saint Martin"
+ },
+ "srp": {
+ "official": "Sveti Martin",
+ "common": "Sveti Martin"
+ },
+ "swe": {
+ "official": "F\u00f6rvaltningsomr\u00e5det Saint-Martin",
+ "common": "Saint-Martin"
+ },
+ "tur": {
+ "official": "Saint Martin",
+ "common": "Saint Martin"
+ },
+ "urd": {
+ "official": "\u0633\u06cc\u0646\u0679 \u0645\u0627\u0631\u0679\u0646",
+ "common": "\u0633\u06cc\u0646\u0679 \u0645\u0627\u0631\u0679\u0646"
+ },
+ "zho": {
+ "official": "\u5723\u9a6c\u4e01",
+ "common": "\u5723\u9a6c\u4e01"
+ }
+ },
+ "latlng": [
+ 18.08333333,
+ -63.95
+ ],
+ "landlocked": false,
+ "borders": [
+ "SXM"
+ ],
+ "area": 53,
+ "flag": "\ud83c\uddf2\ud83c\uddeb",
+ "demonyms": {
+ "eng": {
+ "f": "Saint Martin Islander",
+ "m": "Saint Martin Islander"
+ },
+ "fra": {
+ "f": "Saint-Martinoise",
+ "m": "Saint-Martinois"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Morocco",
+ "official": "Kingdom of Morocco",
+ "native": {
+ "ara": {
+ "official": "\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0645\u063a\u0631\u0628\u064a\u0629",
+ "common": "\u0627\u0644\u0645\u063a\u0631\u0628"
+ },
+ "ber": {
+ "official": "\u2d5c\u2d30\u2d33\u2d4d\u2d37\u2d49\u2d5c \u2d4f \u2d4d\u2d4e\u2d56\u2d54\u2d49\u2d31",
+ "common": "\u2d4d\u2d4e\u2d30\u2d56\u2d54\u2d49\u2d31"
+ }
+ }
+ },
+ "tld": [
+ ".ma",
+ "\u0627\u0644\u0645\u063a\u0631\u0628."
+ ],
+ "cca2": "MA",
+ "ccn3": "504",
+ "cca3": "MAR",
+ "cioc": "MAR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "MAD": {
+ "name": "Moroccan dirham",
+ "symbol": "\u062f.\u0645."
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "12"
+ ]
+ },
+ "capital": [
+ "Rabat"
+ ],
+ "altSpellings": [
+ "MA",
+ "Kingdom of Morocco",
+ "Al-Mamlakah al-Ma\u0121ribiyah"
+ ],
+ "region": "Africa",
+ "subregion": "Northern Africa",
+ "languages": {
+ "ara": "Arabic",
+ "ber": "Berber"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0645\u063a\u0631\u0628\u064a\u0629",
+ "common": "\u0627\u0644\u0645\u063a\u0631\u0628"
+ },
+ "bre": {
+ "official": "Rouantelezh Maroko",
+ "common": "Maroko"
+ },
+ "ces": {
+ "official": "Marock\u00e9 kr\u00e1lovstv\u00ed",
+ "common": "Maroko"
+ },
+ "deu": {
+ "official": "K\u00f6nigreich Marokko",
+ "common": "Marokko"
+ },
+ "est": {
+ "official": "Maroko Kuningriik",
+ "common": "Maroko"
+ },
+ "fin": {
+ "official": "Marokon kuningaskunta",
+ "common": "Marokko"
+ },
+ "fra": {
+ "official": "Royaume du Maroc",
+ "common": "Maroc"
+ },
+ "hrv": {
+ "official": "Kraljevina Maroko",
+ "common": "Maroko"
+ },
+ "hun": {
+ "official": "Marokk\u00f3i Kir\u00e1lys\u00e1g",
+ "common": "Marokk\u00f3"
+ },
+ "ita": {
+ "official": "Regno del Marocco",
+ "common": "Marocco"
+ },
+ "jpn": {
+ "official": "\u30e2\u30ed\u30c3\u30b3\u738b\u56fd",
+ "common": "\u30e2\u30ed\u30c3\u30b3"
+ },
+ "kor": {
+ "official": "\ubaa8\ub85c\ucf54 \uc655\uad6d",
+ "common": "\ubaa8\ub85c\ucf54"
+ },
+ "nld": {
+ "official": "Koninkrijk Marokko",
+ "common": "Marokko"
+ },
+ "per": {
+ "official": "\u067e\u0627\u062f\u0634\u0627\u0647\u06cc \u0645\u0631\u0627\u06a9\u0634",
+ "common": "\u0645\u0631\u0627\u06a9\u0634"
+ },
+ "pol": {
+ "official": "Kr\u00f3lestwo Maroka\u0144skie",
+ "common": "Maroko"
+ },
+ "por": {
+ "official": "Reino de Marrocos",
+ "common": "Marrocos"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u0440\u043e\u043b\u0435\u0432\u0441\u0442\u0432\u043e \u041c\u0430\u0440\u043e\u043a\u043a\u043e",
+ "common": "\u041c\u0430\u0440\u043e\u043a\u043a\u043e"
+ },
+ "slk": {
+ "official": "Marock\u00e9 knie\u017eatstvo",
+ "common": "Maroko"
+ },
+ "spa": {
+ "official": "Reino de Marruecos",
+ "common": "Marruecos"
+ },
+ "srp": {
+ "official": "Kraljevina Maroko",
+ "common": "Maroko"
+ },
+ "swe": {
+ "official": "Konungariket Marocko",
+ "common": "Marocko"
+ },
+ "tur": {
+ "official": "Fas Krall\u0131\u011f\u0131",
+ "common": "Fas"
+ },
+ "urd": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a\u0650 \u0645\u0631\u0627\u06a9\u0634",
+ "common": "\u0645\u0631\u0627\u06a9\u0634"
+ },
+ "zho": {
+ "official": "\u6469\u6d1b\u54e5\u738b\u56fd",
+ "common": "\u6469\u6d1b\u54e5"
+ }
+ },
+ "latlng": [
+ 32,
+ -5
+ ],
+ "landlocked": false,
+ "borders": [
+ "DZA",
+ "ESH",
+ "ESP"
+ ],
+ "area": 446550,
+ "flag": "\ud83c\uddf2\ud83c\udde6",
+ "demonyms": {
+ "eng": {
+ "f": "Moroccan",
+ "m": "Moroccan"
+ },
+ "fra": {
+ "f": "Marocaine",
+ "m": "Marocain"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Monaco",
+ "official": "Principality of Monaco",
+ "native": {
+ "fra": {
+ "official": "Principaut\u00e9 de Monaco",
+ "common": "Monaco"
+ }
+ }
+ },
+ "tld": [
+ ".mc"
+ ],
+ "cca2": "MC",
+ "ccn3": "492",
+ "cca3": "MCO",
+ "cioc": "MON",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "77"
+ ]
+ },
+ "capital": [
+ "Monaco"
+ ],
+ "altSpellings": [
+ "MC",
+ "Principality of Monaco",
+ "Principaut\u00e9 de Monaco"
+ ],
+ "region": "Europe",
+ "subregion": "Western Europe",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0625\u0645\u0627\u0631\u0629 \u0645\u0648\u0646\u0627\u0643\u0648",
+ "common": "\u0645\u0648\u0646\u0627\u0643\u0648"
+ },
+ "bre": {
+ "official": "Priñselezh Monako",
+ "common": "Monako"
+ },
+ "ces": {
+ "official": "Monack\u00e9 kn\u00ed\u017eectv\u00ed",
+ "common": "Monako"
+ },
+ "deu": {
+ "official": "F\u00fcrstentum Monaco",
+ "common": "Monaco"
+ },
+ "est": {
+ "official": "Monaco V\u00fcrstiriik",
+ "common": "Monaco"
+ },
+ "fin": {
+ "official": "Monacon ruhtinaskunta",
+ "common": "Monaco"
+ },
+ "fra": {
+ "official": "Principaut\u00e9 de Monaco",
+ "common": "Monaco"
+ },
+ "hrv": {
+ "official": "Kne\u017eevina Monako",
+ "common": "Monako"
+ },
+ "hun": {
+ "official": "Monac\u00f3i Hercegs\u00e9g",
+ "common": "Monaco"
+ },
+ "ita": {
+ "official": "Principato di Monaco",
+ "common": "Principato di Monaco"
+ },
+ "jpn": {
+ "official": "\u30e2\u30ca\u30b3\u516c\u56fd",
+ "common": "\u30e2\u30ca\u30b3"
+ },
+ "kor": {
+ "official": "\ubaa8\ub098\ucf54 \uacf5\uad6d",
+ "common": "\ubaa8\ub098\ucf54"
+ },
+ "nld": {
+ "official": "Vorstendom Monaco",
+ "common": "Monaco"
+ },
+ "per": {
+ "official": "\u0634\u0627\u0647\u0632\u0627\u062f\u0647\u200c\u0646\u0634\u06cc\u0646 \u0645\u0648\u0646\u0627\u06a9\u0648",
+ "common": "\u0645\u0648\u0646\u0627\u06a9\u0648"
+ },
+ "pol": {
+ "official": "Ksi\u0119stwo Monako",
+ "common": "Monako"
+ },
+ "por": {
+ "official": "Principado do M\u00f3naco",
+ "common": "M\u00f3naco"
+ },
+ "rus": {
+ "official": "\u041a\u043d\u044f\u0436\u0435\u0441\u0442\u0432\u043e \u041c\u043e\u043d\u0430\u043a\u043e",
+ "common": "\u041c\u043e\u043d\u0430\u043a\u043e"
+ },
+ "slk": {
+ "official": "Monack\u00e9 knie\u017eatstvo",
+ "common": "Monako"
+ },
+ "spa": {
+ "official": "Principado de M\u00f3naco",
+ "common": "M\u00f3naco"
+ },
+ "srp": {
+ "official": "Kne\u017eevina Monako",
+ "common": "Monako"
+ },
+ "swe": {
+ "official": "Furstend\u00f6met Monaco",
+ "common": "Monaco"
+ },
+ "tur": {
+ "official": "Monako Prensli\u011fi",
+ "common": "Monako"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0645\u0646\u0627\u06a9\u0648",
+ "common": "\u0645\u0648\u0646\u0627\u06a9\u0648"
+ },
+ "zho": {
+ "official": "\u6469\u7eb3\u54e5\u516c\u56fd",
+ "common": "\u6469\u7eb3\u54e5"
+ }
+ },
+ "latlng": [
+ 43.73333333,
+ 7.4
+ ],
+ "landlocked": false,
+ "borders": [
+ "FRA"
+ ],
+ "area": 2.02,
+ "flag": "\ud83c\uddf2\ud83c\udde8",
+ "demonyms": {
+ "eng": {
+ "f": "Monegasque",
+ "m": "Monegasque"
+ },
+ "fra": {
+ "f": "Mon\u00e9gasque",
+ "m": "Mon\u00e9gasque"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Moldova",
+ "official": "Republic of Moldova",
+ "native": {
+ "ron": {
+ "official": "Republica Moldova",
+ "common": "Moldova"
+ }
+ }
+ },
+ "tld": [
+ ".md"
+ ],
+ "cca2": "MD",
+ "ccn3": "498",
+ "cca3": "MDA",
+ "cioc": "MDA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "MDL": {
+ "name": "Moldovan leu",
+ "symbol": "L"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "73"
+ ]
+ },
+ "capital": [
+ "Chi\u0219in\u0103u"
+ ],
+ "altSpellings": [
+ "MD",
+ "Moldova, Republic of",
+ "Republic of Moldova",
+ "Republica Moldova"
+ ],
+ "region": "Europe",
+ "subregion": "Eastern Europe",
+ "languages": {
+ "ron": "Moldavian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0645\u0648\u0644\u062f\u0648\u06a4\u0627",
+ "common": "\u0645\u0648\u0644\u062f\u0648\u06a4\u0627"
+ },
+ "bre": {
+ "official": "Republik Moldova",
+ "common": "Moldova"
+ },
+ "ces": {
+ "official": "Moldavsk\u00e1 republika",
+ "common": "Moldavsko"
+ },
+ "deu": {
+ "official": "Republik Moldau",
+ "common": "Moldawien"
+ },
+ "est": {
+ "official": "Moldova Vabariik",
+ "common": "Moldova"
+ },
+ "fin": {
+ "official": "Moldovan tasavalta",
+ "common": "Moldova"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Moldavie",
+ "common": "Moldavie"
+ },
+ "hrv": {
+ "official": "Moldavija",
+ "common": "Moldova"
+ },
+ "hun": {
+ "official": "Moldovai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Moldova"
+ },
+ "ita": {
+ "official": "Repubblica di Moldova",
+ "common": "Moldavia"
+ },
+ "jpn": {
+ "official": "\u30e2\u30eb\u30c9\u30d0\u5171\u548c\u56fd",
+ "common": "\u30e2\u30eb\u30c9\u30d0"
+ },
+ "kor": {
+ "official": "\ubab0\ub3c4\ubc14 \uacf5\ud654\uad6d",
+ "common": "\ubab0\ub3c4\ubc14"
+ },
+ "nld": {
+ "official": "Republiek Moldavi\u00eb",
+ "common": "Moldavi\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0645\u0648\u0644\u062f\u0627\u0648\u06cc",
+ "common": "\u0645\u0648\u0644\u062f\u0627\u0648\u06cc"
+ },
+ "pol": {
+ "official": "Republika Mo\u0142dawii",
+ "common": "Mo\u0142dawia"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Mold\u00e1via",
+ "common": "Mold\u00e1via"
+ },
+ "rus": {
+ "official": "\u041c\u043e\u043b\u0434\u043e\u0432\u0430",
+ "common": "\u041c\u043e\u043b\u0434\u0430\u0432\u0438\u044f"
+ },
+ "slk": {
+ "official": "Moldavsk\u00e1 republika",
+ "common": "Moldavsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Moldova",
+ "common": "Moldavia"
+ },
+ "srp": {
+ "official": "Republika Moldavija",
+ "common": "Moldavija"
+ },
+ "swe": {
+ "official": "Republiken Moldavien",
+ "common": "Moldavien"
+ },
+ "tur": {
+ "official": "Moldova Cumhuriyeti",
+ "common": "Moldova"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0645\u0627\u0644\u062f\u0648\u0648\u0627",
+ "common": "\u0645\u0627\u0644\u062f\u0648\u0648\u0627"
+ },
+ "zho": {
+ "official": "\u6469\u5c14\u591a\u74e6\u5171\u548c\u56fd",
+ "common": "\u6469\u5c14\u591a\u74e6"
+ }
+ },
+ "latlng": [
+ 47,
+ 29
+ ],
+ "landlocked": true,
+ "borders": [
+ "ROU",
+ "UKR"
+ ],
+ "area": 33846,
+ "flag": "\ud83c\uddf2\ud83c\udde9",
+ "demonyms": {
+ "eng": {
+ "f": "Moldovan",
+ "m": "Moldovan"
+ },
+ "fra": {
+ "f": "Moldave",
+ "m": "Moldave"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Madagascar",
+ "official": "Republic of Madagascar",
+ "native": {
+ "fra": {
+ "official": "R\u00e9publique de Madagascar",
+ "common": "Madagascar"
+ },
+ "mlg": {
+ "official": "Repoblikan'i Madagasikara",
+ "common": "Madagasikara"
+ }
+ }
+ },
+ "tld": [
+ ".mg"
+ ],
+ "cca2": "MG",
+ "ccn3": "450",
+ "cca3": "MDG",
+ "cioc": "MAD",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "MGA": {
+ "name": "Malagasy ariary",
+ "symbol": "Ar"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "61"
+ ]
+ },
+ "capital": [
+ "Antananarivo"
+ ],
+ "altSpellings": [
+ "MG",
+ "Republic of Madagascar",
+ "Repoblikan'i Madagasikara",
+ "R\u00e9publique de Madagascar"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "fra": "French",
+ "mlg": "Malagasy"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0645\u062f\u063a\u0634\u0642\u0631",
+ "common": "\u0645\u062f\u063a\u0634\u0642\u0631"
+ },
+ "bre": {
+ "official": "Republik Madagaskar",
+ "common": "Madagaskar"
+ },
+ "ces": {
+ "official": "Madagaskarsk\u00e1 republika",
+ "common": "Madagaskar"
+ },
+ "deu": {
+ "official": "Republik Madagaskar",
+ "common": "Madagaskar"
+ },
+ "est": {
+ "official": "Madagaskari Vabariik",
+ "common": "Madagaskar"
+ },
+ "fin": {
+ "official": "Madagaskarin tasavalta",
+ "common": "Madagaskar"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Madagascar",
+ "common": "Madagascar"
+ },
+ "hrv": {
+ "official": "Republika Madagaskar",
+ "common": "Madagaskar"
+ },
+ "hun": {
+ "official": "Madagaszk\u00e1ri K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Madagaszk\u00e1r"
+ },
+ "ita": {
+ "official": "Repubblica del Madagascar",
+ "common": "Madagascar"
+ },
+ "jpn": {
+ "official": "\u30de\u30c0\u30ac\u30b9\u30ab\u30eb\u5171\u548c\u56fd",
+ "common": "\u30de\u30c0\u30ac\u30b9\u30ab\u30eb"
+ },
+ "kor": {
+ "official": "\ub9c8\ub2e4\uac00\uc2a4\uce74\ub974 \uacf5\ud654\uad6d",
+ "common": "\ub9c8\ub2e4\uac00\uc2a4\uce74\ub974"
+ },
+ "nld": {
+ "official": "Republiek Madagaskar",
+ "common": "Madagaskar"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0645\u0627\u062f\u0627\u06af\u0627\u0633\u06a9\u0627\u0631",
+ "common": "\u0645\u0627\u062f\u0627\u06af\u0627\u0633\u06a9\u0627\u0631"
+ },
+ "pol": {
+ "official": "Republika Madagaskaru",
+ "common": "Madagaskar"
+ },
+ "por": {
+ "official": "Rep\u00fablica de Madag\u00e1scar",
+ "common": "Madag\u00e1scar"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041c\u0430\u0434\u0430\u0433\u0430\u0441\u043a\u0430\u0440",
+ "common": "\u041c\u0430\u0434\u0430\u0433\u0430\u0441\u043a\u0430\u0440"
+ },
+ "slk": {
+ "official": "Madagaskarsk\u00e1 republika",
+ "common": "Madagaskar"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Madagascar",
+ "common": "Madagascar"
+ },
+ "srp": {
+ "official": "Republika Madagaskar",
+ "common": "Madagaskar"
+ },
+ "swe": {
+ "official": "Republiken Madagaskar",
+ "common": "Madagaskar"
+ },
+ "tur": {
+ "official": "Madagaskar Cumhuriyeti",
+ "common": "Madagaskar"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0645\u0688\u063a\u0627\u0633\u06a9\u0631",
+ "common": "\u0645\u0688\u063a\u0627\u0633\u06a9\u0631"
+ },
+ "zho": {
+ "official": "\u9a6c\u8fbe\u52a0\u65af\u52a0\u5171\u548c\u56fd",
+ "common": "\u9a6c\u8fbe\u52a0\u65af\u52a0"
+ }
+ },
+ "latlng": [
+ -20,
+ 47
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 587041,
+ "flag": "\ud83c\uddf2\ud83c\uddec",
+ "demonyms": {
+ "eng": {
+ "f": "Malagasy",
+ "m": "Malagasy"
+ },
+ "fra": {
+ "f": "Malgache",
+ "m": "Malgache"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Maldives",
+ "official": "Republic of the Maldives",
+ "native": {
+ "div": {
+ "official": "\u078b\u07a8\u0788\u07ac\u0780\u07a8\u0783\u07a7\u0787\u07b0\u0796\u07ad\u078e\u07ac \u0796\u07aa\u0789\u07b0\u0780\u07ab\u0783\u07a8\u0787\u07b0\u0794\u07a7",
+ "common": "\u078b\u07a8\u0788\u07ac\u0780\u07a8\u0783\u07a7\u0787\u07b0\u0796\u07ad\u078e\u07ac"
+ }
+ }
+ },
+ "tld": [
+ ".mv"
+ ],
+ "cca2": "MV",
+ "ccn3": "462",
+ "cca3": "MDV",
+ "cioc": "MDV",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "MVR": {
+ "name": "Maldivian rufiyaa",
+ "symbol": ".\u0783"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "60"
+ ]
+ },
+ "capital": [
+ "Mal\u00e9"
+ ],
+ "altSpellings": [
+ "MV",
+ "Maldive Islands",
+ "Republic of the Maldives",
+ "Dhivehi Raajjeyge Jumhooriyya"
+ ],
+ "region": "Asia",
+ "subregion": "Southern Asia",
+ "languages": {
+ "div": "Maldivian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0645\u0627\u0644\u062f\u064a\u0641",
+ "common": "\u0627\u0644\u0645\u0627\u0644\u062f\u064a\u0641"
+ },
+ "bre": {
+ "official": "Republik Maldivez",
+ "common": "Maldivez"
+ },
+ "ces": {
+ "official": "Maledivsk\u00e1 republika",
+ "common": "Maledivy"
+ },
+ "deu": {
+ "official": "Republik Malediven",
+ "common": "Malediven"
+ },
+ "est": {
+ "official": "Maldiivi Vabariik",
+ "common": "Maldiivid"
+ },
+ "fin": {
+ "official": "Malediivien tasavalta",
+ "common": "Malediivit"
+ },
+ "fra": {
+ "official": "R\u00e9publique des Maldives",
+ "common": "Maldives"
+ },
+ "hrv": {
+ "official": "Republika Maldivi",
+ "common": "Maldivi"
+ },
+ "hun": {
+ "official": "Mald\u00edv-szigetek",
+ "common": "Mald\u00edv-szigetek"
+ },
+ "ita": {
+ "official": "Repubblica delle Maldive",
+ "common": "Maldive"
+ },
+ "jpn": {
+ "official": "\u30e2\u30eb\u30c7\u30a3\u30d6\u5171\u548c\u56fd",
+ "common": "\u30e2\u30eb\u30c7\u30a3\u30d6"
+ },
+ "kor": {
+ "official": "\ubab0\ub514\ube0c \uacf5\ud654\uad6d",
+ "common": "\ubab0\ub514\ube0c"
+ },
+ "nld": {
+ "official": "Republiek van de Malediven",
+ "common": "Maldiven"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0645\u0627\u0644\u062f\u06cc\u0648",
+ "common": "\u0645\u0627\u0644\u062f\u06cc\u0648"
+ },
+ "pol": {
+ "official": "Republika Malediw\u00f3w",
+ "common": "Malediwy"
+ },
+ "por": {
+ "official": "Rep\u00fablica das Maldivas",
+ "common": "Maldivas"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041c\u0430\u043b\u044c\u0434\u0438\u0432\u044b",
+ "common": "\u041c\u0430\u043b\u044c\u0434\u0438\u0432\u044b"
+ },
+ "slk": {
+ "official": "Maldivsk\u00e1 republika",
+ "common": "Maldivy"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de las Maldivas",
+ "common": "Maldivas"
+ },
+ "srp": {
+ "official": "Republika Maldivi",
+ "common": "Maldivi"
+ },
+ "swe": {
+ "official": "Republiken Maldiverna",
+ "common": "Maldiverna"
+ },
+ "tur": {
+ "official": "Maldivler Cumhuriyeti",
+ "common": "Maldivler"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0645\u0627\u0644\u062f\u06cc\u067e",
+ "common": "\u0645\u0627\u0644\u062f\u06cc\u067e"
+ },
+ "zho": {
+ "official": "\u9a6c\u5c14\u4ee3\u592b\u5171\u548c\u56fd",
+ "common": "\u9a6c\u5c14\u4ee3\u592b"
+ }
+ },
+ "latlng": [
+ 3.25,
+ 73
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 300,
+ "flag": "\ud83c\uddf2\ud83c\uddfb",
+ "demonyms": {
+ "eng": {
+ "f": "Maldivan",
+ "m": "Maldivan"
+ },
+ "fra": {
+ "f": "Maldivienne",
+ "m": "Maldivien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Mexico",
+ "official": "United Mexican States",
+ "native": {
+ "spa": {
+ "official": "Estados Unidos Mexicanos",
+ "common": "M\u00e9xico"
+ }
+ }
+ },
+ "tld": [
+ ".mx"
+ ],
+ "cca2": "MX",
+ "ccn3": "484",
+ "cca3": "MEX",
+ "cioc": "MEX",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "MXN": {
+ "name": "Mexican peso",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "2"
+ ]
+ },
+ "capital": [
+ "Mexico City"
+ ],
+ "altSpellings": [
+ "MX",
+ "Mexicanos",
+ "United Mexican States",
+ "Estados Unidos Mexicanos"
+ ],
+ "region": "Americas",
+ "subregion": "North America",
+ "languages": {
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u0648\u0644\u0627\u064a\u0627\u062a \u0627\u0644\u0645\u062a\u062d\u062f\u0629 \u0627\u0644\u0645\u0643\u0633\u064a\u0643\u064a\u0629",
+ "common": "\u0627\u0644\u0645\u0633\u0643\u064a\u0643"
+ },
+ "bre": {
+ "official": "Stado\u00f9-Unanet Mec'hiko",
+ "common": "Mec'hiko"
+ },
+ "ces": {
+ "official": "Spojen\u00e9 st\u00e1ty mexick\u00e9",
+ "common": "Mexiko"
+ },
+ "deu": {
+ "official": "Vereinigte Mexikanische Staaten",
+ "common": "Mexiko"
+ },
+ "est": {
+ "official": "Mehhiko \u00dchendriigid",
+ "common": "Mehhiko"
+ },
+ "fin": {
+ "official": "Meksikon yhdysvallat",
+ "common": "Meksiko"
+ },
+ "fra": {
+ "official": "\u00c9tats-Unis du Mexique",
+ "common": "Mexique"
+ },
+ "hrv": {
+ "official": "Sjedinjene Meksi\u010dke Dr\u017eave",
+ "common": "Meksiko"
+ },
+ "hun": {
+ "official": "Mexik\u00f3i Egyes\u00fclt \u00c1llamok",
+ "common": "Mexik\u00f3"
+ },
+ "ita": {
+ "official": "Stati Uniti del Messico",
+ "common": "Messico"
+ },
+ "jpn": {
+ "official": "\u30e1\u30ad\u30b7\u30b3\u5408\u8846\u56fd",
+ "common": "\u30e1\u30ad\u30b7\u30b3"
+ },
+ "kor": {
+ "official": "\uba55\uc2dc\ucf54 \ud569\uc911\uad6d",
+ "common": "\uba55\uc2dc\ucf54"
+ },
+ "nld": {
+ "official": "Verenigde Mexicaanse Staten",
+ "common": "Mexico"
+ },
+ "per": {
+ "official": "\u0627\u06cc\u0627\u0644\u0627\u062a \u0645\u062a\u062d\u062f \u0645\u06a9\u0632\u06cc\u06a9",
+ "common": "\u0645\u06a9\u0632\u06cc\u06a9"
+ },
+ "pol": {
+ "official": "Meksyka\u0144skie Stany Zjednoczone",
+ "common": "Meksyk"
+ },
+ "por": {
+ "official": "Estados Unidos Mexicanos",
+ "common": "M\u00e9xico"
+ },
+ "rus": {
+ "official": "\u041c\u0435\u043a\u0441\u0438\u043a\u0430\u043d\u0441\u043a\u0438\u0435 \u0421\u043e\u0435\u0434\u0438\u043d\u0451\u043d\u043d\u044b\u0435 \u0428\u0442\u0430\u0442\u044b",
+ "common": "\u041c\u0435\u043a\u0441\u0438\u043a\u0430"
+ },
+ "slk": {
+ "official": "Spojen\u00e9 \u0161t\u00e1\u0161y mexick\u00e9",
+ "common": "Mexiko"
+ },
+ "spa": {
+ "official": "Estados Unidos Mexicanos",
+ "common": "M\u00e9xico"
+ },
+ "srp": {
+ "official": "Sjedinjene Meksi\u010dke Dr\u017eave",
+ "common": "Meksiko"
+ },
+ "swe": {
+ "official": "Mexikos f\u00f6renta stater",
+ "common": "Mexiko"
+ },
+ "tur": {
+ "official": "Birle\u015fik Meksika Devletleri",
+ "common": "Meksika"
+ },
+ "urd": {
+ "official": "\u0631\u06cc\u0627\u0633\u062a\u06c1\u0627\u0626\u06d2 \u0645\u062a\u062d\u062f\u06c1 \u0645\u06cc\u06a9\u0633\u06cc\u06a9\u0648",
+ "common": "\u0645\u06cc\u06a9\u0633\u06cc\u06a9\u0648"
+ },
+ "zho": {
+ "official": "\u58a8\u897f\u54e5\u5408\u4f17\u56fd",
+ "common": "\u58a8\u897f\u54e5"
+ }
+ },
+ "latlng": [
+ 23,
+ -102
+ ],
+ "landlocked": false,
+ "borders": [
+ "BLZ",
+ "GTM",
+ "USA"
+ ],
+ "area": 1964375,
+ "flag": "\ud83c\uddf2\ud83c\uddfd",
+ "demonyms": {
+ "eng": {
+ "f": "Mexican",
+ "m": "Mexican"
+ },
+ "fra": {
+ "f": "Mexicaine",
+ "m": "Mexicain"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Marshall Islands",
+ "official": "Republic of the Marshall Islands",
+ "native": {
+ "eng": {
+ "official": "Republic of the Marshall Islands",
+ "common": "Marshall Islands"
+ },
+ "mah": {
+ "official": "Republic of the Marshall Islands",
+ "common": "M\u0327aje\u013c"
+ }
+ }
+ },
+ "tld": [
+ ".mh"
+ ],
+ "cca2": "MH",
+ "ccn3": "584",
+ "cca3": "MHL",
+ "cioc": "MHL",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "92"
+ ]
+ },
+ "capital": [
+ "Majuro"
+ ],
+ "altSpellings": [
+ "MH",
+ "Republic of the Marshall Islands",
+ "Aolep\u0101n Aor\u014dkin M\u0327aje\u013c"
+ ],
+ "region": "Oceania",
+ "subregion": "Micronesia",
+ "languages": {
+ "eng": "English",
+ "mah": "Marshallese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u062c\u0632\u0631 \u0645\u0627\u0631\u0634\u0627\u0644",
+ "common": "\u062c\u0632\u0631 \u0645\u0627\u0631\u0634\u0627\u0644"
+ },
+ "bre": {
+ "official": "Republik Inizi Marshall",
+ "common": "Inizi Marshall"
+ },
+ "ces": {
+ "official": "Republika Marshallovy ostrovy",
+ "common": "Marshallovy ostrovy"
+ },
+ "deu": {
+ "official": "Republik Marshallinseln",
+ "common": "Marshallinseln"
+ },
+ "est": {
+ "official": "Marshalli Saarte Vabariik",
+ "common": "Marshalli Saared"
+ },
+ "fin": {
+ "official": "Marshallinsaarten tasavalta",
+ "common": "Marshallinsaaret"
+ },
+ "fra": {
+ "official": "R\u00e9publique des \u00celes Marshall",
+ "common": "\u00celes Marshall"
+ },
+ "hrv": {
+ "official": "Republika Mar\u0161alovi Otoci",
+ "common": "Mar\u0161alovi Otoci"
+ },
+ "hun": {
+ "official": "Marshall-szigetek",
+ "common": "Marshall-szigetek"
+ },
+ "ita": {
+ "official": "Repubblica delle Isole Marshall",
+ "common": "Isole Marshall"
+ },
+ "jpn": {
+ "official": "\u30de\u30fc\u30b7\u30e3\u30eb\u8af8\u5cf6\u5171\u548c\u56fd",
+ "common": "\u30de\u30fc\u30b7\u30e3\u30eb\u8af8\u5cf6"
+ },
+ "kor": {
+ "official": "\ub9c8\uc15c \uc81c\ub3c4 \uacf5\ud654\uad6d",
+ "common": "\ub9c8\uc15c \uc81c\ub3c4"
+ },
+ "nld": {
+ "official": "Republiek van de Marshall-eilanden",
+ "common": "Marshalleilanden"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062c\u0632\u0627\u06cc\u0631 \u0645\u0627\u0631\u0634\u0627\u0644",
+ "common": "\u062c\u0632\u0627\u06cc\u0631 \u0645\u0627\u0631\u0634\u0627\u0644"
+ },
+ "pol": {
+ "official": "Republika Wysp Marshalla",
+ "common": "Wyspy Marshalla"
+ },
+ "por": {
+ "official": "Rep\u00fablica das Ilhas Marshall",
+ "common": "Ilhas Marshall"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041c\u0430\u0440\u0448\u0430\u043b\u043b\u043e\u0432\u044b \u043e\u0441\u0442\u0440\u043e\u0432\u0430",
+ "common": "\u041c\u0430\u0440\u0448\u0430\u043b\u043b\u043e\u0432\u044b \u041e\u0441\u0442\u0440\u043e\u0432\u0430"
+ },
+ "slk": {
+ "official": "Republika Marshallov\u00fdch ostrovov",
+ "common": "Marshallove ostrovy"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de las Islas Marshall",
+ "common": "Islas Marshall"
+ },
+ "srp": {
+ "official": "Republika Mar\u0161alska Ostrva",
+ "common": "Mar\u0161alska Ostrva"
+ },
+ "swe": {
+ "official": "Republiken Marshall\u00f6arna",
+ "common": "Marshall\u00f6arna"
+ },
+ "tur": {
+ "official": "Marshall Adalar\u0131 Cumhuriyeti",
+ "common": "Marshall Adalar\u0131"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u062c\u0632\u0627\u0626\u0631 \u0645\u0627\u0631\u0634\u0644",
+ "common": "\u062c\u0632\u0627\u0626\u0631 \u0645\u0627\u0631\u0634\u0644"
+ },
+ "zho": {
+ "official": "\u9a6c\u7ecd\u5c14\u7fa4\u5c9b\u5171\u548c\u56fd",
+ "common": "\u9a6c\u7ecd\u5c14\u7fa4\u5c9b"
+ }
+ },
+ "latlng": [
+ 9,
+ 168
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 181,
+ "flag": "\ud83c\uddf2\ud83c\udded",
+ "demonyms": {
+ "eng": {
+ "f": "Marshallese",
+ "m": "Marshallese"
+ },
+ "fra": {
+ "f": "Marshallaise",
+ "m": "Marshallais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "North Macedonia",
+ "official": "Republic of North Macedonia",
+ "native": {
+ "mkd": {
+ "official": "\u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u0435\u0432\u0435\u0440\u043d\u0430 \u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0438\u0458\u0430",
+ "common": "\u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0438\u0458\u0430"
+ }
+ }
+ },
+ "tld": [
+ ".mk"
+ ],
+ "cca2": "MK",
+ "ccn3": "807",
+ "cca3": "MKD",
+ "cioc": "MKD",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "MKD": {
+ "name": "denar",
+ "symbol": "den"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "89"
+ ]
+ },
+ "capital": [
+ "Skopje"
+ ],
+ "altSpellings": [
+ "MK",
+ "The former Yugoslav Republic of Macedonia",
+ "Republic of North Macedonia",
+ "Macedonia, The Former Yugoslav Republic of",
+ "\u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u0435\u0432\u0435\u0440\u043d\u0430 \u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0438\u0458\u0430",
+ "Macedonia"
+ ],
+ "region": "Europe",
+ "subregion": "Southeast Europe",
+ "languages": {
+ "mkd": "Macedonian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0634\u0645\u0627\u0644 \u0645\u0642\u062f\u0648\u0646\u064a\u0627",
+ "common": "\u0634\u0645\u0627\u0644 \u0645\u0642\u062f\u0648\u0646\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Makedonia an Norzh",
+ "common": "Makedonia an Norzh"
+ },
+ "ces": {
+ "official": "Republika Severn\u00ed Makedonie",
+ "common": "Severn\u00ed Makedonie"
+ },
+ "deu": {
+ "official": "Republik Nordmazedonien",
+ "common": "Nordmazedonien"
+ },
+ "est": {
+ "official": "P\u00f5hja-Makedoonia Vabariik",
+ "common": "P\u00f5hja-Makedoonia"
+ },
+ "fin": {
+ "official": "Pohjois-Makedonian tasavalta",
+ "common": "Pohjois-Makedonia"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Mac\u00e9doine du Nord",
+ "common": "Mac\u00e9doine du Nord"
+ },
+ "hrv": {
+ "official": "Republika Sjeverna Makedonija",
+ "common": "Sjeverna Makedonija"
+ },
+ "hun": {
+ "official": "\u00c9szak-maced\u00f3n K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "\u00c9szak-Maced\u00f3nia"
+ },
+ "ita": {
+ "official": "Repubblica di Macedonia del Nord",
+ "common": "Macedonia del Nord"
+ },
+ "jpn": {
+ "official": "\u5317\u30de\u30b1\u30c9\u30cb\u30a2\u5171\u548c\u56fd",
+ "common": "\u5317\u30de\u30b1\u30c9\u30cb\u30a2"
+ },
+ "kor": {
+ "official": "\ubd81\ub9c8\ucf00\ub3c4\ub2c8\uc544 \uacf5\ud654\uad6d",
+ "common": "\ubd81\ub9c8\ucf00\ub3c4\ub2c8\uc544"
+ },
+ "nld": {
+ "official": "Republiek Noord-Macedoni\u00eb",
+ "common": "Noord-Macedoni\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0645\u0642\u062f\u0648\u0646\u06cc\u0647 \u0634\u0645\u0627\u0644\u06cc",
+ "common": "\u0645\u0642\u062f\u0648\u0646\u06cc\u0647 \u0634\u0645\u0627\u0644\u06cc"
+ },
+ "pol": {
+ "official": "Republika Macedonii P\u00f3\u0142nocnej",
+ "common": "Macedonia P\u00f3\u0142nocna"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Maced\u00f4nia do Norte",
+ "common": "Maced\u00f3nia do Norte"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u0435\u0432\u0435\u0440\u043d\u0430\u044f \u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0438\u044f",
+ "common": "\u0421\u0435\u0432\u0435\u0440\u043d\u0430\u044f \u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0438\u044f"
+ },
+ "slk": {
+ "official": "Severomaced\u00f3nska republika",
+ "common": "Severn\u00e9 Maced\u00f3nsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Macedonia del Norte",
+ "common": "Macedonia del Norte"
+ },
+ "srp": {
+ "official": "Republika Severna Makedonija",
+ "common": "Severna Makedonija"
+ },
+ "swe": {
+ "official": "Republiken Nordmakedonien",
+ "common": "Nordmakedonien"
+ },
+ "tur": {
+ "official": "Kuzey Makedonya Cumhuriyeti",
+ "common": "Kuzey Makedonya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0645\u0642\u062f\u0648\u0646\u06cc\u06c1",
+ "common": "\u0634\u0645\u0627\u0644\u06cc \u0645\u0642\u062f\u0648\u0646\u06cc\u06c1"
+ },
+ "zho": {
+ "official": "\u5317\u99ac\u5176\u9813\u5171\u548c\u570b",
+ "common": "\u5317\u99ac\u5176\u9813"
+ }
+ },
+ "latlng": [
+ 41.83333333,
+ 22
+ ],
+ "landlocked": true,
+ "borders": [
+ "ALB",
+ "BGR",
+ "GRC",
+ "UNK",
+ "SRB"
+ ],
+ "area": 25713,
+ "flag": "\ud83c\uddf2\ud83c\uddf0",
+ "demonyms": {
+ "eng": {
+ "f": "Macedonian",
+ "m": "Macedonian"
+ },
+ "fra": {
+ "f": "Mac\u00e9donienne",
+ "m": "Mac\u00e9donien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Mali",
+ "official": "Republic of Mali",
+ "native": {
+ "fra": {
+ "official": "R\u00e9publique du Mali",
+ "common": "Mali"
+ }
+ }
+ },
+ "tld": [
+ ".ml"
+ ],
+ "cca2": "ML",
+ "ccn3": "466",
+ "cca3": "MLI",
+ "cioc": "MLI",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "XOF": {
+ "name": "West African CFA franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "23"
+ ]
+ },
+ "capital": [
+ "Bamako"
+ ],
+ "altSpellings": [
+ "ML",
+ "Republic of Mali",
+ "R\u00e9publique du Mali"
+ ],
+ "region": "Africa",
+ "subregion": "Western Africa",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0645\u0627\u0644\u064a",
+ "common": "\u0645\u0627\u0644\u064a"
+ },
+ "bre": {
+ "official": "Republik Mali",
+ "common": "Mali"
+ },
+ "ces": {
+ "official": "Republika Mali",
+ "common": "Mali"
+ },
+ "deu": {
+ "official": "Republik Mali",
+ "common": "Mali"
+ },
+ "est": {
+ "official": "Mali Vabariik",
+ "common": "Mali"
+ },
+ "fin": {
+ "official": "Malin tasavalta",
+ "common": "Mali"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Mali",
+ "common": "Mali"
+ },
+ "hrv": {
+ "official": "Republika Mali",
+ "common": "Mali"
+ },
+ "hun": {
+ "official": "Mali K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Mali"
+ },
+ "ita": {
+ "official": "Repubblica del Mali",
+ "common": "Mali"
+ },
+ "jpn": {
+ "official": "\u30de\u30ea\u5171\u548c\u56fd",
+ "common": "\u30de\u30ea"
+ },
+ "kor": {
+ "official": "\ub9d0\ub9ac \uacf5\ud654\uad6d",
+ "common": "\ub9d0\ub9ac"
+ },
+ "nld": {
+ "official": "Republiek Mali",
+ "common": "Mali"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0645\u0627\u0644\u06cc",
+ "common": "\u0645\u0627\u0644\u06cc"
+ },
+ "pol": {
+ "official": "Republika Mali",
+ "common": "Mali"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Mali",
+ "common": "Mali"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041c\u0430\u043b\u0438",
+ "common": "\u041c\u0430\u043b\u0438"
+ },
+ "slk": {
+ "official": "Malijsk\u00e1 republika",
+ "common": "Mali"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Mal\u00ed",
+ "common": "Mali"
+ },
+ "srp": {
+ "official": "Republika Mali",
+ "common": "Mali"
+ },
+ "swe": {
+ "official": "Republiken Mali",
+ "common": "Mali"
+ },
+ "tur": {
+ "official": "Mali Cumhuriyeti",
+ "common": "Mali"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0645\u0627\u0644\u06cc",
+ "common": "\u0645\u0627\u0644\u06cc"
+ },
+ "zho": {
+ "official": "\u9a6c\u91cc\u5171\u548c\u56fd",
+ "common": "\u9a6c\u91cc"
+ }
+ },
+ "latlng": [
+ 17,
+ -4
+ ],
+ "landlocked": true,
+ "borders": [
+ "DZA",
+ "BFA",
+ "GIN",
+ "CIV",
+ "MRT",
+ "NER",
+ "SEN"
+ ],
+ "area": 1240192,
+ "flag": "\ud83c\uddf2\ud83c\uddf1",
+ "demonyms": {
+ "eng": {
+ "f": "Malian",
+ "m": "Malian"
+ },
+ "fra": {
+ "f": "Malienne",
+ "m": "Malien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Malta",
+ "official": "Republic of Malta",
+ "native": {
+ "eng": {
+ "official": "Republic of Malta",
+ "common": "Malta"
+ },
+ "mlt": {
+ "official": "Repubblika ta ' Malta",
+ "common": "Malta"
+ }
+ }
+ },
+ "tld": [
+ ".mt"
+ ],
+ "cca2": "MT",
+ "ccn3": "470",
+ "cca3": "MLT",
+ "cioc": "MLT",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "56"
+ ]
+ },
+ "capital": [
+ "Valletta"
+ ],
+ "altSpellings": [
+ "MT",
+ "Republic of Malta",
+ "Repubblika ta' Malta"
+ ],
+ "region": "Europe",
+ "subregion": "Southern Europe",
+ "languages": {
+ "eng": "English",
+ "mlt": "Maltese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0645\u0627\u0644\u0637\u0627",
+ "common": "\u0645\u0627\u0644\u0637\u0627"
+ },
+ "bre": {
+ "official": "Republik Malta",
+ "common": "Malta"
+ },
+ "ces": {
+ "official": "Maltsk\u00e1 republika",
+ "common": "Malta"
+ },
+ "deu": {
+ "official": "Republik Malta",
+ "common": "Malta"
+ },
+ "est": {
+ "official": "Malta Vabariik",
+ "common": "Malta"
+ },
+ "fin": {
+ "official": "Maltan tasavalta",
+ "common": "Malta"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Malte",
+ "common": "Malte"
+ },
+ "hrv": {
+ "official": "Republika Malta",
+ "common": "Malta"
+ },
+ "hun": {
+ "official": "M\u00e1ltai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "M\u00e1lta"
+ },
+ "ita": {
+ "official": "Repubblica di Malta",
+ "common": "Malta"
+ },
+ "jpn": {
+ "official": "\u30de\u30eb\u30bf\u5171\u548c\u56fd",
+ "common": "\u30de\u30eb\u30bf"
+ },
+ "kor": {
+ "official": "\ubab0\ud0c0 \uacf5\ud654\uad6d",
+ "common": "\ubab0\ud0c0"
+ },
+ "nld": {
+ "official": "Republiek Malta",
+ "common": "Malta"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0645\u0627\u0644\u062a",
+ "common": "\u0645\u0627\u0644\u062a"
+ },
+ "pol": {
+ "official": "Republika Malty",
+ "common": "Malta"
+ },
+ "por": {
+ "official": "Rep\u00fablica de Malta",
+ "common": "Malta"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041c\u0430\u043b\u044c\u0442\u0430",
+ "common": "\u041c\u0430\u043b\u044c\u0442\u0430"
+ },
+ "slk": {
+ "official": "Maltsk\u00e1 republika",
+ "common": "Malta"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Malta",
+ "common": "Malta"
+ },
+ "srp": {
+ "official": "Republika Malta",
+ "common": "Malta"
+ },
+ "swe": {
+ "official": "Republiken Malta",
+ "common": "Malta"
+ },
+ "tur": {
+ "official": "Malta Cumhuriyeti",
+ "common": "Malta"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0645\u0627\u0644\u0679\u0627",
+ "common": "\u0645\u0627\u0644\u0679\u0627"
+ },
+ "zho": {
+ "official": "\u9a6c\u8033\u4ed6\u5171\u548c\u56fd",
+ "common": "\u9a6c\u8033\u4ed6"
+ }
+ },
+ "latlng": [
+ 35.83333333,
+ 14.58333333
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 316,
+ "flag": "\ud83c\uddf2\ud83c\uddf9",
+ "demonyms": {
+ "eng": {
+ "f": "Maltese",
+ "m": "Maltese"
+ },
+ "fra": {
+ "f": "Maltaise",
+ "m": "Maltais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Myanmar",
+ "official": "Republic of the Union of Myanmar",
+ "native": {
+ "mya": {
+ "official": "\u1015\u103c\u100a\u103a\u1011\u1031\u102c\u1004\u103a\u1005\u102f \u101e\u1019\u1039\u1019\u1010 \u1019\u103c\u1014\u103a\u1019\u102c\u1014\u102d\u102f\u1004\u103a\u1004\u1036\u1010\u1031\u102c\u103a",
+ "common": "\u1019\u103c\u1014\u103a\u1019\u102c"
+ }
+ }
+ },
+ "tld": [
+ ".mm"
+ ],
+ "cca2": "MM",
+ "ccn3": "104",
+ "cca3": "MMR",
+ "cioc": "MYA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "MMK": {
+ "name": "Burmese kyat",
+ "symbol": "Ks"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "5"
+ ]
+ },
+ "capital": [
+ "Naypyidaw"
+ ],
+ "altSpellings": [
+ "MM",
+ "Burma",
+ "Republic of the Union of Myanmar",
+ "Pyidaunzu Thanm\u0103da My\u0103ma Nainngandaw"
+ ],
+ "region": "Asia",
+ "subregion": "South-Eastern Asia",
+ "languages": {
+ "mya": "Burmese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u062a\u062d\u0627\u062f \u0645\u064a\u0627\u0646\u0645\u0627\u0631",
+ "common": "\u0645\u064a\u0627\u0646\u0645\u0627\u0631"
+ },
+ "bre": {
+ "official": "Republik Unaniezh Myanmar",
+ "common": "Myanmar"
+ },
+ "ces": {
+ "official": "Republika Myanmarsk\u00fd svaz",
+ "common": "Myanmar"
+ },
+ "deu": {
+ "official": "Republik der Union Myanmar",
+ "common": "Myanmar"
+ },
+ "est": {
+ "official": "Myanmari Liidu Vabariik",
+ "common": "Myanmar"
+ },
+ "fin": {
+ "official": "Myanmarin liiton tasavalta",
+ "common": "Myanmar"
+ },
+ "fra": {
+ "official": "R\u00e9publique de l'Union du Myanmar",
+ "common": "Birmanie"
+ },
+ "hrv": {
+ "official": "Republika Unije Mijanmar",
+ "common": "Mijanmar"
+ },
+ "hun": {
+ "official": "Mianmari \u00c1llamsz\u00f6vets\u00e9g K\u00f6zt\u00e1rsas\u00e1ga",
+ "common": "Mianmar"
+ },
+ "ita": {
+ "official": "Repubblica dell'Unione di Myanmar",
+ "common": "Birmania"
+ },
+ "jpn": {
+ "official": "\u30df\u30e3\u30f3\u30de\u30fc\u9023\u90a6\u5171\u548c\u56fd",
+ "common": "\u30df\u30e3\u30f3\u30de\u30fc"
+ },
+ "kor": {
+ "official": "\ubbf8\uc580\ub9c8 \uc5f0\ubc29 \uacf5\ud654\uad6d",
+ "common": "\ubbf8\uc580\ub9c8"
+ },
+ "nld": {
+ "official": "Republiek van de Unie van Myanmar",
+ "common": "Myanmar"
+ },
+ "per": {
+ "official": "\u0627\u062a\u062d\u0627\u062f\u06cc\u0647 \u062c\u0645\u0647\u0648\u0631\u06cc \u0645\u06cc\u0627\u0646\u0645\u0627\u0631",
+ "common": "\u0645\u06cc\u0627\u0646\u0645\u0627\u0631"
+ },
+ "pol": {
+ "official": "Republika Zwi\u0105zku Mjanmy",
+ "common": "Mjanma"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Uni\u00e3o de Myanmar",
+ "common": "Myanmar"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u043e\u044e\u0437\u0430 \u041c\u044c\u044f\u043d\u043c\u0430",
+ "common": "\u041c\u044c\u044f\u043d\u043c\u0430"
+ },
+ "slk": {
+ "official": "Mjanmarsk\u00e1 zv\u00e4zov\u00e1 republika",
+ "common": "Mjanmarsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de la Uni\u00f3n de Myanmar",
+ "common": "Myanmar"
+ },
+ "srp": {
+ "official": "Republika Mjanmarska Unija",
+ "common": "Mjanmar"
+ },
+ "swe": {
+ "official": "Republiken Unionen Myanmar",
+ "common": "Myanmar"
+ },
+ "tur": {
+ "official": "Myanmar Birli\u011fi Cumhuriyeti",
+ "common": "Myanmar"
+ },
+ "urd": {
+ "official": "\u0645\u062a\u062d\u062f\u06c1 \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0645\u06cc\u0627\u0646\u0645\u0627\u0631",
+ "common": "\u0645\u06cc\u0627\u0646\u0645\u0627\u0631"
+ },
+ "zho": {
+ "official": "\u7f05\u7538\u8054\u90a6\u5171\u548c\u56fd",
+ "common": "\u7f05\u7538"
+ }
+ },
+ "latlng": [
+ 22,
+ 98
+ ],
+ "landlocked": false,
+ "borders": [
+ "BGD",
+ "CHN",
+ "IND",
+ "LAO",
+ "THA"
+ ],
+ "area": 676578,
+ "flag": "\ud83c\uddf2\ud83c\uddf2",
+ "demonyms": {
+ "eng": {
+ "f": "Burmese",
+ "m": "Burmese"
+ },
+ "fra": {
+ "f": "Birmane",
+ "m": "Birman"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Montenegro",
+ "official": "Montenegro",
+ "native": {
+ "cnr": {
+ "official": "\u0426\u0440\u043d\u0430 \u0413\u043e\u0440\u0430",
+ "common": "\u0426\u0440\u043d\u0430 \u0413\u043e\u0440\u0430"
+ }
+ }
+ },
+ "tld": [
+ ".me"
+ ],
+ "cca2": "ME",
+ "ccn3": "499",
+ "cca3": "MNE",
+ "cioc": "MNE",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "82"
+ ]
+ },
+ "capital": [
+ "Podgorica"
+ ],
+ "altSpellings": [
+ "ME",
+ "Crna Gora"
+ ],
+ "region": "Europe",
+ "subregion": "Southeast Europe",
+ "languages": {
+ "cnr": "Montenegrin"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0628\u0644 \u0627\u0644\u0627\u0633\u0648\u062f",
+ "common": "\u0627\u0644\u062c\u0628\u0644 \u0627\u0644\u0627\u0633\u0648\u062f"
+ },
+ "bre": {
+ "official": "Republik Montenegro",
+ "common": "Montenegro"
+ },
+ "ces": {
+ "official": "\u010cern\u00e1 Hora",
+ "common": "\u010cern\u00e1 Hora"
+ },
+ "deu": {
+ "official": "Montenegro",
+ "common": "Montenegro"
+ },
+ "est": {
+ "official": "Montenegro",
+ "common": "Montenegro"
+ },
+ "fin": {
+ "official": "Montenegro",
+ "common": "Montenegro"
+ },
+ "fra": {
+ "official": "Mont\u00e9n\u00e9gro",
+ "common": "Mont\u00e9n\u00e9gro"
+ },
+ "hrv": {
+ "official": "Crna Gora",
+ "common": "Crna Gora"
+ },
+ "hun": {
+ "official": "Montenegr\u00f3",
+ "common": "Montenegr\u00f3"
+ },
+ "ita": {
+ "official": "Montenegro",
+ "common": "Montenegro"
+ },
+ "jpn": {
+ "official": "\u30e2\u30f3\u30c6\u30cd\u30b0\u30ed",
+ "common": "\u30e2\u30f3\u30c6\u30cd\u30b0\u30ed"
+ },
+ "kor": {
+ "official": "\ubaac\ud14c\ub124\uadf8\ub85c",
+ "common": "\ubaac\ud14c\ub124\uadf8\ub85c"
+ },
+ "nld": {
+ "official": "Montenegro",
+ "common": "Montenegro"
+ },
+ "per": {
+ "official": "\u0645\u0648\u0646\u062a\u0647\u200c\u0646\u06af\u0631\u0648",
+ "common": "\u0645\u0648\u0646\u062a\u0647\u200c\u0646\u06af\u0631\u0648"
+ },
+ "pol": {
+ "official": "Czarnog\u00f3ra",
+ "common": "Czarnog\u00f3ra"
+ },
+ "por": {
+ "official": "Montenegro",
+ "common": "Montenegro"
+ },
+ "rus": {
+ "official": "\u0427\u0435\u0440\u043d\u043e\u0433\u043e\u0440\u0438\u044f",
+ "common": "\u0427\u0435\u0440\u043d\u043e\u0433\u043e\u0440\u0438\u044f"
+ },
+ "slk": {
+ "official": "\u010cierna Hora",
+ "common": "\u010cierna Hora"
+ },
+ "spa": {
+ "official": "Montenegro",
+ "common": "Montenegro"
+ },
+ "srp": {
+ "official": "Crna Gora",
+ "common": "Crna Gora"
+ },
+ "swe": {
+ "official": "Montenegro",
+ "common": "Montenegro"
+ },
+ "tur": {
+ "official": "Karada\u011f",
+ "common": "Karada\u011f"
+ },
+ "urd": {
+ "official": "\u0645\u0648\u0646\u0679\u06cc\u0646\u06cc\u06af\u0631\u0648",
+ "common": "\u0645\u0648\u0646\u0679\u06cc\u0646\u06cc\u06af\u0631\u0648"
+ },
+ "zho": {
+ "official": "\u9ed1\u5c71",
+ "common": "\u9ed1\u5c71"
+ }
+ },
+ "latlng": [
+ 42.5,
+ 19.3
+ ],
+ "landlocked": false,
+ "borders": [
+ "ALB",
+ "BIH",
+ "HRV",
+ "UNK",
+ "SRB"
+ ],
+ "area": 13812,
+ "flag": "\ud83c\uddf2\ud83c\uddea",
+ "demonyms": {
+ "eng": {
+ "f": "Montenegrin",
+ "m": "Montenegrin"
+ },
+ "fra": {
+ "f": "Mont\u00e9n\u00e9grine",
+ "m": "Mont\u00e9n\u00e9grin"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Mongolia",
+ "official": "Mongolia",
+ "native": {
+ "mon": {
+ "official": "\u041c\u043e\u043d\u0433\u043e\u043b \u0443\u043b\u0441",
+ "common": "\u041c\u043e\u043d\u0433\u043e\u043b \u0443\u043b\u0441"
+ }
+ }
+ },
+ "tld": [
+ ".mn"
+ ],
+ "cca2": "MN",
+ "ccn3": "496",
+ "cca3": "MNG",
+ "cioc": "MGL",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "MNT": {
+ "name": "Mongolian t\u00f6gr\u00f6g",
+ "symbol": "\u20ae"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "76"
+ ]
+ },
+ "capital": [
+ "Ulan Bator"
+ ],
+ "altSpellings": [
+ "MN"
+ ],
+ "region": "Asia",
+ "subregion": "Eastern Asia",
+ "languages": {
+ "mon": "Mongolian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0645\u0646\u063a\u0648\u0644\u064a\u0627",
+ "common": "\u0645\u0646\u063a\u0648\u0644\u064a\u0627"
+ },
+ "bre": {
+ "official": "Mongolia",
+ "common": "Mongolia"
+ },
+ "ces": {
+ "official": "St\u00e1t Mongolsko",
+ "common": "Mongolsko"
+ },
+ "deu": {
+ "official": "Mongolei",
+ "common": "Mongolei"
+ },
+ "est": {
+ "official": "Mongoolia",
+ "common": "Mongoolia"
+ },
+ "fin": {
+ "official": "Mongolian tasavalta",
+ "common": "Mongolia"
+ },
+ "fra": {
+ "official": "Mongolie",
+ "common": "Mongolie"
+ },
+ "hrv": {
+ "official": "Mongolija",
+ "common": "Mongolija"
+ },
+ "hun": {
+ "official": "Mong\u00f3lia",
+ "common": "Mong\u00f3lia"
+ },
+ "ita": {
+ "official": "Mongolia",
+ "common": "Mongolia"
+ },
+ "jpn": {
+ "official": "\u30e2\u30f3\u30b4\u30eb\u56fd",
+ "common": "\u30e2\u30f3\u30b4\u30eb"
+ },
+ "kor": {
+ "official": "\ubabd\uace8",
+ "common": "\ubabd\uace8\uad6d"
+ },
+ "nld": {
+ "official": "Mongoli\u00eb",
+ "common": "Mongoli\u00eb"
+ },
+ "per": {
+ "official": "\u0645\u063a\u0648\u0644\u0633\u062a\u0627\u0646",
+ "common": "\u0645\u063a\u0648\u0644\u0633\u062a\u0627\u0646"
+ },
+ "pol": {
+ "official": "Mongolia",
+ "common": "Mongolia"
+ },
+ "por": {
+ "official": "Mong\u00f3lia",
+ "common": "Mong\u00f3lia"
+ },
+ "rus": {
+ "official": "\u041c\u043e\u043d\u0433\u043e\u043b\u0438\u044f",
+ "common": "\u041c\u043e\u043d\u0433\u043e\u043b\u0438\u044f"
+ },
+ "slk": {
+ "official": "Mongolsko",
+ "common": "Mongolsko"
+ },
+ "spa": {
+ "official": "Mongolia",
+ "common": "Mongolia"
+ },
+ "srp": {
+ "official": "Mongolija",
+ "common": "Mongolija"
+ },
+ "swe": {
+ "official": "Mongoliet",
+ "common": "Mongoliet"
+ },
+ "tur": {
+ "official": "Mo\u011folistan",
+ "common": "Mo\u011folistan"
+ },
+ "urd": {
+ "official": "\u0645\u0646\u06af\u0648\u0644\u06cc\u0627",
+ "common": "\u0645\u0646\u06af\u0648\u0644\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u8499\u53e4",
+ "common": "\u8499\u53e4"
+ }
+ },
+ "latlng": [
+ 46,
+ 105
+ ],
+ "landlocked": true,
+ "borders": [
+ "CHN",
+ "RUS"
+ ],
+ "area": 1564110,
+ "flag": "\ud83c\uddf2\ud83c\uddf3",
+ "demonyms": {
+ "eng": {
+ "f": "Mongolian",
+ "m": "Mongolian"
+ },
+ "fra": {
+ "f": "Mongole",
+ "m": "Mongol"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Northern Mariana Islands",
+ "official": "Commonwealth of the Northern Mariana Islands",
+ "native": {
+ "cal": {
+ "official": "Commonwealth of the Northern Mariana Islands",
+ "common": "Northern Mariana Islands"
+ },
+ "cha": {
+ "official": "Sankattan Siha Na Islas Mari\u00e5nas",
+ "common": "Na Islas Mari\u00e5nas"
+ },
+ "eng": {
+ "official": "Commonwealth of the Northern Mariana Islands",
+ "common": "Northern Mariana Islands"
+ }
+ }
+ },
+ "tld": [
+ ".mp"
+ ],
+ "cca2": "MP",
+ "ccn3": "580",
+ "cca3": "MNP",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "670"
+ ]
+ },
+ "capital": [
+ "Saipan"
+ ],
+ "altSpellings": [
+ "MP",
+ "Commonwealth of the Northern Mariana Islands",
+ "Sankattan Siha Na Islas Mari\u00e5nas"
+ ],
+ "region": "Oceania",
+ "subregion": "Micronesia",
+ "languages": {
+ "cal": "Carolinian",
+ "cha": "Chamorro",
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0643\u0648\u0645\u0648\u0646\u0648\u0644\u062b \u062c\u0632\u0631 \u0645\u0627\u0631\u064a\u0627\u0646\u0627 \u0627\u0644\u0634\u0645\u0627\u0644\u064a\u0629",
+ "common": "\u062c\u0632\u0631 \u0645\u0627\u0631\u064a\u0627\u0646\u0627 \u0627\u0644\u0634\u0645\u0627\u0644\u064a\u0629"
+ },
+ "bre": {
+ "official": "Kenglad Inizi Mariana an Norzh",
+ "common": "Inizi Mariana an Norzh"
+ },
+ "ces": {
+ "official": "Spole\u010denstv\u00ed Severn\u00edch Marian",
+ "common": "Severn\u00ed Mariany"
+ },
+ "deu": {
+ "official": "Commonwealth der N\u00f6rdlichen Marianen",
+ "common": "N\u00f6rdliche Marianen"
+ },
+ "est": {
+ "official": "P\u00f5hja-Mariaani \u00dchendus",
+ "common": "P\u00f5hja-Mariaanid"
+ },
+ "fin": {
+ "official": "Pohjois-Mariaanit",
+ "common": "Pohjois-Mariaanit"
+ },
+ "fra": {
+ "official": "Commonwealth des \u00eeles Mariannes du Nord",
+ "common": "\u00celes Mariannes du Nord"
+ },
+ "hrv": {
+ "official": "Zajednica je Sjeverni Marijanski otoci",
+ "common": "Sjevernomarijanski otoci"
+ },
+ "hun": {
+ "official": "\u00c9szaki-Mariana-szigetek",
+ "common": "\u00c9szaki-Mariana-szigetek"
+ },
+ "ita": {
+ "official": "Commonwealth delle Isole Marianne Settentrionali",
+ "common": "Isole Marianne Settentrionali"
+ },
+ "jpn": {
+ "official": "\u5317\u30de\u30ea\u30a2\u30ca\u8af8\u5cf6",
+ "common": "\u5317\u30de\u30ea\u30a2\u30ca\u8af8\u5cf6"
+ },
+ "kor": {
+ "official": "\ubd81\ub9c8\ub9ac\uc544\ub098 \uc81c\ub3c4",
+ "common": "\ubd81\ub9c8\ub9ac\uc544\ub098 \uc81c\ub3c4"
+ },
+ "nld": {
+ "official": "Commonwealth van de Noordelijke Marianen",
+ "common": "Noordelijke Marianeneilanden"
+ },
+ "per": {
+ "official": "\u062c\u0632\u0627\u06cc\u0631 \u0645\u0627\u0631\u06cc\u0627\u0646\u0627\u06cc \u0634\u0645\u0627\u0644\u06cc",
+ "common": "\u062c\u0632\u0627\u06cc\u0631 \u0645\u0627\u0631\u06cc\u0627\u0646\u0627\u06cc \u0634\u0645\u0627\u0644\u06cc"
+ },
+ "pol": {
+ "official": "Wsp\u00f3lnota Marian\u00f3w P\u00f3\u0142nocnych",
+ "common": "Mariany P\u00f3\u0142nocne"
+ },
+ "por": {
+ "official": "Comunidade das Ilhas Marianas do Norte",
+ "common": "Marianas Setentrionais"
+ },
+ "rus": {
+ "official": "\u0421\u043e\u0434\u0440\u0443\u0436\u0435\u0441\u0442\u0432\u043e \u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0445 \u041c\u0430\u0440\u0438\u0430\u043d\u0441\u043a\u0438\u0445 \u043e\u0441\u0442\u0440\u043e\u0432\u043e\u0432",
+ "common": "\u0421\u0435\u0432\u0435\u0440\u043d\u044b\u0435 \u041c\u0430\u0440\u0438\u0430\u043d\u0441\u043a\u0438\u0435 \u043e\u0441\u0442\u0440\u043e\u0432\u0430"
+ },
+ "slk": {
+ "official": "Spolo\u010denstvo ostrovov Severn\u00e9 Mari\u00e1ny",
+ "common": "Severn\u00e9 Mari\u00e1ny"
+ },
+ "spa": {
+ "official": "Mancomunidad de las Islas Marianas del Norte",
+ "common": "Islas Marianas del Norte"
+ },
+ "srp": {
+ "official": "Komonvelt Severna Marijanska Ostrva",
+ "common": "Severna Marijanska Ostrva"
+ },
+ "swe": {
+ "official": "Nordmarianerna",
+ "common": "Nordmarianerna"
+ },
+ "tur": {
+ "official": "Kuzey Mariana Adalar\u0131 Milletler Toplulu\u011fu",
+ "common": "Kuzey Mariana Adalar\u0131"
+ },
+ "urd": {
+ "official": "\u062f\u0648\u0644\u062a\u0650 \u0645\u0634\u062a\u0631\u06a9\u06c1 \u062c\u0632\u0627\u0626\u0631 \u0634\u0645\u0627\u0644\u06cc \u0645\u0627\u0631\u06cc\u0627\u0646\u0627",
+ "common": "\u062c\u0632\u0627\u0626\u0631 \u0634\u0645\u0627\u0644\u06cc \u0645\u0627\u0631\u06cc\u0627\u0646\u0627"
+ },
+ "zho": {
+ "official": "\u5317\u9a6c\u91cc\u4e9a\u7eb3\u7fa4\u5c9b",
+ "common": "\u5317\u9a6c\u91cc\u4e9a\u7eb3\u7fa4\u5c9b"
+ }
+ },
+ "latlng": [
+ 15.2,
+ 145.75
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 464,
+ "flag": "\ud83c\uddf2\ud83c\uddf5",
+ "demonyms": {
+ "eng": {
+ "f": "American",
+ "m": "American"
+ },
+ "fra": {
+ "f": "Am\u00e9ricaine",
+ "m": "Am\u00e9rican"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Mozambique",
+ "official": "Republic of Mozambique",
+ "native": {
+ "por": {
+ "official": "Rep\u00fablica de Mo\u00e7ambique",
+ "common": "Mo\u00e7ambique"
+ }
+ }
+ },
+ "tld": [
+ ".mz"
+ ],
+ "cca2": "MZ",
+ "ccn3": "508",
+ "cca3": "MOZ",
+ "cioc": "MOZ",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "MZN": {
+ "name": "Mozambican metical",
+ "symbol": "MT"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "58"
+ ]
+ },
+ "capital": [
+ "Maputo"
+ ],
+ "altSpellings": [
+ "MZ",
+ "Republic of Mozambique",
+ "Rep\u00fablica de Mo\u00e7ambique"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "por": "Portuguese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0645\u0648\u0632\u0645\u0628\u064a\u0642",
+ "common": "\u0645\u0648\u0632\u0645\u0628\u064a\u0642"
+ },
+ "bre": {
+ "official": "Republik Mozambik",
+ "common": "Mozambik"
+ },
+ "ces": {
+ "official": "Mosambick\u00e1 republika",
+ "common": "Mosambik"
+ },
+ "deu": {
+ "official": "Republik Mosambik",
+ "common": "Mosambik"
+ },
+ "est": {
+ "official": "Mosambiigi Vabariik",
+ "common": "Mosambiik"
+ },
+ "fin": {
+ "official": "Mosambikin tasavalta",
+ "common": "Mosambik"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Mozambique",
+ "common": "Mozambique"
+ },
+ "hrv": {
+ "official": "Republika Mozambiku",
+ "common": "Mozambik"
+ },
+ "hun": {
+ "official": "Mozambiki K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Mozambik"
+ },
+ "ita": {
+ "official": "Repubblica del Mozambico",
+ "common": "Mozambico"
+ },
+ "jpn": {
+ "official": "\u30e2\u30b6\u30f3\u30d3\u30fc\u30af\u5171\u548c\u56fd",
+ "common": "\u30e2\u30b6\u30f3\u30d3\u30fc\u30af"
+ },
+ "kor": {
+ "official": "\ubaa8\uc7a0\ube44\ud06c \uacf5\ud654\uad6d",
+ "common": "\ubaa8\uc7a0\ube44\ud06c"
+ },
+ "nld": {
+ "official": "Republiek Mozambique",
+ "common": "Mozambique"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0645\u0648\u0632\u0627\u0645\u0628\u06cc\u06a9",
+ "common": "\u0645\u0648\u0632\u0627\u0645\u0628\u06cc\u06a9"
+ },
+ "pol": {
+ "official": "Republika Mozambiku",
+ "common": "Mozambik"
+ },
+ "por": {
+ "official": "Rep\u00fablica de Mo\u00e7ambique",
+ "common": "Mo\u00e7ambique"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041c\u043e\u0437\u0430\u043c\u0431\u0438\u043a",
+ "common": "\u041c\u043e\u0437\u0430\u043c\u0431\u0438\u043a"
+ },
+ "slk": {
+ "official": "Mozambick\u00e1 republika",
+ "common": "Mozambik"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Mozambique",
+ "common": "Mozambique"
+ },
+ "srp": {
+ "official": "Republika Mozambik",
+ "common": "Mozambik"
+ },
+ "swe": {
+ "official": "Republiken Mo\u00e7ambique",
+ "common": "Mo\u00e7ambique"
+ },
+ "tur": {
+ "official": "Mozambik Cumhuriyeti",
+ "common": "Mozambik"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0645\u0648\u0632\u0645\u0628\u06cc\u0642",
+ "common": "\u0645\u0648\u0632\u0645\u0628\u06cc\u0642"
+ },
+ "zho": {
+ "official": "\u83ab\u6851\u6bd4\u514b\u5171\u548c\u56fd",
+ "common": "\u83ab\u6851\u6bd4\u514b"
+ }
+ },
+ "latlng": [
+ -18.25,
+ 35
+ ],
+ "landlocked": false,
+ "borders": [
+ "MWI",
+ "ZAF",
+ "SWZ",
+ "TZA",
+ "ZMB",
+ "ZWE"
+ ],
+ "area": 801590,
+ "flag": "\ud83c\uddf2\ud83c\uddff",
+ "demonyms": {
+ "eng": {
+ "f": "Mozambican",
+ "m": "Mozambican"
+ },
+ "fra": {
+ "f": "Mozambicaine",
+ "m": "Mozambicain"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Mauritania",
+ "official": "Islamic Republic of Mauritania",
+ "native": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0625\u0633\u0644\u0627\u0645\u064a\u0629 \u0627\u0644\u0645\u0648\u0631\u064a\u062a\u0627\u0646\u064a\u0629",
+ "common": "\u0645\u0648\u0631\u064a\u062a\u0627\u0646\u064a\u0627"
+ }
+ }
+ },
+ "tld": [
+ ".mr"
+ ],
+ "cca2": "MR",
+ "ccn3": "478",
+ "cca3": "MRT",
+ "cioc": "MTN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "MRU": {
+ "name": "Mauritanian ouguiya",
+ "symbol": "UM"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "22"
+ ]
+ },
+ "capital": [
+ "Nouakchott"
+ ],
+ "altSpellings": [
+ "MR",
+ "Islamic Republic of Mauritania",
+ "al-Jumh\u016briyyah al-\u02beIsl\u0101miyyah al-M\u016br\u012bt\u0101niyyah"
+ ],
+ "region": "Africa",
+ "subregion": "Western Africa",
+ "languages": {
+ "ara": "Arabic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0625\u0633\u0644\u0627\u0645\u064a\u0629 \u0627\u0644\u0645\u0648\u0631\u064a\u062a\u0627\u0646\u064a\u0629",
+ "common": "\u0645\u0648\u0631\u064a\u062a\u0627\u0646\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik islamek Maouritania",
+ "common": "Maouritania"
+ },
+ "ces": {
+ "official": "Maurit\u00e1nsk\u00e1 isl\u00e1msk\u00e1 republika",
+ "common": "Maurit\u00e1nie"
+ },
+ "deu": {
+ "official": "Islamische Republik Mauretanien",
+ "common": "Mauretanien"
+ },
+ "est": {
+ "official": "Mauritaania Islamivabariik",
+ "common": "Mauritaania"
+ },
+ "fin": {
+ "official": "Mauritanian islamilainen tasavalta",
+ "common": "Mauritania"
+ },
+ "fra": {
+ "official": "R\u00e9publique islamique de Mauritanie",
+ "common": "Mauritanie"
+ },
+ "hrv": {
+ "official": "Islamska Republika Mauritanija",
+ "common": "Mauritanija"
+ },
+ "hun": {
+ "official": "Maurit\u00e1niai Iszl\u00e1m K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Maurit\u00e1nia"
+ },
+ "ita": {
+ "official": "Repubblica islamica di Mauritania",
+ "common": "Mauritania"
+ },
+ "jpn": {
+ "official": "\u30e2\u30fc\u30ea\u30bf\u30cb\u30a2\u30fb\u30a4\u30b9\u30e9\u30e0\u5171\u548c\u56fd",
+ "common": "\u30e2\u30fc\u30ea\u30bf\u30cb\u30a2"
+ },
+ "kor": {
+ "official": "\ubaa8\ub9ac\ud0c0\ub2c8 \uc774\uc2ac\ub78c \uacf5\ud654\uad6d",
+ "common": "\ubaa8\ub9ac\ud0c0\ub2c8"
+ },
+ "nld": {
+ "official": "Islamitische Republiek Mauritani\u00eb",
+ "common": "Mauritani\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0633\u0644\u0627\u0645\u06cc \u0645\u0648\u0631\u06cc\u062a\u0627\u0646\u06cc",
+ "common": "\u0645\u0648\u0631\u06cc\u062a\u0627\u0646\u06cc"
+ },
+ "pol": {
+ "official": "Islamska Republika Maureta\u0144ska",
+ "common": "Mauretania"
+ },
+ "por": {
+ "official": "Rep\u00fablica Isl\u00e2mica da Maurit\u00e2nia",
+ "common": "Maurit\u00e2nia"
+ },
+ "rus": {
+ "official": "\u0418\u0441\u043b\u0430\u043c\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041c\u0430\u0432\u0440\u0438\u0442\u0430\u043d\u0438\u044f",
+ "common": "\u041c\u0430\u0432\u0440\u0438\u0442\u0430\u043d\u0438\u044f"
+ },
+ "slk": {
+ "official": "Maurit\u00e1nska islamsk\u00e1 republika",
+ "common": "Maurit\u00e1nia"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Isl\u00e1mica de Mauritania",
+ "common": "Mauritania"
+ },
+ "srp": {
+ "official": "Islamska Republika Mauritanija",
+ "common": "Mauritanija"
+ },
+ "swe": {
+ "official": "Islamiska republiken Mauretanien",
+ "common": "Mauretanien"
+ },
+ "tur": {
+ "official": "Moritanya \u0130slam Cumhuriyeti",
+ "common": "Moritanya"
+ },
+ "urd": {
+ "official": "\u0627\u0633\u0644\u0627\u0645\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0645\u0648\u0631\u06cc\u062a\u0627\u0646\u06cc\u06c1",
+ "common": "\u0645\u0648\u0631\u06cc\u062a\u0627\u0646\u06cc\u06c1"
+ },
+ "zho": {
+ "official": "\u6bdb\u91cc\u5854\u5c3c\u4e9a\u4f0a\u65af\u5170\u5171\u548c\u56fd",
+ "common": "\u6bdb\u91cc\u5854\u5c3c\u4e9a"
+ }
+ },
+ "latlng": [
+ 20,
+ -12
+ ],
+ "landlocked": false,
+ "borders": [
+ "DZA",
+ "MLI",
+ "SEN",
+ "ESH"
+ ],
+ "area": 1030700,
+ "flag": "\ud83c\uddf2\ud83c\uddf7",
+ "demonyms": {
+ "eng": {
+ "f": "Mauritanian",
+ "m": "Mauritanian"
+ },
+ "fra": {
+ "f": "Mauritanienne",
+ "m": "Mauritanien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Montserrat",
+ "official": "Montserrat",
+ "native": {
+ "eng": {
+ "official": "Montserrat",
+ "common": "Montserrat"
+ }
+ }
+ },
+ "tld": [
+ ".ms"
+ ],
+ "cca2": "MS",
+ "ccn3": "500",
+ "cca3": "MSR",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "XCD": {
+ "name": "Eastern Caribbean dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "664"
+ ]
+ },
+ "capital": [
+ "Plymouth"
+ ],
+ "altSpellings": [
+ "MS"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0648\u0646\u062a\u0633\u0631\u0627\u062a",
+ "common": "\u0645\u0648\u0646\u062a\u0633\u0631\u0627\u062a"
+ },
+ "bre": {
+ "official": "Montserrat",
+ "common": "Montserrat"
+ },
+ "ces": {
+ "official": "Montserrat",
+ "common": "Montserrat"
+ },
+ "deu": {
+ "official": "Montserrat",
+ "common": "Montserrat"
+ },
+ "est": {
+ "official": "Montserrat",
+ "common": "Montserrat"
+ },
+ "fin": {
+ "official": "Montserrat",
+ "common": "Montserrat"
+ },
+ "fra": {
+ "official": "Montserrat",
+ "common": "Montserrat"
+ },
+ "hrv": {
+ "official": "Montserrat",
+ "common": "Montserrat"
+ },
+ "hun": {
+ "official": "Montserrat",
+ "common": "Montserrat"
+ },
+ "ita": {
+ "official": "Montserrat",
+ "common": "Montserrat"
+ },
+ "jpn": {
+ "official": "\u30e2\u30f3\u30c8\u30bb\u30e9\u30c8",
+ "common": "\u30e2\u30f3\u30c8\u30bb\u30e9\u30c8"
+ },
+ "kor": {
+ "official": "\ubaac\ud2b8\uc138\ub7ab",
+ "common": "\ubaac\ud2b8\uc138\ub7ab"
+ },
+ "nld": {
+ "official": "Montserrat",
+ "common": "Montserrat"
+ },
+ "per": {
+ "official": "\u0645\u0648\u0646\u062a\u0633\u0631\u0627\u062a",
+ "common": "\u0645\u0648\u0646\u062a\u0633\u0631\u0627\u062a"
+ },
+ "pol": {
+ "official": "Montserrat",
+ "common": "Montserrat"
+ },
+ "por": {
+ "official": "Montserrat",
+ "common": "Montserrat"
+ },
+ "rus": {
+ "official": "\u041c\u043e\u043d\u0442\u0441\u0435\u0440\u0440\u0430\u0442",
+ "common": "\u041c\u043e\u043d\u0442\u0441\u0435\u0440\u0440\u0430\u0442"
+ },
+ "slk": {
+ "official": "Montserrat",
+ "common": "Montserrat"
+ },
+ "spa": {
+ "official": "Montserrat",
+ "common": "Montserrat"
+ },
+ "srp": {
+ "official": "Montserat",
+ "common": "Montserat"
+ },
+ "swe": {
+ "official": "Montserrat",
+ "common": "Montserrat"
+ },
+ "tur": {
+ "official": "Montserrat",
+ "common": "Montserrat"
+ },
+ "urd": {
+ "official": "\u0645\u0627\u0646\u0679\u0633\u0631\u06cc\u0679",
+ "common": "\u0645\u0627\u0646\u0679\u0633\u0631\u06cc\u0679"
+ },
+ "zho": {
+ "official": "\u8499\u7279\u585e\u62c9\u7279",
+ "common": "\u8499\u7279\u585e\u62c9\u7279"
+ }
+ },
+ "latlng": [
+ 16.75,
+ -62.2
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 102,
+ "flag": "\ud83c\uddf2\ud83c\uddf8",
+ "demonyms": {
+ "eng": {
+ "f": "Montserratian",
+ "m": "Montserratian"
+ },
+ "fra": {
+ "f": "Montserratienne",
+ "m": "Montserratien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Martinique",
+ "official": "Martinique",
+ "native": {
+ "fra": {
+ "official": "Martinique",
+ "common": "Martinique"
+ }
+ }
+ },
+ "tld": [
+ ".mq"
+ ],
+ "cca2": "MQ",
+ "ccn3": "474",
+ "cca3": "MTQ",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "96"
+ ]
+ },
+ "capital": [
+ "Fort-de-France"
+ ],
+ "altSpellings": [
+ "MQ"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0643",
+ "common": "\u0645\u0627\u0631\u062a\u064a\u0646\u064a\u0643"
+ },
+ "bre": {
+ "official": "Martinik",
+ "common": "Martinik"
+ },
+ "ces": {
+ "official": "Martinik",
+ "common": "Martinik"
+ },
+ "deu": {
+ "official": "Martinique",
+ "common": "Martinique"
+ },
+ "est": {
+ "official": "Martinique\u2019i departemang",
+ "common": "Martinique"
+ },
+ "fin": {
+ "official": "Martinique",
+ "common": "Martinique"
+ },
+ "fra": {
+ "official": "Martinique",
+ "common": "Martinique"
+ },
+ "hrv": {
+ "official": "Martinique",
+ "common": "Martinique"
+ },
+ "hun": {
+ "official": "Martinique",
+ "common": "Martinique"
+ },
+ "ita": {
+ "official": "Martinique",
+ "common": "Martinica"
+ },
+ "jpn": {
+ "official": "\u30de\u30eb\u30c1\u30cb\u30fc\u30af\u5cf6",
+ "common": "\u30de\u30eb\u30c6\u30a3\u30cb\u30fc\u30af"
+ },
+ "kor": {
+ "official": "\ub9c8\ub974\ud2f0\ub2c8\ud06c",
+ "common": "\ub9c8\ub974\ud2f0\ub2c8\ud06c"
+ },
+ "nld": {
+ "official": "Martinique",
+ "common": "Martinique"
+ },
+ "per": {
+ "official": "\u0645\u0627\u0631\u062a\u06cc\u0646\u06cc\u06a9",
+ "common": "\u0645\u0627\u0631\u062a\u06cc\u0646\u06cc\u06a9"
+ },
+ "pol": {
+ "official": "Martynika",
+ "common": "Martynika"
+ },
+ "por": {
+ "official": "Martinique",
+ "common": "Martinica"
+ },
+ "rus": {
+ "official": "\u041c\u0430\u0440\u0442\u0438\u043d\u0438\u043a\u0430",
+ "common": "\u041c\u0430\u0440\u0442\u0438\u043d\u0438\u043a\u0430"
+ },
+ "slk": {
+ "official": "Martinique",
+ "common": "Martinique"
+ },
+ "spa": {
+ "official": "Martinica",
+ "common": "Martinica"
+ },
+ "srp": {
+ "official": "Martinik",
+ "common": "Martinik"
+ },
+ "swe": {
+ "official": "Martinique",
+ "common": "Martinique"
+ },
+ "tur": {
+ "official": "Martinik",
+ "common": "Martinik"
+ },
+ "urd": {
+ "official": "\u0645\u0627\u0631\u0679\u06cc\u0646\u06cc\u06a9",
+ "common": "\u0645\u0627\u0631\u0679\u06cc\u0646\u06cc\u06a9"
+ },
+ "zho": {
+ "official": "\u9a6c\u63d0\u5c3c\u514b",
+ "common": "\u9a6c\u63d0\u5c3c\u514b"
+ }
+ },
+ "latlng": [
+ 14.666667,
+ -61
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 1128,
+ "flag": "\ud83c\uddf2\ud83c\uddf6",
+ "demonyms": {
+ "eng": {
+ "f": "Martinican",
+ "m": "Martinican"
+ },
+ "fra": {
+ "f": "Martiniquaise",
+ "m": "Martiniquais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Mauritius",
+ "official": "Republic of Mauritius",
+ "native": {
+ "eng": {
+ "official": "Republic of Mauritius",
+ "common": "Mauritius"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Maurice",
+ "common": "Maurice"
+ },
+ "mfe": {
+ "official": "Republik Moris",
+ "common": "Moris"
+ }
+ }
+ },
+ "tld": [
+ ".mu"
+ ],
+ "cca2": "MU",
+ "ccn3": "480",
+ "cca3": "MUS",
+ "cioc": "MRI",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "MUR": {
+ "name": "Mauritian rupee",
+ "symbol": "\u20a8"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "30"
+ ]
+ },
+ "capital": [
+ "Port Louis"
+ ],
+ "altSpellings": [
+ "MU",
+ "Republic of Mauritius",
+ "R\u00e9publique de Maurice"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "eng": "English",
+ "fra": "French",
+ "mfe": "Mauritian Creole"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0645\u0648\u0631\u064a\u0634\u064a\u0648\u0633",
+ "common": "\u0645\u0648\u0631\u064a\u0634\u064a\u0648\u0633"
+ },
+ "bre": {
+ "official": "Republik Moris",
+ "common": "Moris"
+ },
+ "ces": {
+ "official": "Mauricijsk\u00e1 republika",
+ "common": "Mauricius"
+ },
+ "deu": {
+ "official": "Republik Mauritius",
+ "common": "Mauritius"
+ },
+ "est": {
+ "official": "Mauritiuse Vabariik",
+ "common": "Mauritius"
+ },
+ "fin": {
+ "official": "Mauritiuksen tasavalta",
+ "common": "Mauritius"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Maurice",
+ "common": "\u00cele Maurice"
+ },
+ "hrv": {
+ "official": "Republika Mauricijus",
+ "common": "Mauricijus"
+ },
+ "hun": {
+ "official": "Mauritiusi K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Mauritius"
+ },
+ "ita": {
+ "official": "Repubblica di Mauritius",
+ "common": "Mauritius"
+ },
+ "jpn": {
+ "official": "\u30e2\u30fc\u30ea\u30b7\u30e3\u30b9\u5171\u548c\u56fd",
+ "common": "\u30e2\u30fc\u30ea\u30b7\u30e3\u30b9"
+ },
+ "kor": {
+ "official": "\ubaa8\ub9ac\uc154\uc2a4 \uacf5\ud654\uad6d",
+ "common": "\ubaa8\ub9ac\uc154\uc2a4"
+ },
+ "nld": {
+ "official": "Republiek Mauritius",
+ "common": "Mauritius"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0645\u0648\u0631\u06cc\u0633",
+ "common": "\u0645\u0648\u0631\u06cc\u0633"
+ },
+ "pol": {
+ "official": "Republika Mauritiusu",
+ "common": "Mauritius"
+ },
+ "por": {
+ "official": "Rep\u00fablica das Maur\u00edcias",
+ "common": "Maur\u00edcio"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041c\u0430\u0432\u0440\u0438\u043a\u0438\u0439",
+ "common": "\u041c\u0430\u0432\u0440\u0438\u043a\u0438\u0439"
+ },
+ "slk": {
+ "official": "Maur\u00edcijsk\u00e1 republika",
+ "common": "Maur\u00edcius"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Mauricio",
+ "common": "Mauricio"
+ },
+ "srp": {
+ "official": "Republika Mauricijus",
+ "common": "Mauricijus"
+ },
+ "swe": {
+ "official": "Republiken Mauritius",
+ "common": "Mauritius"
+ },
+ "tur": {
+ "official": "Mauritius Cumhuriyeti",
+ "common": "Mauritius"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0645\u0648\u0631\u06cc\u0634\u0633",
+ "common": "\u0645\u0648\u0631\u06cc\u0634\u0633"
+ },
+ "zho": {
+ "official": "\u6bdb\u91cc\u6c42\u65af\u5171\u548c\u56fd",
+ "common": "\u6bdb\u91cc\u6c42\u65af"
+ }
+ },
+ "latlng": [
+ -20.28333333,
+ 57.55
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 2040,
+ "flag": "\ud83c\uddf2\ud83c\uddfa",
+ "demonyms": {
+ "eng": {
+ "f": "Mauritian",
+ "m": "Mauritian"
+ },
+ "fra": {
+ "f": "Mauricienne",
+ "m": "Mauricien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Malawi",
+ "official": "Republic of Malawi",
+ "native": {
+ "eng": {
+ "official": "Republic of Malawi",
+ "common": "Malawi"
+ },
+ "nya": {
+ "official": "Chalo cha Malawi, Dziko la Mala\u0175i",
+ "common": "Mala\u0175i"
+ }
+ }
+ },
+ "tld": [
+ ".mw"
+ ],
+ "cca2": "MW",
+ "ccn3": "454",
+ "cca3": "MWI",
+ "cioc": "MAW",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "MWK": {
+ "name": "Malawian kwacha",
+ "symbol": "MK"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "65"
+ ]
+ },
+ "capital": [
+ "Lilongwe"
+ ],
+ "altSpellings": [
+ "MW",
+ "Republic of Malawi"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "eng": "English",
+ "nya": "Chewa"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0645\u0627\u0644\u0627\u0648\u064a",
+ "common": "\u0645\u0627\u0644\u0627\u0648\u064a"
+ },
+ "bre": {
+ "official": "Republik Malawi",
+ "common": "Malawi"
+ },
+ "ces": {
+ "official": "Malawisk\u00e1 republika",
+ "common": "Malawi"
+ },
+ "deu": {
+ "official": "Republik Malawi",
+ "common": "Malawi"
+ },
+ "est": {
+ "official": "Malawi Vabariik",
+ "common": "Malawi"
+ },
+ "fin": {
+ "official": "Malawin tasavalta",
+ "common": "Malawi"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Malawi",
+ "common": "Malawi"
+ },
+ "hrv": {
+ "official": "Republika Malavi",
+ "common": "Malavi"
+ },
+ "hun": {
+ "official": "Malawi K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Malawi"
+ },
+ "ita": {
+ "official": "Repubblica del Malawi",
+ "common": "Malawi"
+ },
+ "jpn": {
+ "official": "\u30de\u30e9\u30a6\u30a4\u5171\u548c\u56fd",
+ "common": "\u30de\u30e9\u30a6\u30a4"
+ },
+ "kor": {
+ "official": "\ub9d0\ub77c\uc704 \uacf5\ud654\uad6d",
+ "common": "\ub9d0\ub77c\uc704"
+ },
+ "nld": {
+ "official": "Republiek Malawi",
+ "common": "Malawi"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0645\u0627\u0644\u0627\u0648\u06cc",
+ "common": "\u0645\u0627\u0644\u0627\u0648\u06cc"
+ },
+ "pol": {
+ "official": "Republika Malawi",
+ "common": "Malawi"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Malawi",
+ "common": "Malawi"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041c\u0430\u043b\u0430\u0432\u0438",
+ "common": "\u041c\u0430\u043b\u0430\u0432\u0438"
+ },
+ "slk": {
+ "official": "Malawijsk\u00e1 republika",
+ "common": "Malawi"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Malawi",
+ "common": "Malawi"
+ },
+ "srp": {
+ "official": "Republika Malavi",
+ "common": "Malavi"
+ },
+ "swe": {
+ "official": "Republiken Malawi",
+ "common": "Malawi"
+ },
+ "tur": {
+ "official": "Malavi Cumhuriyeti",
+ "common": "Malavi"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0645\u0644\u0627\u0648\u06cc",
+ "common": "\u0645\u0644\u0627\u0648\u06cc"
+ },
+ "zho": {
+ "official": "\u9a6c\u62c9\u7ef4\u5171\u548c\u56fd",
+ "common": "\u9a6c\u62c9\u7ef4"
+ }
+ },
+ "latlng": [
+ -13.5,
+ 34
+ ],
+ "landlocked": true,
+ "borders": [
+ "MOZ",
+ "TZA",
+ "ZMB"
+ ],
+ "area": 118484,
+ "flag": "\ud83c\uddf2\ud83c\uddfc",
+ "demonyms": {
+ "eng": {
+ "f": "Malawian",
+ "m": "Malawian"
+ },
+ "fra": {
+ "f": "Malawienne",
+ "m": "Malawien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Malaysia",
+ "official": "Malaysia",
+ "native": {
+ "eng": {
+ "official": "Malaysia",
+ "common": "Malaysia"
+ },
+ "msa": {
+ "official": "\u0645\u0644\u064a\u0633\u064a\u0627",
+ "common": "\u0645\u0644\u064a\u0633\u064a\u0627"
+ }
+ }
+ },
+ "tld": [
+ ".my"
+ ],
+ "cca2": "MY",
+ "ccn3": "458",
+ "cca3": "MYS",
+ "cioc": "MAS",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "MYR": {
+ "name": "Malaysian ringgit",
+ "symbol": "RM"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "0"
+ ]
+ },
+ "capital": [
+ "Kuala Lumpur"
+ ],
+ "altSpellings": [
+ "MY"
+ ],
+ "region": "Asia",
+ "subregion": "South-Eastern Asia",
+ "languages": {
+ "eng": "English",
+ "msa": "Malay"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0627\u0644\u064a\u0632\u064a\u0627",
+ "common": "\u0645\u0627\u0644\u064a\u0632\u064a\u0627"
+ },
+ "bre": {
+ "official": "Malaysia",
+ "common": "Malaysia"
+ },
+ "ces": {
+ "official": "Malajsie",
+ "common": "Malajsie"
+ },
+ "deu": {
+ "official": "Malaysia",
+ "common": "Malaysia"
+ },
+ "est": {
+ "official": "Malaisia",
+ "common": "Malaisia"
+ },
+ "fin": {
+ "official": "Malesia",
+ "common": "Malesia"
+ },
+ "fra": {
+ "official": "F\u00e9d\u00e9ration de Malaisie",
+ "common": "Malaisie"
+ },
+ "hrv": {
+ "official": "Malezija",
+ "common": "Malezija"
+ },
+ "hun": {
+ "official": "Malajzia",
+ "common": "Malajzia"
+ },
+ "ita": {
+ "official": "Malaysia",
+ "common": "Malesia"
+ },
+ "jpn": {
+ "official": "\u30de\u30ec\u30fc\u30b7\u30a2",
+ "common": "\u30de\u30ec\u30fc\u30b7\u30a2"
+ },
+ "kor": {
+ "official": "\ub9d0\ub808\uc774\uc2dc\uc544",
+ "common": "\ub9d0\ub808\uc774\uc2dc\uc544"
+ },
+ "nld": {
+ "official": "Maleisi\u00eb",
+ "common": "Maleisi\u00eb"
+ },
+ "per": {
+ "official": "\u0641\u062f\u0631\u0627\u0633\u06cc\u0648\u0646 \u0645\u0627\u0644\u0632\u06cc",
+ "common": "\u0645\u0627\u0644\u0632\u06cc"
+ },
+ "pol": {
+ "official": "Malezja",
+ "common": "Malezja"
+ },
+ "por": {
+ "official": "Mal\u00e1sia",
+ "common": "Mal\u00e1sia"
+ },
+ "rus": {
+ "official": "\u041c\u0430\u043b\u0430\u0439\u0437\u0438\u044f",
+ "common": "\u041c\u0430\u043b\u0430\u0439\u0437\u0438\u044f"
+ },
+ "slk": {
+ "official": "Malajzia",
+ "common": "Malajzia"
+ },
+ "spa": {
+ "official": "Malasia",
+ "common": "Malasia"
+ },
+ "srp": {
+ "official": "Malezija",
+ "common": "Malezija"
+ },
+ "swe": {
+ "official": "Malaysia",
+ "common": "Malaysia"
+ },
+ "tur": {
+ "official": "Malezya",
+ "common": "Malezya"
+ },
+ "urd": {
+ "official": "\u0645\u0644\u0627\u0626\u06cc\u0634\u06cc\u0627",
+ "common": "\u0645\u0644\u0627\u0626\u06cc\u0634\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u9a6c\u6765\u897f\u4e9a",
+ "common": "\u9a6c\u6765\u897f\u4e9a"
+ }
+ },
+ "latlng": [
+ 2.5,
+ 112.5
+ ],
+ "landlocked": false,
+ "borders": [
+ "BRN",
+ "IDN",
+ "THA"
+ ],
+ "area": 330803,
+ "flag": "\ud83c\uddf2\ud83c\uddfe",
+ "demonyms": {
+ "eng": {
+ "f": "Malaysian",
+ "m": "Malaysian"
+ },
+ "fra": {
+ "f": "Malaisienne",
+ "m": "Malaisien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Mayotte",
+ "official": "Department of Mayotte",
+ "native": {
+ "fra": {
+ "official": "D\u00e9partement de Mayotte",
+ "common": "Mayotte"
+ }
+ }
+ },
+ "tld": [
+ ".yt"
+ ],
+ "cca2": "YT",
+ "ccn3": "175",
+ "cca3": "MYT",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "62"
+ ]
+ },
+ "capital": [
+ "Mamoudzou"
+ ],
+ "altSpellings": [
+ "YT",
+ "Department of Mayotte",
+ "D\u00e9partement de Mayotte"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0627\u064a\u0648\u062a",
+ "common": "\u0645\u0627\u064a\u0648\u062a"
+ },
+ "bre": {
+ "official": "Departamant Mayotte",
+ "common": "Mayotte"
+ },
+ "ces": {
+ "official": "Mayotte",
+ "common": "Mayotte"
+ },
+ "deu": {
+ "official": "\u00dcbersee-D\u00e9partement Mayotte",
+ "common": "Mayotte"
+ },
+ "est": {
+ "official": "Mayotte",
+ "common": "Mayotte"
+ },
+ "fin": {
+ "official": "Mayotte",
+ "common": "Mayotte"
+ },
+ "fra": {
+ "official": "D\u00e9partement de Mayotte",
+ "common": "Mayotte"
+ },
+ "hrv": {
+ "official": "Odjel Mayotte",
+ "common": "Mayotte"
+ },
+ "hun": {
+ "official": "Mayotte",
+ "common": "Mayotte"
+ },
+ "ita": {
+ "official": "Dipartimento di Mayotte",
+ "common": "Mayotte"
+ },
+ "jpn": {
+ "official": "\u30de\u30a4\u30e8\u30c3\u30c8\u5cf6",
+ "common": "\u30de\u30e8\u30c3\u30c8"
+ },
+ "kor": {
+ "official": "\ub9c8\uc694\ud2b8",
+ "common": "\ub9c8\uc694\ud2b8"
+ },
+ "nld": {
+ "official": "Afdeling Mayotte",
+ "common": "Mayotte"
+ },
+ "per": {
+ "official": "\u0645\u062c\u0645\u0648\u0639\u0647 \u0634\u0647\u0631\u0633\u062a\u0627\u0646\u06cc \u0645\u0627\u06cc\u0648\u062a",
+ "common": "\u0645\u0627\u06cc\u0648\u062a"
+ },
+ "pol": {
+ "official": "Majotta",
+ "common": "Majotta"
+ },
+ "por": {
+ "official": "Departamento de Mayotte",
+ "common": "Mayotte"
+ },
+ "rus": {
+ "official": "\u0414\u0435\u043f\u0430\u0440\u0442\u0430\u043c\u0435\u043d\u0442 \u041c\u0430\u0439\u043e\u0442\u0442\u0430",
+ "common": "\u041c\u0430\u0439\u043e\u0442\u0442\u0430"
+ },
+ "slk": {
+ "official": "Department Mayotte",
+ "common": "Mayotte"
+ },
+ "spa": {
+ "official": "Departamento de Mayotte",
+ "common": "Mayotte"
+ },
+ "srp": {
+ "official": "Kolektivitet Majot",
+ "common": "Majot"
+ },
+ "swe": {
+ "official": "Departementsomr\u00e5det Mayotte",
+ "common": "Mayotte"
+ },
+ "tur": {
+ "official": "Mayotte",
+ "common": "Mayotte"
+ },
+ "urd": {
+ "official": "\u0645\u0627\u06cc\u0648\u0679",
+ "common": "\u0645\u0627\u06cc\u0648\u0679"
+ },
+ "zho": {
+ "official": "\u9a6c\u7ea6\u7279",
+ "common": "\u9a6c\u7ea6\u7279"
+ }
+ },
+ "latlng": [
+ -12.83333333,
+ 45.16666666
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 374,
+ "flag": "\ud83c\uddfe\ud83c\uddf9",
+ "demonyms": {
+ "eng": {
+ "f": "Mahoran",
+ "m": "Mahoran"
+ },
+ "fra": {
+ "f": "Mahoraise",
+ "m": "Mahorais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Namibia",
+ "official": "Republic of Namibia",
+ "native": {
+ "afr": {
+ "official": "Republiek van Namibi\u00eb",
+ "common": "Namibi\u00eb"
+ },
+ "deu": {
+ "official": "Republik Namibia",
+ "common": "Namibia"
+ },
+ "eng": {
+ "official": "Republic of Namibia",
+ "common": "Namibia"
+ },
+ "her": {
+ "official": "Republic of Namibia",
+ "common": "Namibia"
+ },
+ "hgm": {
+ "official": "Republic of Namibia",
+ "common": "Namibia"
+ },
+ "kwn": {
+ "official": "Republic of Namibia",
+ "common": "Namibia"
+ },
+ "loz": {
+ "official": "Republic of Namibia",
+ "common": "Namibia"
+ },
+ "ndo": {
+ "official": "Republic of Namibia",
+ "common": "Namibia"
+ },
+ "tsn": {
+ "official": "Lefatshe la Namibia",
+ "common": "Namibia"
+ }
+ }
+ },
+ "tld": [
+ ".na"
+ ],
+ "cca2": "NA",
+ "ccn3": "516",
+ "cca3": "NAM",
+ "cioc": "NAM",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "NAD": {
+ "name": "Namibian dollar",
+ "symbol": "$"
+ },
+ "ZAR": {
+ "name": "South African rand",
+ "symbol": "R"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "64"
+ ]
+ },
+ "capital": [
+ "Windhoek"
+ ],
+ "altSpellings": [
+ "NA",
+ "Namibi\u00eb",
+ "Republic of Namibia"
+ ],
+ "region": "Africa",
+ "subregion": "Southern Africa",
+ "languages": {
+ "afr": "Afrikaans",
+ "deu": "German",
+ "eng": "English",
+ "her": "Herero",
+ "hgm": "Khoekhoe",
+ "kwn": "Kwangali",
+ "loz": "Lozi",
+ "ndo": "Ndonga",
+ "tsn": "Tswana"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0646\u0627\u0645\u064a\u0628\u064a\u0627",
+ "common": "\u0646\u0627\u0645\u064a\u0628\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Namibia",
+ "common": "Namibia"
+ },
+ "ces": {
+ "official": "Namibijsk\u00e1 republika",
+ "common": "Namibie"
+ },
+ "deu": {
+ "official": "Republik Namibia",
+ "common": "Namibia"
+ },
+ "est": {
+ "official": "Namiibia Vabariik",
+ "common": "Namiibia"
+ },
+ "fin": {
+ "official": "Namibian tasavalta",
+ "common": "Namibia"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Namibie",
+ "common": "Namibie"
+ },
+ "hrv": {
+ "official": "Republika Namibija",
+ "common": "Namibija"
+ },
+ "hun": {
+ "official": "Nam\u00edbiai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Nam\u00edbia"
+ },
+ "ita": {
+ "official": "Repubblica di Namibia",
+ "common": "Namibia"
+ },
+ "jpn": {
+ "official": "\u30ca\u30df\u30d3\u30a2\u5171\u548c\u56fd",
+ "common": "\u30ca\u30df\u30d3\u30a2"
+ },
+ "kor": {
+ "official": "\ub098\ubbf8\ube44\uc544 \uacf5\ud654\uad6d",
+ "common": "\ub098\ubbf8\ube44\uc544"
+ },
+ "nld": {
+ "official": "Republiek Namibi\u00eb",
+ "common": "Namibi\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0646\u0627\u0645\u06cc\u0628\u06cc\u0627",
+ "common": "\u0646\u0627\u0645\u06cc\u0628\u06cc\u0627"
+ },
+ "pol": {
+ "official": "Republika Namibii",
+ "common": "Namibia"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Nam\u00edbia",
+ "common": "Nam\u00edbia"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041d\u0430\u043c\u0438\u0431\u0438\u044f",
+ "common": "\u041d\u0430\u043c\u0438\u0431\u0438\u044f"
+ },
+ "slk": {
+ "official": "Nam\u00edbijsk\u00e1 republika",
+ "common": "Nam\u00edbia"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Namibia",
+ "common": "Namibia"
+ },
+ "srp": {
+ "official": "Republika Namibija",
+ "common": "Namibija"
+ },
+ "swe": {
+ "official": "Republiken Namibia",
+ "common": "Namibia"
+ },
+ "tur": {
+ "official": "Namibya Cumhuriyeti",
+ "common": "Namibya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0646\u0645\u06cc\u0628\u06cc\u0627",
+ "common": "\u0646\u0645\u06cc\u0628\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u7eb3\u7c73\u6bd4\u4e9a\u5171\u548c\u56fd",
+ "common": "\u7eb3\u7c73\u6bd4\u4e9a"
+ }
+ },
+ "latlng": [
+ -22,
+ 17
+ ],
+ "landlocked": false,
+ "borders": [
+ "AGO",
+ "BWA",
+ "ZAF",
+ "ZMB"
+ ],
+ "area": 825615,
+ "flag": "\ud83c\uddf3\ud83c\udde6",
+ "demonyms": {
+ "eng": {
+ "f": "Namibian",
+ "m": "Namibian"
+ },
+ "fra": {
+ "f": "Namibienne",
+ "m": "Namibien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "New Caledonia",
+ "official": "New Caledonia",
+ "native": {
+ "fra": {
+ "official": "Nouvelle-Cal\u00e9donie",
+ "common": "Nouvelle-Cal\u00e9donie"
+ }
+ }
+ },
+ "tld": [
+ ".nc"
+ ],
+ "cca2": "NC",
+ "ccn3": "540",
+ "cca3": "NCL",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "XPF": {
+ "name": "CFP franc",
+ "symbol": "\u20a3"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "87"
+ ]
+ },
+ "capital": [
+ "Noum\u00e9a"
+ ],
+ "altSpellings": [
+ "NC"
+ ],
+ "region": "Oceania",
+ "subregion": "Melanesia",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0643\u0627\u0644\u064a\u062f\u0648\u0646\u064a\u0627 \u0627\u0644\u062c\u062f\u064a\u062f\u0629",
+ "common": "\u0643\u0627\u0644\u064a\u062f\u0648\u0646\u064a\u0627 \u0627\u0644\u062c\u062f\u064a\u062f\u0629"
+ },
+ "bre": {
+ "official": "Kaledonia-Nevez",
+ "common": "Kaledonia-Nevez"
+ },
+ "ces": {
+ "official": "Nov\u00e1 Kaledonie",
+ "common": "Nov\u00e1 Kaledonie"
+ },
+ "deu": {
+ "official": "Neukaledonien",
+ "common": "Neukaledonien"
+ },
+ "est": {
+ "official": "Uus-Kaledoonia",
+ "common": "Uus-Kaledoonia"
+ },
+ "fin": {
+ "official": "Uusi-Kaledonia",
+ "common": "Uusi-Kaledonia"
+ },
+ "fra": {
+ "official": "Nouvelle-Cal\u00e9donie",
+ "common": "Nouvelle-Cal\u00e9donie"
+ },
+ "hrv": {
+ "official": "Nova Kaledonija",
+ "common": "Nova Kaledonija"
+ },
+ "hun": {
+ "official": "\u00daj-Kaled\u00f3nia",
+ "common": "\u00daj-Kaled\u00f3nia"
+ },
+ "ita": {
+ "official": "Nuova Caledonia",
+ "common": "Nuova Caledonia"
+ },
+ "jpn": {
+ "official": "\u30cb\u30e5\u30fc\u30ab\u30ec\u30c9\u30cb\u30a2",
+ "common": "\u30cb\u30e5\u30fc\u30ab\u30ec\u30c9\u30cb\u30a2"
+ },
+ "kor": {
+ "official": "\ub204\ubca8\uce7c\ub808\ub3c4\ub2c8",
+ "common": "\ub204\ubca8\uce7c\ub808\ub3c4\ub2c8"
+ },
+ "nld": {
+ "official": "nieuw -Caledoni\u00eb",
+ "common": "Nieuw-Caledoni\u00eb"
+ },
+ "per": {
+ "official": "\u06a9\u0627\u0644\u062f\u0648\u0646\u06cc\u0627\u06cc \u062c\u062f\u06cc\u062f",
+ "common": "\u06a9\u0627\u0644\u062f\u0648\u0646\u06cc\u0627\u06cc \u062c\u062f\u06cc\u062f"
+ },
+ "pol": {
+ "official": "Nowa Kaledonia",
+ "common": "Nowa Kaledonia"
+ },
+ "por": {
+ "official": "New Caledonia",
+ "common": "Nova Caled\u00f3nia"
+ },
+ "rus": {
+ "official": "\u041d\u043e\u0432\u0430\u044f \u041a\u0430\u043b\u0435\u0434\u043e\u043d\u0438\u044f",
+ "common": "\u041d\u043e\u0432\u0430\u044f \u041a\u0430\u043b\u0435\u0434\u043e\u043d\u0438\u044f"
+ },
+ "slk": {
+ "official": "Nov\u00e1 Kaled\u00f3nia",
+ "common": "Nov\u00e1 Kaled\u00f3nia"
+ },
+ "spa": {
+ "official": "nueva Caledonia",
+ "common": "Nueva Caledonia"
+ },
+ "srp": {
+ "official": "Nova Kaledonija",
+ "common": "Nova Kaledonija"
+ },
+ "swe": {
+ "official": "Nya Kaledonien",
+ "common": "Nya Kaledonien"
+ },
+ "tur": {
+ "official": "Yeni Kaledonya",
+ "common": "Yeni Kaledonya"
+ },
+ "urd": {
+ "official": "\u0646\u06cc\u0648 \u06a9\u06cc\u0644\u06cc\u0688\u0648\u0646\u06cc\u0627",
+ "common": "\u0646\u06cc\u0648 \u06a9\u06cc\u0644\u06cc\u0688\u0648\u0646\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u65b0\u5580\u91cc\u591a\u5c3c\u4e9a",
+ "common": "\u65b0\u5580\u91cc\u591a\u5c3c\u4e9a"
+ }
+ },
+ "latlng": [
+ -21.5,
+ 165.5
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 18575,
+ "flag": "\ud83c\uddf3\ud83c\udde8",
+ "demonyms": {
+ "eng": {
+ "f": "New Caledonian",
+ "m": "New Caledonian"
+ },
+ "fra": {
+ "f": "N\u00e9o-Cal\u00e9donienne",
+ "m": "N\u00e9o-Cal\u00e9donien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Niger",
+ "official": "Republic of Niger",
+ "native": {
+ "fra": {
+ "official": "R\u00e9publique du Niger",
+ "common": "Niger"
+ }
+ }
+ },
+ "tld": [
+ ".ne"
+ ],
+ "cca2": "NE",
+ "ccn3": "562",
+ "cca3": "NER",
+ "cioc": "NIG",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "XOF": {
+ "name": "West African CFA franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "27"
+ ]
+ },
+ "capital": [
+ "Niamey"
+ ],
+ "altSpellings": [
+ "NE",
+ "Nijar"
+ ],
+ "region": "Africa",
+ "subregion": "Western Africa",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0646\u064a\u062c\u0631",
+ "common": "\u0627\u0644\u0646\u064a\u062c\u0631"
+ },
+ "bre": {
+ "official": "Republik Niger",
+ "common": "Niger"
+ },
+ "ces": {
+ "official": "Nigersk\u00e1 republika",
+ "common": "Niger"
+ },
+ "deu": {
+ "official": "Republik Niger",
+ "common": "Niger"
+ },
+ "est": {
+ "official": "Nigeri Vabariik",
+ "common": "Niger"
+ },
+ "fin": {
+ "official": "Nigerin tasavalta",
+ "common": "Niger"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Niger",
+ "common": "Niger"
+ },
+ "hrv": {
+ "official": "Republika Niger",
+ "common": "Niger"
+ },
+ "hun": {
+ "official": "Nigeri K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Niger"
+ },
+ "ita": {
+ "official": "Repubblica del Niger",
+ "common": "Niger"
+ },
+ "jpn": {
+ "official": "\u30cb\u30b8\u30a7\u30fc\u30eb\u5171\u548c\u56fd",
+ "common": "\u30cb\u30b8\u30a7\u30fc\u30eb"
+ },
+ "kor": {
+ "official": "\ub2c8\uc81c\ub974 \uacf5\ud654\uad6d",
+ "common": "\ub2c8\uc81c\ub974"
+ },
+ "nld": {
+ "official": "Republiek Niger",
+ "common": "Niger"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0646\u06cc\u062c\u0631",
+ "common": "\u0646\u06cc\u062c\u0631"
+ },
+ "pol": {
+ "official": "Republika Nigru",
+ "common": "Niger"
+ },
+ "por": {
+ "official": "Rep\u00fablica do N\u00edger",
+ "common": "N\u00edger"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041d\u0438\u0433\u0435\u0440",
+ "common": "\u041d\u0438\u0433\u0435\u0440"
+ },
+ "slk": {
+ "official": "Nig\u00e9rsk\u00e1 republika",
+ "common": "Niger"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de N\u00edger",
+ "common": "N\u00edger"
+ },
+ "srp": {
+ "official": "Republika Niger",
+ "common": "Niger"
+ },
+ "swe": {
+ "official": "Republiken Niger",
+ "common": "Niger"
+ },
+ "tur": {
+ "official": "Nijer Cumhuriyeti",
+ "common": "Nijer"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0646\u0627\u0626\u062c\u0631",
+ "common": "\u0646\u0627\u0626\u062c\u0631"
+ },
+ "zho": {
+ "official": "\u5c3c\u65e5\u5c14\u5171\u548c\u56fd",
+ "common": "\u5c3c\u65e5\u5c14"
+ }
+ },
+ "latlng": [
+ 16,
+ 8
+ ],
+ "landlocked": true,
+ "borders": [
+ "DZA",
+ "BEN",
+ "BFA",
+ "TCD",
+ "LBY",
+ "MLI",
+ "NGA"
+ ],
+ "area": 1267000,
+ "flag": "\ud83c\uddf3\ud83c\uddea",
+ "demonyms": {
+ "eng": {
+ "f": "Nigerien",
+ "m": "Nigerien"
+ },
+ "fra": {
+ "f": "Nig\u00e9rienne",
+ "m": "Nig\u00e9rien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Norfolk Island",
+ "official": "Territory of Norfolk Island",
+ "native": {
+ "eng": {
+ "official": "Territory of Norfolk Island",
+ "common": "Norfolk Island"
+ },
+ "pih": {
+ "official": "Teratri of Norf'k Ailen",
+ "common": "Norf'k Ailen"
+ }
+ }
+ },
+ "tld": [
+ ".nf"
+ ],
+ "cca2": "NF",
+ "ccn3": "574",
+ "cca3": "NFK",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "AUD": {
+ "name": "Australian dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "72"
+ ]
+ },
+ "capital": [
+ "Kingston"
+ ],
+ "altSpellings": [
+ "NF",
+ "Territory of Norfolk Island",
+ "Teratri of Norf'k Ailen"
+ ],
+ "region": "Oceania",
+ "subregion": "Australia and New Zealand",
+ "languages": {
+ "eng": "English",
+ "pih": "Norfuk"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0625\u0642\u0644\u064a\u0645 \u062c\u0632\u064a\u0631\u0629 \u0646\u0648\u0631\u0641\u0648\u0644\u0643",
+ "common": "\u062c\u0632\u064a\u0631\u0629 \u0646\u0648\u0631\u0641\u0648\u0644\u0643"
+ },
+ "bre": {
+ "official": "Tiriad Enez Norfolk",
+ "common": "Enez Norfolk"
+ },
+ "ces": {
+ "official": "Teritorium ostrova Norfolk",
+ "common": "Norfolk"
+ },
+ "deu": {
+ "official": "Gebiet der Norfolkinsel",
+ "common": "Norfolkinsel"
+ },
+ "est": {
+ "official": "Norfolki saare ala",
+ "common": "Norfolk"
+ },
+ "fin": {
+ "official": "Norfolkinsaaren territorio",
+ "common": "Norfolkinsaari"
+ },
+ "fra": {
+ "official": "Territoire de l'\u00eele Norfolk",
+ "common": "\u00cele Norfolk"
+ },
+ "hrv": {
+ "official": "Teritorij Norfolk Island",
+ "common": "Otok Norfolk"
+ },
+ "hun": {
+ "official": "Norfolk-sziget",
+ "common": "Norfolk-sziget"
+ },
+ "ita": {
+ "official": "Territorio di Norfolk Island",
+ "common": "Isola Norfolk"
+ },
+ "jpn": {
+ "official": "\u30ce\u30fc\u30d5\u30a9\u30fc\u30af\u5cf6",
+ "common": "\u30ce\u30fc\u30d5\u30a9\u30fc\u30af\u5cf6"
+ },
+ "kor": {
+ "official": "\ub178\ud37d \uc12c",
+ "common": "\ub178\ud37d \uc12c"
+ },
+ "nld": {
+ "official": "Grondgebied van Norfolk Island",
+ "common": "Norfolkeiland"
+ },
+ "per": {
+ "official": "\u0642\u0644\u0645\u0631\u0648 \u062c\u0632\u0627\u06cc\u0631 \u0646\u0648\u0631\u0641\u06a9",
+ "common": "\u062c\u0632\u06cc\u0631\u0647 \u0646\u0648\u0631\u0641\u06a9"
+ },
+ "pol": {
+ "official": "Terytorium Wyspy Norfolk",
+ "common": "Wyspa Norfolk"
+ },
+ "por": {
+ "official": "Territ\u00f3rio da Ilha Norfolk",
+ "common": "Ilha Norfolk"
+ },
+ "rus": {
+ "official": "\u0422\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u043e\u0441\u0442\u0440\u043e\u0432\u0430 \u041d\u043e\u0440\u0444\u043e\u043b\u043a",
+ "common": "\u041d\u043e\u0440\u0444\u043e\u043b\u043a"
+ },
+ "slk": {
+ "official": "Terit\u00f3rium ostrova Norfolk",
+ "common": "Norfolk"
+ },
+ "spa": {
+ "official": "Territorio de la Isla Norfolk",
+ "common": "Isla de Norfolk"
+ },
+ "srp": {
+ "official": "Teritorija Ostrva Norfok",
+ "common": "Ostrvo Norfok"
+ },
+ "swe": {
+ "official": "Norfolk\u00f6n",
+ "common": "Norfolk\u00f6n"
+ },
+ "tur": {
+ "official": "Norfolk Adas\u0131",
+ "common": "Norfolk Adas\u0131"
+ },
+ "urd": {
+ "official": "\u062c\u0632\u06cc\u0631\u06c1 \u0646\u0648\u0631\u0641\u06a9 \u062e\u0637\u06c1",
+ "common": "\u062c\u0632\u06cc\u0631\u06c1 \u0646\u0648\u0631\u0641\u06a9"
+ },
+ "zho": {
+ "official": "\u8bfa\u798f\u514b\u5c9b",
+ "common": "\u8bfa\u798f\u514b\u5c9b"
+ }
+ },
+ "latlng": [
+ -29.03333333,
+ 167.95
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 36,
+ "flag": "\ud83c\uddf3\ud83c\uddeb",
+ "demonyms": {
+ "eng": {
+ "f": "Norfolk Islander",
+ "m": "Norfolk Islander"
+ },
+ "fra": {
+ "f": "Norfolkaise",
+ "m": "Norfolkais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Nigeria",
+ "official": "Federal Republic of Nigeria",
+ "native": {
+ "eng": {
+ "official": "Federal Republic of Nigeria",
+ "common": "Nigeria"
+ }
+ }
+ },
+ "tld": [
+ ".ng"
+ ],
+ "cca2": "NG",
+ "ccn3": "566",
+ "cca3": "NGA",
+ "cioc": "NGR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "NGN": {
+ "name": "Nigerian naira",
+ "symbol": "\u20a6"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "34"
+ ]
+ },
+ "capital": [
+ "Abuja"
+ ],
+ "altSpellings": [
+ "NG",
+ "Nijeriya",
+ "Na\u00edj\u00edr\u00ed\u00e0",
+ "Federal Republic of Nigeria"
+ ],
+ "region": "Africa",
+ "subregion": "Western Africa",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0646\u064a\u062c\u064a\u0631\u064a\u0627 \u0627\u0644\u0627\u062a\u062d\u0627\u062f\u064a\u0629",
+ "common": "\u0646\u064a\u062c\u064a\u0631\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Kevreadel Nigeria",
+ "common": "Nigeria"
+ },
+ "ces": {
+ "official": "Nigerijsk\u00e1 federativn\u00ed republika",
+ "common": "Nig\u00e9rie"
+ },
+ "deu": {
+ "official": "Bundesrepublik Nigeria",
+ "common": "Nigeria"
+ },
+ "est": {
+ "official": "Nigeeria Liitvabariik",
+ "common": "Nigeeria"
+ },
+ "fin": {
+ "official": "Nigerian liittotasavalta",
+ "common": "Nigeria"
+ },
+ "fra": {
+ "official": "R\u00e9publique f\u00e9d\u00e9rale du Nigeria",
+ "common": "Nig\u00e9ria"
+ },
+ "hrv": {
+ "official": "Savezna Republika Nigerija",
+ "common": "Nigerija"
+ },
+ "hun": {
+ "official": "Nig\u00e9ria",
+ "common": "Nig\u00e9ria"
+ },
+ "ita": {
+ "official": "Repubblica federale di Nigeria",
+ "common": "Nigeria"
+ },
+ "jpn": {
+ "official": "\u30ca\u30a4\u30b8\u30a7\u30ea\u30a2\u9023\u90a6\u5171\u548c\u56fd",
+ "common": "\u30ca\u30a4\u30b8\u30a7\u30ea\u30a2"
+ },
+ "kor": {
+ "official": "\ub098\uc774\uc9c0\ub9ac\uc544 \uc5f0\ubc29 \uacf5\ud654\uad6d",
+ "common": "\ub098\uc774\uc9c0\ub9ac\uc544"
+ },
+ "nld": {
+ "official": "Federale Republiek Nigeria",
+ "common": "Nigeria"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0641\u062f\u0631\u0627\u0644 \u0646\u06cc\u062c\u0631\u06cc\u0647",
+ "common": "\u0646\u06cc\u062c\u0631\u06cc\u0647"
+ },
+ "pol": {
+ "official": "Federalna Republika Nigerii",
+ "common": "Nigeria"
+ },
+ "por": {
+ "official": "Rep\u00fablica Federal da Nig\u00e9ria",
+ "common": "Nig\u00e9ria"
+ },
+ "rus": {
+ "official": "\u0424\u0435\u0434\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041d\u0438\u0433\u0435\u0440\u0438\u044f",
+ "common": "\u041d\u0438\u0433\u0435\u0440\u0438\u044f"
+ },
+ "slk": {
+ "official": "Nig\u00e9rijsk\u00e1 federat\u00edvna republika",
+ "common": "Nig\u00e9ria"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Federal de Nigeria",
+ "common": "Nigeria"
+ },
+ "srp": {
+ "official": "Savezna Republika Nigerija",
+ "common": "Nigerija"
+ },
+ "swe": {
+ "official": "F\u00f6rbundsrepubliken Nigeria",
+ "common": "Nigeria"
+ },
+ "tur": {
+ "official": "Nijerya Federal Cumhuriyeti",
+ "common": "Nijerya"
+ },
+ "urd": {
+ "official": "\u0648\u0641\u0627\u0642\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0646\u0627\u0626\u062c\u06cc\u0631\u06cc\u0627",
+ "common": "\u0646\u0627\u0626\u062c\u06cc\u0631\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u5c3c\u65e5\u5229\u4e9a\u8054\u90a6\u5171\u548c\u56fd",
+ "common": "\u5c3c\u65e5\u5229\u4e9a"
+ }
+ },
+ "latlng": [
+ 10,
+ 8
+ ],
+ "landlocked": false,
+ "borders": [
+ "BEN",
+ "CMR",
+ "TCD",
+ "NER"
+ ],
+ "area": 923768,
+ "flag": "\ud83c\uddf3\ud83c\uddec",
+ "demonyms": {
+ "eng": {
+ "f": "Nigerian",
+ "m": "Nigerian"
+ },
+ "fra": {
+ "f": "Nig\u00e9riane",
+ "m": "Nig\u00e9rian"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Nicaragua",
+ "official": "Republic of Nicaragua",
+ "native": {
+ "spa": {
+ "official": "Rep\u00fablica de Nicaragua",
+ "common": "Nicaragua"
+ }
+ }
+ },
+ "tld": [
+ ".ni"
+ ],
+ "cca2": "NI",
+ "ccn3": "558",
+ "cca3": "NIC",
+ "cioc": "NCA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "NIO": {
+ "name": "Nicaraguan c\u00f3rdoba",
+ "symbol": "C$"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "05"
+ ]
+ },
+ "capital": [
+ "Managua"
+ ],
+ "altSpellings": [
+ "NI",
+ "Republic of Nicaragua",
+ "Rep\u00fablica de Nicaragua"
+ ],
+ "region": "Americas",
+ "subregion": "Central America",
+ "languages": {
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0646\u064a\u0643\u0627\u0631\u0627\u063a\u0648\u0627",
+ "common": "\u0646\u064a\u0643\u0627\u0631\u0627\u063a\u0648\u0627"
+ },
+ "bre": {
+ "official": "Republik Nicaragua",
+ "common": "Nicaragua"
+ },
+ "ces": {
+ "official": "Republika Nikaragua",
+ "common": "Nikaragua"
+ },
+ "deu": {
+ "official": "Republik Nicaragua",
+ "common": "Nicaragua"
+ },
+ "est": {
+ "official": "Nicaragua Vabariik",
+ "common": "Nicaragua"
+ },
+ "fin": {
+ "official": "Nicaraguan tasavalta",
+ "common": "Nicaragua"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Nicaragua",
+ "common": "Nicaragua"
+ },
+ "hrv": {
+ "official": "Republika Nikaragva",
+ "common": "Nikaragva"
+ },
+ "hun": {
+ "official": "Nicaraguai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Nicaragua"
+ },
+ "ita": {
+ "official": "Repubblica del Nicaragua",
+ "common": "Nicaragua"
+ },
+ "jpn": {
+ "official": "\u30cb\u30ab\u30e9\u30b0\u30a2\u5171\u548c\u56fd",
+ "common": "\u30cb\u30ab\u30e9\u30b0\u30a2"
+ },
+ "kor": {
+ "official": "\ub2c8\uce74\ub77c\uacfc \uacf5\ud654\uad6d",
+ "common": "\ub2c8\uce74\ub77c\uacfc"
+ },
+ "nld": {
+ "official": "Republiek Nicaragua",
+ "common": "Nicaragua"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0646\u06cc\u06a9\u0627\u0631\u0627\u06af\u0648\u0626\u0647",
+ "common": "\u0646\u06cc\u06a9\u0627\u0631\u0627\u06af\u0648\u0626\u0647"
+ },
+ "pol": {
+ "official": "Republika Nikaragui",
+ "common": "Nikaragua"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Nicar\u00e1gua",
+ "common": "Nicar\u00e1gua"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041d\u0438\u043a\u0430\u0440\u0430\u0433\u0443\u0430",
+ "common": "\u041d\u0438\u043a\u0430\u0440\u0430\u0433\u0443\u0430"
+ },
+ "slk": {
+ "official": "Nikaragujsk\u00e1 republika",
+ "common": "Nikaragua"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Nicaragua",
+ "common": "Nicaragua"
+ },
+ "srp": {
+ "official": "Republika Nikaragva",
+ "common": "Nikaragva"
+ },
+ "swe": {
+ "official": "Republiken Nicaragua",
+ "common": "Nicaragua"
+ },
+ "tur": {
+ "official": "Nikaragua Cumhuriyeti",
+ "common": "Nikaragua"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0646\u06a9\u0627\u0631\u0627\u06af\u0648\u0627",
+ "common": "\u0646\u06a9\u0627\u0631\u0627\u06af\u0648\u0627"
+ },
+ "zho": {
+ "official": "\u5c3c\u52a0\u62c9\u74dc\u5171\u548c\u56fd",
+ "common": "\u5c3c\u52a0\u62c9\u74dc"
+ }
+ },
+ "latlng": [
+ 13,
+ -85
+ ],
+ "landlocked": false,
+ "borders": [
+ "CRI",
+ "HND"
+ ],
+ "area": 130373,
+ "flag": "\ud83c\uddf3\ud83c\uddee",
+ "demonyms": {
+ "eng": {
+ "f": "Nicaraguan",
+ "m": "Nicaraguan"
+ },
+ "fra": {
+ "f": "Nicaraguayenne",
+ "m": "Nicaraguayen"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Niue",
+ "official": "Niue",
+ "native": {
+ "eng": {
+ "official": "Niue",
+ "common": "Niue"
+ },
+ "niu": {
+ "official": "Niu\u0113",
+ "common": "Niu\u0113"
+ }
+ }
+ },
+ "tld": [
+ ".nu"
+ ],
+ "cca2": "NU",
+ "ccn3": "570",
+ "cca3": "NIU",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "NZD": {
+ "name": "New Zealand dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "83"
+ ]
+ },
+ "capital": [
+ "Alofi"
+ ],
+ "altSpellings": [
+ "NU"
+ ],
+ "region": "Oceania",
+ "subregion": "Polynesia",
+ "languages": {
+ "eng": "English",
+ "niu": "Niuean"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0646\u064a\u064a\u0648\u064a",
+ "common": "\u0646\u064a\u064a\u0648\u064a"
+ },
+ "bre": {
+ "official": "Niue",
+ "common": "Niue"
+ },
+ "ces": {
+ "official": "Niue",
+ "common": "Niue"
+ },
+ "deu": {
+ "official": "Niue",
+ "common": "Niue"
+ },
+ "est": {
+ "official": "Niue",
+ "common": "Niue"
+ },
+ "fin": {
+ "official": "Niue",
+ "common": "Niue"
+ },
+ "fra": {
+ "official": "Niue",
+ "common": "Niue"
+ },
+ "hrv": {
+ "official": "Niue",
+ "common": "Niue"
+ },
+ "hun": {
+ "official": "Niue",
+ "common": "Niue"
+ },
+ "ita": {
+ "official": "Niue",
+ "common": "Niue"
+ },
+ "jpn": {
+ "official": "\u30cb\u30a6\u30a8",
+ "common": "\u30cb\u30a6\u30a8"
+ },
+ "kor": {
+ "official": "\ub2c8\uc6b0\uc5d0",
+ "common": "\ub2c8\uc6b0\uc5d0"
+ },
+ "nld": {
+ "official": "Niue",
+ "common": "Niue"
+ },
+ "per": {
+ "official": "\u0646\u06cc\u0648\u0648\u06cc",
+ "common": "\u0646\u06cc\u0648\u0648\u06cc"
+ },
+ "pol": {
+ "official": "Niue",
+ "common": "Niue"
+ },
+ "por": {
+ "official": "Niue",
+ "common": "Niue"
+ },
+ "rus": {
+ "official": "\u041d\u0438\u0443\u044d",
+ "common": "\u041d\u0438\u0443\u044d"
+ },
+ "slk": {
+ "official": "Niue",
+ "common": "Niue"
+ },
+ "spa": {
+ "official": "Niue",
+ "common": "Niue"
+ },
+ "srp": {
+ "official": "Nijue",
+ "common": "Nijue"
+ },
+ "swe": {
+ "official": "Niue",
+ "common": "Niue"
+ },
+ "tur": {
+ "official": "Niue",
+ "common": "Niue"
+ },
+ "urd": {
+ "official": "\u0646\u06cc\u0648\u0648\u06d2",
+ "common": "\u0646\u06cc\u0648\u0648\u06d2"
+ },
+ "zho": {
+ "official": "\u7ebd\u57c3",
+ "common": "\u7ebd\u57c3"
+ }
+ },
+ "latlng": [
+ -19.03333333,
+ -169.86666666
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 260,
+ "flag": "\ud83c\uddf3\ud83c\uddfa",
+ "demonyms": {
+ "eng": {
+ "f": "Niuean",
+ "m": "Niuean"
+ },
+ "fra": {
+ "f": "Niu\u00e9enne",
+ "m": "Niu\u00e9en"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Netherlands",
+ "official": "Kingdom of the Netherlands",
+ "native": {
+ "nld": {
+ "official": "Koninkrijk der Nederlanden",
+ "common": "Nederland"
+ }
+ }
+ },
+ "tld": [
+ ".nl"
+ ],
+ "cca2": "NL",
+ "ccn3": "528",
+ "cca3": "NLD",
+ "cioc": "NED",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "1"
+ ]
+ },
+ "capital": [
+ "Amsterdam"
+ ],
+ "altSpellings": [
+ "NL",
+ "Holland",
+ "Nederland",
+ "The Netherlands"
+ ],
+ "region": "Europe",
+ "subregion": "Western Europe",
+ "languages": {
+ "nld": "Dutch"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0647\u0648\u0644\u0646\u062f\u0627",
+ "common": "\u0647\u0648\u0644\u0646\u062f\u0627"
+ },
+ "bre": {
+ "official": "Rouantelezh an Izelvroio\u00f9",
+ "common": "Izelvroio\u00f9"
+ },
+ "ces": {
+ "official": "Nizozemsk\u00e9 kr\u00e1lovstv\u00ed",
+ "common": "Nizozemsko"
+ },
+ "deu": {
+ "official": "Niederlande",
+ "common": "Niederlande"
+ },
+ "est": {
+ "official": "Madalmaade Kuningriik",
+ "common": "Holland"
+ },
+ "fin": {
+ "official": "Alankomaat",
+ "common": "Alankomaat"
+ },
+ "fra": {
+ "official": "Pays-Bas",
+ "common": "Pays-Bas"
+ },
+ "hrv": {
+ "official": "Holandija",
+ "common": "Nizozemska"
+ },
+ "hun": {
+ "official": "Holland Kir\u00e1lys\u00e1g",
+ "common": "Hollandia"
+ },
+ "ita": {
+ "official": "Paesi Bassi",
+ "common": "Paesi Bassi"
+ },
+ "jpn": {
+ "official": "\u30aa\u30e9\u30f3\u30c0\u738b\u56fd",
+ "common": "\u30aa\u30e9\u30f3\u30c0"
+ },
+ "kor": {
+ "official": "\ub124\ub35c\ub780\ub4dc \uc655\uad6d",
+ "common": "\ub124\ub35c\ub780\ub4dc"
+ },
+ "nld": {
+ "official": "Nederland",
+ "common": "Nederland"
+ },
+ "per": {
+ "official": "\u0647\u0644\u0646\u062f",
+ "common": "\u0647\u0644\u0646\u062f"
+ },
+ "pol": {
+ "official": "Kr\u00f3lestwo Niderland\u00f3w",
+ "common": "Holandia"
+ },
+ "por": {
+ "official": "Holanda",
+ "common": "Holanda"
+ },
+ "rus": {
+ "official": "\u041d\u0438\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u044b",
+ "common": "\u041d\u0438\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u044b"
+ },
+ "slk": {
+ "official": "Holandsk\u00e9 kr\u00e1\u013eovstvo",
+ "common": "Holansko"
+ },
+ "spa": {
+ "official": "Pa\u00edses Bajos",
+ "common": "Pa\u00edses Bajos"
+ },
+ "srp": {
+ "official": "Kraljevina Holandija",
+ "common": "Holandija"
+ },
+ "swe": {
+ "official": "Nederl\u00e4nderna",
+ "common": "Nederl\u00e4nderna"
+ },
+ "tur": {
+ "official": "Hollanda Krall\u0131\u011f\u0131",
+ "common": "Hollanda"
+ },
+ "urd": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a\u0650 \u0646\u06cc\u062f\u0631\u0644\u06cc\u0646\u0688\u0632",
+ "common": "\u0646\u06cc\u062f\u0631\u0644\u06cc\u0646\u0688\u0632"
+ },
+ "zho": {
+ "official": "\u8377\u5170",
+ "common": "\u8377\u5170"
+ }
+ },
+ "latlng": [
+ 52.5,
+ 5.75
+ ],
+ "landlocked": false,
+ "borders": [
+ "BEL",
+ "DEU"
+ ],
+ "area": 41850,
+ "flag": "\ud83c\uddf3\ud83c\uddf1",
+ "demonyms": {
+ "eng": {
+ "f": "Dutch",
+ "m": "Dutch"
+ },
+ "fra": {
+ "f": "N\u00e9erlandaise",
+ "m": "N\u00e9erlandais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Norway",
+ "official": "Kingdom of Norway",
+ "native": {
+ "nno": {
+ "official": "Kongeriket Noreg",
+ "common": "Noreg"
+ },
+ "nob": {
+ "official": "Kongeriket Norge",
+ "common": "Norge"
+ },
+ "smi": {
+ "official": "Norgga gonagasriika",
+ "common": "Norgga"
+ }
+ }
+ },
+ "tld": [
+ ".no"
+ ],
+ "cca2": "NO",
+ "ccn3": "578",
+ "cca3": "NOR",
+ "cioc": "NOR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "NOK": {
+ "name": "Norwegian krone",
+ "symbol": "kr"
+ }
+ },
+ "idd": {
+ "root": "+4",
+ "suffixes": [
+ "7"
+ ]
+ },
+ "capital": [
+ "Oslo"
+ ],
+ "altSpellings": [
+ "NO",
+ "Norge",
+ "Noreg",
+ "Kingdom of Norway",
+ "Kongeriket Norge",
+ "Kongeriket Noreg"
+ ],
+ "region": "Europe",
+ "subregion": "Northern Europe",
+ "languages": {
+ "nno": "Norwegian Nynorsk",
+ "nob": "Norwegian Bokm\u00e5l",
+ "smi": "Sami"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0646\u0631\u0648\u064a\u062c",
+ "common": "\u0627\u0644\u0646\u0631\u0648\u064a\u062c"
+ },
+ "bre": {
+ "official": "Rouantelezh Norvegia",
+ "common": "Norvegia"
+ },
+ "ces": {
+ "official": "Norsk\u00e9 kr\u00e1lovstv\u00ed",
+ "common": "Norsko"
+ },
+ "deu": {
+ "official": "K\u00f6nigreich Norwegen",
+ "common": "Norwegen"
+ },
+ "est": {
+ "official": "Norra Kuningriik",
+ "common": "Norra"
+ },
+ "fin": {
+ "official": "Norjan kuningaskunta",
+ "common": "Norja"
+ },
+ "fra": {
+ "official": "Royaume de Norv\u00e8ge",
+ "common": "Norv\u00e8ge"
+ },
+ "hrv": {
+ "official": "Kraljevina Norve\u0161ka",
+ "common": "Norve\u0161ka"
+ },
+ "hun": {
+ "official": "Norv\u00e9g Kir\u00e1lys\u00e1g",
+ "common": "Norv\u00e9gia"
+ },
+ "ita": {
+ "official": "Regno di Norvegia",
+ "common": "Norvegia"
+ },
+ "jpn": {
+ "official": "\u30ce\u30eb\u30a6\u30a7\u30fc\u738b\u56fd",
+ "common": "\u30ce\u30eb\u30a6\u30a7\u30fc"
+ },
+ "kor": {
+ "official": "\ub178\ub974\uc6e8\uc774 \uc655\uad6d",
+ "common": "\ub178\ub974\uc6e8\uc774"
+ },
+ "nld": {
+ "official": "Koninkrijk Noorwegen",
+ "common": "Noorwegen"
+ },
+ "per": {
+ "official": "\u067e\u0627\u062f\u0634\u0627\u0647\u06cc \u0646\u0631\u0648\u0698",
+ "common": "\u0646\u0631\u0648\u0698"
+ },
+ "pol": {
+ "official": "Kr\u00f3lestwo Norwegii",
+ "common": "Norwegia"
+ },
+ "por": {
+ "official": "Reino da Noruega",
+ "common": "Noruega"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u0440\u043e\u043b\u0435\u0432\u0441\u0442\u0432\u043e \u041d\u043e\u0440\u0432\u0435\u0433\u0438\u044f",
+ "common": "\u041d\u043e\u0440\u0432\u0435\u0433\u0438\u044f"
+ },
+ "slk": {
+ "official": "N\u00f3rske kr\u00e1\u013eovstvo",
+ "common": "N\u00f3rsko"
+ },
+ "spa": {
+ "official": "Reino de Noruega",
+ "common": "Noruega"
+ },
+ "srp": {
+ "official": "Kraljevina Norve\u0161ka",
+ "common": "Norve\u0161ka"
+ },
+ "swe": {
+ "official": "Konungariket Norge",
+ "common": "Norge"
+ },
+ "tur": {
+ "official": "Norve\u00e7 Krall\u0131\u011f\u0131",
+ "common": "Norve\u00e7"
+ },
+ "urd": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a\u0650 \u0646\u0627\u0631\u0648\u06d2",
+ "common": "\u0646\u0627\u0631\u0648\u06d2"
+ },
+ "zho": {
+ "official": "\u632a\u5a01\u738b\u56fd",
+ "common": "\u632a\u5a01"
+ }
+ },
+ "latlng": [
+ 62,
+ 10
+ ],
+ "landlocked": false,
+ "borders": [
+ "FIN",
+ "SWE",
+ "RUS"
+ ],
+ "area": 323802,
+ "flag": "\ud83c\uddf3\ud83c\uddf4",
+ "demonyms": {
+ "eng": {
+ "f": "Norwegian",
+ "m": "Norwegian"
+ },
+ "fra": {
+ "f": "Norv\u00e9gienne",
+ "m": "Norv\u00e9gien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Nepal",
+ "official": "Federal Democratic Republic of Nepal",
+ "native": {
+ "nep": {
+ "official": "\u0928\u0947\u092a\u093e\u0932 \u0938\u0902\u0918\u0940\u092f \u0932\u094b\u0915\u0924\u093e\u0928\u094d\u0924\u094d\u0930\u093f\u0915 \u0917\u0923\u0924\u0928\u094d\u0924\u094d\u0930",
+ "common": "\u0928\u0947\u092a\u093e\u0932"
+ }
+ }
+ },
+ "tld": [
+ ".np"
+ ],
+ "cca2": "NP",
+ "ccn3": "524",
+ "cca3": "NPL",
+ "cioc": "NEP",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "NPR": {
+ "name": "Nepalese rupee",
+ "symbol": "\u20a8"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "77"
+ ]
+ },
+ "capital": [
+ "Kathmandu"
+ ],
+ "altSpellings": [
+ "NP",
+ "Federal Democratic Republic of Nepal",
+ "Lokt\u0101ntrik Ganatantra Nep\u0101l"
+ ],
+ "region": "Asia",
+ "subregion": "Southern Asia",
+ "languages": {
+ "nep": "Nepali"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0646\u064a\u0628\u0627\u0644 \u0627\u0644\u062f\u064a\u0645\u0642\u0631\u0627\u0637\u064a\u0629 \u0627\u0644\u0627\u062a\u062d\u0627\u062f\u064a\u0629",
+ "common": "\u0646\u064a\u0628\u0627\u0644"
+ },
+ "bre": {
+ "official": "Republik Demokratel Kevreadel Nepal",
+ "common": "Nepal"
+ },
+ "ces": {
+ "official": "Federativn\u00ed demokratick\u00e1 republika Nep\u00e1l",
+ "common": "Nep\u00e1l"
+ },
+ "deu": {
+ "official": "Demokratische Bundesrepublik Nepal",
+ "common": "Nepal"
+ },
+ "est": {
+ "official": "Nepali Demokraatlik Liitvabariik",
+ "common": "Nepal"
+ },
+ "fin": {
+ "official": "Nepalin demokraattinen liittotasavalta",
+ "common": "Nepal"
+ },
+ "fra": {
+ "official": "R\u00e9publique du N\u00e9pal",
+ "common": "N\u00e9pal"
+ },
+ "hrv": {
+ "official": "Savezna Demokratska Republika Nepal",
+ "common": "Nepal"
+ },
+ "hun": {
+ "official": "Nep\u00e1li Sz\u00f6vets\u00e9gi Demokratikus K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Nep\u00e1l"
+ },
+ "ita": {
+ "official": "Repubblica federale democratica del Nepal",
+ "common": "Nepal"
+ },
+ "jpn": {
+ "official": "\u30cd\u30d1\u30fc\u30eb\u9023\u90a6\u6c11\u4e3b\u5171\u548c\u56fd",
+ "common": "\u30cd\u30d1\u30fc\u30eb"
+ },
+ "kor": {
+ "official": "\ub124\ud314 \uc5f0\ubc29 \ubbfc\uc8fc \uacf5\ud654\uad6d",
+ "common": "\ub124\ud314"
+ },
+ "nld": {
+ "official": "Federale Democratische Republiek Nepal",
+ "common": "Nepal"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0641\u062f\u0631\u0627\u0644 \u062f\u0645\u0648\u06a9\u0631\u0627\u062a\u06cc\u06a9 \u0646\u067e\u0627\u0644",
+ "common": "\u0646\u067e\u0627\u0644"
+ },
+ "pol": {
+ "official": "Federalna Demokratyczna Republika Nepalu",
+ "common": "Nepal"
+ },
+ "por": {
+ "official": "Rep\u00fablica Democr\u00e1tica Federal do Nepal",
+ "common": "Nepal"
+ },
+ "rus": {
+ "official": "\u0424\u0435\u0434\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430\u044f \u0414\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041d\u0435\u043f\u0430\u043b",
+ "common": "\u041d\u0435\u043f\u0430\u043b"
+ },
+ "slk": {
+ "official": "Nep\u00e1lska federat\u00edvna demokratick\u00e1 republika",
+ "common": "Nep\u00e1l"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Democr\u00e1tica Federal de Nepal",
+ "common": "Nepal"
+ },
+ "srp": {
+ "official": "Savezna Demokratska Republika Nepal",
+ "common": "Nepal"
+ },
+ "swe": {
+ "official": "Demokratiska f\u00f6rbundsrepubliken Nepal",
+ "common": "Nepal"
+ },
+ "tur": {
+ "official": "Nepal Federal Demokratik Cumhuriyeti",
+ "common": "Nepal"
+ },
+ "urd": {
+ "official": "\u0648\u0641\u0627\u0642\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0646\u06cc\u067e\u0627\u0644",
+ "common": "\u0646\u06cc\u067e\u0627\u0644"
+ },
+ "zho": {
+ "official": "\u5c3c\u6cca\u5c14\u8054\u90a6\u6c11\u4e3b\u5171\u548c\u56fd",
+ "common": "\u5c3c\u6cca\u5c14"
+ }
+ },
+ "latlng": [
+ 28,
+ 84
+ ],
+ "landlocked": true,
+ "borders": [
+ "CHN",
+ "IND"
+ ],
+ "area": 147181,
+ "flag": "\ud83c\uddf3\ud83c\uddf5",
+ "demonyms": {
+ "eng": {
+ "f": "Nepalese",
+ "m": "Nepalese"
+ },
+ "fra": {
+ "f": "N\u00e9palaise",
+ "m": "N\u00e9palais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Nauru",
+ "official": "Republic of Nauru",
+ "native": {
+ "eng": {
+ "official": "Republic of Nauru",
+ "common": "Nauru"
+ },
+ "nau": {
+ "official": "Republic of Nauru",
+ "common": "Nauru"
+ }
+ }
+ },
+ "tld": [
+ ".nr"
+ ],
+ "cca2": "NR",
+ "ccn3": "520",
+ "cca3": "NRU",
+ "cioc": "NRU",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "AUD": {
+ "name": "Australian dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "74"
+ ]
+ },
+ "capital": [
+ "Yaren"
+ ],
+ "altSpellings": [
+ "NR",
+ "Naoero",
+ "Pleasant Island",
+ "Republic of Nauru",
+ "Ripublik Naoero"
+ ],
+ "region": "Oceania",
+ "subregion": "Micronesia",
+ "languages": {
+ "eng": "English",
+ "nau": "Nauru"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0646\u0627\u0648\u0631\u0648",
+ "common": "\u0646\u0627\u0648\u0631\u0648"
+ },
+ "bre": {
+ "official": "Republik Nauru",
+ "common": "Nauru"
+ },
+ "ces": {
+ "official": "Republika Nauru",
+ "common": "Nauru"
+ },
+ "deu": {
+ "official": "Republik Nauru",
+ "common": "Nauru"
+ },
+ "est": {
+ "official": "Nauru Vabariik",
+ "common": "Nauru"
+ },
+ "fin": {
+ "official": "Naurun tasavalta",
+ "common": "Nauru"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Nauru",
+ "common": "Nauru"
+ },
+ "hrv": {
+ "official": "Republika Nauru",
+ "common": "Nauru"
+ },
+ "hun": {
+ "official": "Naurui K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Nauru"
+ },
+ "ita": {
+ "official": "Repubblica di Nauru",
+ "common": "Nauru"
+ },
+ "jpn": {
+ "official": "\u30ca\u30a6\u30eb\u5171\u548c\u56fd",
+ "common": "\u30ca\u30a6\u30eb"
+ },
+ "kor": {
+ "official": "\ub098\uc6b0\ub8e8 \uacf5\ud654\uad6d",
+ "common": "\ub098\uc6b0\ub8e8"
+ },
+ "nld": {
+ "official": "Republiek Nauru",
+ "common": "Nauru"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0646\u0627\u0626\u0648\u0631\u0648",
+ "common": "\u0646\u0627\u0626\u0648\u0631\u0648"
+ },
+ "pol": {
+ "official": "Republika Nauru",
+ "common": "Nauru"
+ },
+ "por": {
+ "official": "Rep\u00fablica de Nauru",
+ "common": "Nauru"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041d\u0430\u0443\u0440\u0443",
+ "common": "\u041d\u0430\u0443\u0440\u0443"
+ },
+ "slk": {
+ "official": "Naursk\u00e1 republika",
+ "common": "Nauru"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Nauru",
+ "common": "Nauru"
+ },
+ "srp": {
+ "official": "Republika Nauru",
+ "common": "Nauru"
+ },
+ "swe": {
+ "official": "Republiken Nauru",
+ "common": "Nauru"
+ },
+ "tur": {
+ "official": "Nauru Cumhuriyeti",
+ "common": "Nauru"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0646\u0627\u0648\u0631\u0648",
+ "common": "\u0646\u0627\u0648\u0631\u0648"
+ },
+ "zho": {
+ "official": "\u7459\u9c81\u5171\u548c\u56fd",
+ "common": "\u7459\u9c81"
+ }
+ },
+ "latlng": [
+ -0.53333333,
+ 166.91666666
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 21,
+ "flag": "\ud83c\uddf3\ud83c\uddf7",
+ "demonyms": {
+ "eng": {
+ "f": "Nauruan",
+ "m": "Nauruan"
+ },
+ "fra": {
+ "f": "Nauruane",
+ "m": "Nauruan"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "New Zealand",
+ "official": "New Zealand",
+ "native": {
+ "eng": {
+ "official": "New Zealand",
+ "common": "New Zealand"
+ },
+ "mri": {
+ "official": "Aotearoa",
+ "common": "Aotearoa"
+ },
+ "nzs": {
+ "official": "New Zealand",
+ "common": "New Zealand"
+ }
+ }
+ },
+ "tld": [
+ ".nz"
+ ],
+ "cca2": "NZ",
+ "ccn3": "554",
+ "cca3": "NZL",
+ "cioc": "NZL",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "NZD": {
+ "name": "New Zealand dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "4"
+ ]
+ },
+ "capital": [
+ "Wellington"
+ ],
+ "altSpellings": [
+ "NZ",
+ "Aotearoa"
+ ],
+ "region": "Oceania",
+ "subregion": "Australia and New Zealand",
+ "languages": {
+ "eng": "English",
+ "mri": "M\u0101ori",
+ "nzs": "New Zealand Sign Language"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0646\u064a\u0648\u0632\u064a\u0644\u0646\u062f\u0627",
+ "common": "\u0646\u064a\u0648\u0632\u064a\u0644\u0646\u062f\u0627"
+ },
+ "bre": {
+ "official": "Zeland-Nevez",
+ "common": "Zeland-Nevez"
+ },
+ "ces": {
+ "official": "Nov\u00fd Z\u00e9land",
+ "common": "Nov\u00fd Z\u00e9land"
+ },
+ "deu": {
+ "official": "Neuseeland",
+ "common": "Neuseeland"
+ },
+ "est": {
+ "official": "Uus-Meremaa",
+ "common": "Uus-Meremaa"
+ },
+ "fin": {
+ "official": "Uusi-Seelanti",
+ "common": "Uusi-Seelanti"
+ },
+ "fra": {
+ "official": "Nouvelle-Z\u00e9lande",
+ "common": "Nouvelle-Z\u00e9lande"
+ },
+ "hrv": {
+ "official": "Novi Zeland",
+ "common": "Novi Zeland"
+ },
+ "hun": {
+ "official": "\u00daj-Z\u00e9land",
+ "common": "\u00daj-Z\u00e9land"
+ },
+ "ita": {
+ "official": "Nuova Zelanda",
+ "common": "Nuova Zelanda"
+ },
+ "jpn": {
+ "official": "\u30cb\u30e5\u30fc\u30b8\u30fc\u30e9\u30f3\u30c9",
+ "common": "\u30cb\u30e5\u30fc\u30b8\u30fc\u30e9\u30f3\u30c9"
+ },
+ "kor": {
+ "official": "\ub274\uc9c8\ub79c\ub4dc",
+ "common": "\ub274\uc9c8\ub79c\ub4dc"
+ },
+ "nld": {
+ "official": "Nieuw Zeeland",
+ "common": "Nieuw-Zeeland"
+ },
+ "per": {
+ "official": "\u0646\u06cc\u0648\u0632\u06cc\u0644\u0646\u062f",
+ "common": "\u0646\u06cc\u0648\u0632\u06cc\u0644\u0646\u062f"
+ },
+ "pol": {
+ "official": "Nowa Zelandia",
+ "common": "Nowa Zelandia"
+ },
+ "por": {
+ "official": "nova Zel\u00e2ndia",
+ "common": "Nova Zel\u00e2ndia"
+ },
+ "rus": {
+ "official": "\u041d\u043e\u0432\u0430\u044f \u0417\u0435\u043b\u0430\u043d\u0434\u0438\u044f",
+ "common": "\u041d\u043e\u0432\u0430\u044f \u0417\u0435\u043b\u0430\u043d\u0434\u0438\u044f"
+ },
+ "slk": {
+ "official": "Nov\u00fd Z\u00e9land",
+ "common": "Nov\u00fd Z\u00e9land"
+ },
+ "spa": {
+ "official": "nueva Zelanda",
+ "common": "Nueva Zelanda"
+ },
+ "srp": {
+ "official": "Novi Zeland",
+ "common": "Novi Zeland"
+ },
+ "swe": {
+ "official": "Nya Zeeland",
+ "common": "Nya Zeeland"
+ },
+ "tur": {
+ "official": "Yeni Zelanda",
+ "common": "Yeni Zelanda"
+ },
+ "urd": {
+ "official": "\u0646\u06cc\u0648\u0632\u06cc \u0644\u06cc\u0646\u0688",
+ "common": "\u0646\u06cc\u0648\u0632\u06cc \u0644\u06cc\u0646\u0688"
+ },
+ "zho": {
+ "official": "\u65b0\u897f\u5170",
+ "common": "\u65b0\u897f\u5170"
+ }
+ },
+ "latlng": [
+ -41,
+ 174
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 270467,
+ "flag": "\ud83c\uddf3\ud83c\uddff",
+ "demonyms": {
+ "eng": {
+ "f": "New Zealander",
+ "m": "New Zealander"
+ },
+ "fra": {
+ "f": "Neo-Z\u00e9landaise",
+ "m": "Neo-Z\u00e9landais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Oman",
+ "official": "Sultanate of Oman",
+ "native": {
+ "ara": {
+ "official": "\u0633\u0644\u0637\u0646\u0629 \u0639\u0645\u0627\u0646",
+ "common": "\u0639\u0645\u0627\u0646"
+ }
+ }
+ },
+ "tld": [
+ ".om"
+ ],
+ "cca2": "OM",
+ "ccn3": "512",
+ "cca3": "OMN",
+ "cioc": "OMA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "OMR": {
+ "name": "Omani rial",
+ "symbol": "\u0631.\u0639."
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "68"
+ ]
+ },
+ "capital": [
+ "Muscat"
+ ],
+ "altSpellings": [
+ "OM",
+ "Sultanate of Oman",
+ "Sal\u1e6danat \u02bbUm\u0101n"
+ ],
+ "region": "Asia",
+ "subregion": "Western Asia",
+ "languages": {
+ "ara": "Arabic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0633\u0644\u0637\u0646\u0629 \u0639\u0645\u0627\u0646",
+ "common": "\u0639\u0645\u0627\u0646"
+ },
+ "bre": {
+ "official": "Sultanelezh Oman",
+ "common": "Oman"
+ },
+ "ces": {
+ "official": "Sultan\u00e1t Om\u00e1n",
+ "common": "Om\u00e1n"
+ },
+ "deu": {
+ "official": "Sultanat Oman",
+ "common": "Oman"
+ },
+ "est": {
+ "official": "Omaani Sultaniriik",
+ "common": "Omaan"
+ },
+ "fin": {
+ "official": "Omanin sulttaanikunta",
+ "common": "Oman"
+ },
+ "fra": {
+ "official": "Sultanat d'Oman",
+ "common": "Oman"
+ },
+ "hrv": {
+ "official": "Sultanat Oman",
+ "common": "Oman"
+ },
+ "hun": {
+ "official": "Om\u00e1ni Szultan\u00e1tus",
+ "common": "Om\u00e1n"
+ },
+ "ita": {
+ "official": "Sultanato dell'Oman",
+ "common": "oman"
+ },
+ "jpn": {
+ "official": "\u30aa\u30de\u30fc\u30f3\u56fd",
+ "common": "\u30aa\u30de\u30fc\u30f3"
+ },
+ "kor": {
+ "official": "\uc624\ub9cc \uc220\ud0c4\uad6d",
+ "common": "\uc624\ub9cc"
+ },
+ "nld": {
+ "official": "Sultanaat van Oman",
+ "common": "Oman"
+ },
+ "per": {
+ "official": "\u0633\u0644\u0637\u0627\u0646\u200c\u0646\u0634\u06cc\u0646 \u0639\u064f\u0645\u0627\u0646",
+ "common": "\u0639\u0645\u0627\u0646"
+ },
+ "pol": {
+ "official": "Su\u0142tanat Omanu",
+ "common": "Oman"
+ },
+ "por": {
+ "official": "Sultanato de Om\u00e3",
+ "common": "Om\u00e3"
+ },
+ "rus": {
+ "official": "\u0421\u0443\u043b\u0442\u0430\u043d\u0430\u0442 \u041e\u043c\u0430\u043d",
+ "common": "\u041e\u043c\u0430\u043d"
+ },
+ "slk": {
+ "official": "Om\u00e1nsky sultan\u00e1t",
+ "common": "Om\u00e1n"
+ },
+ "spa": {
+ "official": "Sultanato de Om\u00e1n",
+ "common": "Om\u00e1n"
+ },
+ "srp": {
+ "official": "Sultanat Oman",
+ "common": "Oman"
+ },
+ "swe": {
+ "official": "Sultanatet Oman",
+ "common": "Oman"
+ },
+ "tur": {
+ "official": "Umman Sultanl\u0131\u011f\u0131",
+ "common": "Umman"
+ },
+ "urd": {
+ "official": "\u0633\u0644\u0637\u0646\u062a \u0639\u0645\u0627\u0646",
+ "common": "\u0639\u0645\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u963f\u66fc\u82cf\u4e39\u56fd",
+ "common": "\u963f\u66fc"
+ }
+ },
+ "latlng": [
+ 21,
+ 57
+ ],
+ "landlocked": false,
+ "borders": [
+ "SAU",
+ "ARE",
+ "YEM"
+ ],
+ "area": 309500,
+ "flag": "\ud83c\uddf4\ud83c\uddf2",
+ "demonyms": {
+ "eng": {
+ "f": "Omani",
+ "m": "Omani"
+ },
+ "fra": {
+ "f": "Omanaise",
+ "m": "Omanais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Pakistan",
+ "official": "Islamic Republic of Pakistan",
+ "native": {
+ "eng": {
+ "official": "Islamic Republic of Pakistan",
+ "common": "Pakistan"
+ },
+ "urd": {
+ "official": "\u0627\u0633\u0644\u0627\u0645\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c2 \u067e\u0627\u0643\u0633\u062a\u0627\u0646",
+ "common": "\u067e\u0627\u0643\u0633\u062a\u0627\u0646"
+ }
+ }
+ },
+ "tld": [
+ ".pk"
+ ],
+ "cca2": "PK",
+ "ccn3": "586",
+ "cca3": "PAK",
+ "cioc": "PAK",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "PKR": {
+ "name": "Pakistani rupee",
+ "symbol": "\u20a8"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "2"
+ ]
+ },
+ "capital": [
+ "Islamabad"
+ ],
+ "altSpellings": [
+ "PK",
+ "P\u0101kist\u0101n",
+ "Islamic Republic of Pakistan",
+ "Isl\u0101m\u012b Jumh\u016briya'eh P\u0101kist\u0101n"
+ ],
+ "region": "Asia",
+ "subregion": "Southern Asia",
+ "languages": {
+ "eng": "English",
+ "urd": "Urdu"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0628\u0627\u0643\u0633\u062a\u0627\u0646 \u0627\u0644\u0625\u0633\u0644\u0627\u0645\u064a\u0629",
+ "common": "\u0628\u0627\u0643\u0633\u062a\u0627\u0646"
+ },
+ "bre": {
+ "official": "Republik islamek Pakistan",
+ "common": "Pakistan"
+ },
+ "ces": {
+ "official": "P\u00e1kist\u00e1nsk\u00e1 isl\u00e1msk\u00e1 republika",
+ "common": "P\u00e1kist\u00e1n"
+ },
+ "deu": {
+ "official": "Islamische Republik Pakistan",
+ "common": "Pakistan"
+ },
+ "est": {
+ "official": "Pakistani Islamivabariik",
+ "common": "Pakistan"
+ },
+ "fin": {
+ "official": "Pakistanin islamilainen tasavalta",
+ "common": "Pakistan"
+ },
+ "fra": {
+ "official": "R\u00e9publique islamique du Pakistan",
+ "common": "Pakistan"
+ },
+ "hrv": {
+ "official": "Islamska Republika Pakistan",
+ "common": "Pakistan"
+ },
+ "hun": {
+ "official": "Pakiszt\u00e1n",
+ "common": "Pakiszt\u00e1n"
+ },
+ "ita": {
+ "official": "Repubblica islamica del Pakistan",
+ "common": "Pakistan"
+ },
+ "jpn": {
+ "official": "\u30d1\u30ad\u30b9\u30bf\u30f3\u30fb\u30a4\u30b9\u30e9\u30e0\u5171\u548c\u56fd",
+ "common": "\u30d1\u30ad\u30b9\u30bf\u30f3"
+ },
+ "kor": {
+ "official": "\ud30c\ud0a4\uc2a4\ud0c4 \uc774\uc2ac\ub78c \uacf5\ud654\uad6d",
+ "common": "\ud30c\ud0a4\uc2a4\ud0c4"
+ },
+ "nld": {
+ "official": "Islamitische Republiek Pakistan",
+ "common": "Pakistan"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0633\u0644\u0627\u0645\u06cc \u067e\u0627\u06a9\u0633\u062a\u0627\u0646",
+ "common": "\u067e\u0627\u06a9\u0633\u062a\u0627\u0646"
+ },
+ "pol": {
+ "official": "Islamska Republika Pakistanu",
+ "common": "Pakistan"
+ },
+ "por": {
+ "official": "Rep\u00fablica Isl\u00e2mica do Paquist\u00e3o",
+ "common": "Paquist\u00e3o"
+ },
+ "rus": {
+ "official": "\u0418\u0441\u043b\u0430\u043c\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041f\u0430\u043a\u0438\u0441\u0442\u0430\u043d",
+ "common": "\u041f\u0430\u043a\u0438\u0441\u0442\u0430\u043d"
+ },
+ "slk": {
+ "official": "Pakistansk\u00e1 islamsk\u00e1 republika",
+ "common": "Pakistan"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Isl\u00e1mica de Pakist\u00e1n",
+ "common": "Pakist\u00e1n"
+ },
+ "srp": {
+ "official": "Islamska Republika Pakistan",
+ "common": "Pakistan"
+ },
+ "swe": {
+ "official": "Islamiska republiken Pakistan",
+ "common": "Pakistan"
+ },
+ "tur": {
+ "official": "Pakistan \u0130slam Cumhuriyeti",
+ "common": "Pakistan"
+ },
+ "urd": {
+ "official": "\u0627\u0633\u0644\u0627\u0645\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u067e\u0627\u06a9\u0633\u062a\u0627\u0646",
+ "common": "\u067e\u0627\u06a9\u0633\u062a\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u5df4\u57fa\u65af\u5766\u4f0a\u65af\u5170\u5171\u548c\u56fd",
+ "common": "\u5df4\u57fa\u65af\u5766"
+ }
+ },
+ "latlng": [
+ 30,
+ 70
+ ],
+ "landlocked": false,
+ "borders": [
+ "AFG",
+ "CHN",
+ "IND",
+ "IRN"
+ ],
+ "area": 881912,
+ "flag": "\ud83c\uddf5\ud83c\uddf0",
+ "demonyms": {
+ "eng": {
+ "f": "Pakistani",
+ "m": "Pakistani"
+ },
+ "fra": {
+ "f": "Pakistanaise",
+ "m": "Pakistanais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Panama",
+ "official": "Republic of Panama",
+ "native": {
+ "spa": {
+ "official": "Rep\u00fablica de Panam\u00e1",
+ "common": "Panam\u00e1"
+ }
+ }
+ },
+ "tld": [
+ ".pa"
+ ],
+ "cca2": "PA",
+ "ccn3": "591",
+ "cca3": "PAN",
+ "cioc": "PAN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "PAB": {
+ "name": "Panamanian balboa",
+ "symbol": "B\/."
+ },
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "07"
+ ]
+ },
+ "capital": [
+ "Panama City"
+ ],
+ "altSpellings": [
+ "PA",
+ "Republic of Panama",
+ "Rep\u00fablica de Panam\u00e1"
+ ],
+ "region": "Americas",
+ "subregion": "Central America",
+ "languages": {
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0628\u0646\u0645\u0627",
+ "common": "\u0628\u0646\u0645\u0627"
+ },
+ "bre": {
+ "official": "Republik Panama",
+ "common": "Panama"
+ },
+ "ces": {
+ "official": "Panamsk\u00e1 republika",
+ "common": "Panama"
+ },
+ "deu": {
+ "official": "Republik Panama",
+ "common": "Panama"
+ },
+ "est": {
+ "official": "Panama Vabariik",
+ "common": "Panama"
+ },
+ "fin": {
+ "official": "Panaman tasavalta",
+ "common": "Panama"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Panama",
+ "common": "Panama"
+ },
+ "hrv": {
+ "official": "Republika Panama",
+ "common": "Panama"
+ },
+ "hun": {
+ "official": "Panamai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Panama"
+ },
+ "ita": {
+ "official": "Repubblica di Panama",
+ "common": "Panama"
+ },
+ "jpn": {
+ "official": "\u30d1\u30ca\u30de\u5171\u548c\u56fd",
+ "common": "\u30d1\u30ca\u30de"
+ },
+ "kor": {
+ "official": "\ud30c\ub098\ub9c8 \uacf5\ud654\uad6d",
+ "common": "\ud30c\ub098\ub9c8"
+ },
+ "nld": {
+ "official": "Republiek Panama",
+ "common": "Panama"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u067e\u0627\u0646\u0627\u0645\u0627",
+ "common": "\u067e\u0627\u0646\u0627\u0645\u0627"
+ },
+ "pol": {
+ "official": "Republika Panamy",
+ "common": "Panama"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Panam\u00e1",
+ "common": "Panam\u00e1"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041f\u0430\u043d\u0430\u043c\u0430",
+ "common": "\u041f\u0430\u043d\u0430\u043c\u0430"
+ },
+ "slk": {
+ "official": "Panamsk\u00e1 republika",
+ "common": "Panama"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Panam\u00e1",
+ "common": "Panam\u00e1"
+ },
+ "srp": {
+ "official": "Republika Panama",
+ "common": "Panama"
+ },
+ "swe": {
+ "official": "Republiken Panama",
+ "common": "Panama"
+ },
+ "tur": {
+ "official": "Panama Cumhuriyeti",
+ "common": "Panama"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u067e\u0627\u0646\u0627\u0645\u0627",
+ "common": "\u067e\u0627\u0646\u0627\u0645\u0627"
+ },
+ "zho": {
+ "official": "\u5df4\u62ff\u9a6c\u5171\u548c\u56fd",
+ "common": "\u5df4\u62ff\u9a6c"
+ }
+ },
+ "latlng": [
+ 9,
+ -80
+ ],
+ "landlocked": false,
+ "borders": [
+ "COL",
+ "CRI"
+ ],
+ "area": 75417,
+ "flag": "\ud83c\uddf5\ud83c\udde6",
+ "demonyms": {
+ "eng": {
+ "f": "Panamanian",
+ "m": "Panamanian"
+ },
+ "fra": {
+ "f": "Panam\u00e9enne",
+ "m": "Panam\u00e9en"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Pitcairn Islands",
+ "official": "Pitcairn Group of Islands",
+ "native": {
+ "eng": {
+ "official": "Pitcairn Group of Islands",
+ "common": "Pitcairn Islands"
+ }
+ }
+ },
+ "tld": [
+ ".pn"
+ ],
+ "cca2": "PN",
+ "ccn3": "612",
+ "cca3": "PCN",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "NZD": {
+ "name": "New Zealand dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "4"
+ ]
+ },
+ "capital": [
+ "Adamstown"
+ ],
+ "altSpellings": [
+ "PN",
+ "Pitcairn",
+ "Pitcairn Henderson Ducie and Oeno Islands"
+ ],
+ "region": "Oceania",
+ "subregion": "Polynesia",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0632\u0631 \u0628\u064a\u062a\u0643\u064a\u0631\u0646",
+ "common": "\u062c\u0632\u0631 \u0628\u064a\u062a\u0643\u064a\u0631\u0646"
+ },
+ "bre": {
+ "official": "Inizi Pitcairn, Henderson, Ducie hag Oeno",
+ "common": "Inizi Pitcairn"
+ },
+ "ces": {
+ "official": "Pitcairnovy ostrovy",
+ "common": "Pitcairnovy ostrovy"
+ },
+ "deu": {
+ "official": "Pitcairninseln",
+ "common": "Pitcairninseln"
+ },
+ "est": {
+ "official": "Pitcairni, Hendersoni, Ducie ja Oeno saar",
+ "common": "Pitcairn"
+ },
+ "fin": {
+ "official": "Pitcairn",
+ "common": "Pitcairn"
+ },
+ "fra": {
+ "official": "Groupe d'\u00eeles Pitcairn",
+ "common": "\u00celes Pitcairn"
+ },
+ "hrv": {
+ "official": "Pitcairn skupine otoka",
+ "common": "Pitcairnovo oto\u010dje"
+ },
+ "hun": {
+ "official": "Pitcairn-szigetek",
+ "common": "Pitcairn-szigetek"
+ },
+ "ita": {
+ "official": "Pitcairn gruppo di isole",
+ "common": "Isole Pitcairn"
+ },
+ "jpn": {
+ "official": "\u30d4\u30c8\u30b1\u30a2\u30f3\u8af8\u5cf6",
+ "common": "\u30d4\u30c8\u30b1\u30a2\u30f3\u8af8\u5cf6"
+ },
+ "kor": {
+ "official": "\ud54f\ucf00\uc5b8 \uc81c\ub3c4",
+ "common": "\ud54f\ucf00\uc5b8 \uc81c\ub3c4"
+ },
+ "nld": {
+ "official": "Pitcairn groep eilanden",
+ "common": "Pitcairneilanden"
+ },
+ "per": {
+ "official": "\u062c\u0632\u0627\u06cc\u0631 \u067e\u06cc\u062a\u200c\u06a9\u0631\u0646",
+ "common": "\u062c\u0632\u0627\u06cc\u0631 \u067e\u06cc\u062a\u200c\u06a9\u0631\u0646"
+ },
+ "pol": {
+ "official": "Wyspy Pitcairn, Henderson, Ducie i Oeno",
+ "common": "Pitcairn"
+ },
+ "por": {
+ "official": "Pitcairn grupo de ilhas",
+ "common": "Ilhas Pitcairn"
+ },
+ "rus": {
+ "official": "\u041f\u0438\u0442\u043a\u044d\u0440\u043d \u0433\u0440\u0443\u043f\u043f\u0430 \u043e\u0441\u0442\u0440\u043e\u0432\u043e\u0432",
+ "common": "\u041e\u0441\u0442\u0440\u043e\u0432\u0430 \u041f\u0438\u0442\u043a\u044d\u0440\u043d"
+ },
+ "slk": {
+ "official": "Pitcairnove ostrovy",
+ "common": "Pitcairnove ostrovy"
+ },
+ "spa": {
+ "official": "Grupo de Islas Pitcairn",
+ "common": "Islas Pitcairn"
+ },
+ "srp": {
+ "official": "Grupa Ostrva Pitkern",
+ "common": "Ostrva Pitkern"
+ },
+ "swe": {
+ "official": "Pitcairn\u00f6arna",
+ "common": "Pitcairn\u00f6arna"
+ },
+ "tur": {
+ "official": "Pitcairn, Henderson, Ducie ve Oeno Adalar\u0131",
+ "common": "Pitcairn Adalar\u0131"
+ },
+ "urd": {
+ "official": "\u067e\u0679\u06a9\u06cc\u0631\u0646 \u062c\u0632\u0627\u0626\u0631",
+ "common": "\u062c\u0632\u0627\u0626\u0631 \u067e\u0679\u06a9\u06cc\u0631\u0646"
+ },
+ "zho": {
+ "official": "\u76ae\u7279\u51ef\u6069\u7fa4\u5c9b",
+ "common": "\u76ae\u7279\u51ef\u6069\u7fa4\u5c9b"
+ }
+ },
+ "latlng": [
+ -25.06666666,
+ -130.1
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 47,
+ "flag": "\ud83c\uddf5\ud83c\uddf3",
+ "demonyms": {
+ "eng": {
+ "f": "Pitcairn Islander",
+ "m": "Pitcairn Islander"
+ },
+ "fra": {
+ "f": "Pitcairnaise",
+ "m": "Pitcairnais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Peru",
+ "official": "Republic of Peru",
+ "native": {
+ "aym": {
+ "official": "Piruw Suyu",
+ "common": "Piruw"
+ },
+ "que": {
+ "official": "Piruw Ripuwlika",
+ "common": "Piruw"
+ },
+ "spa": {
+ "official": "Rep\u00fablica del Per\u00fa",
+ "common": "Per\u00fa"
+ }
+ }
+ },
+ "tld": [
+ ".pe"
+ ],
+ "cca2": "PE",
+ "ccn3": "604",
+ "cca3": "PER",
+ "cioc": "PER",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "PEN": {
+ "name": "Peruvian sol",
+ "symbol": "S\/."
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "1"
+ ]
+ },
+ "capital": [
+ "Lima"
+ ],
+ "altSpellings": [
+ "PE",
+ "Republic of Peru",
+ "Rep\u00fablica del Per\u00fa"
+ ],
+ "region": "Americas",
+ "subregion": "South America",
+ "languages": {
+ "aym": "Aymara",
+ "que": "Quechua",
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0628\u064a\u0631\u0648",
+ "common": "\u0628\u064a\u0631\u0648"
+ },
+ "bre": {
+ "official": "Republik Perou",
+ "common": "Perou"
+ },
+ "ces": {
+ "official": "Peru\u00e1nsk\u00e1 republika",
+ "common": "Peru"
+ },
+ "deu": {
+ "official": "Republik Peru",
+ "common": "Peru"
+ },
+ "est": {
+ "official": "Peruu Vabariik",
+ "common": "Peruu"
+ },
+ "fin": {
+ "official": "Perun tasavalta",
+ "common": "Peru"
+ },
+ "fra": {
+ "official": "R\u00e9publique du P\u00e9rou",
+ "common": "P\u00e9rou"
+ },
+ "hrv": {
+ "official": "Republika Peru",
+ "common": "Peru"
+ },
+ "hun": {
+ "official": "Perui K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Peru"
+ },
+ "ita": {
+ "official": "Repubblica del Per\u00f9",
+ "common": "Per\u00f9"
+ },
+ "jpn": {
+ "official": "\u30da\u30eb\u30fc\u5171\u548c\u56fd",
+ "common": "\u30da\u30eb\u30fc"
+ },
+ "kor": {
+ "official": "\ud398\ub8e8 \uacf5\ud654\uad6d",
+ "common": "\ud398\ub8e8"
+ },
+ "nld": {
+ "official": "Republiek Peru",
+ "common": "Peru"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u067e\u0631\u0648",
+ "common": "\u067e\u0631\u0648"
+ },
+ "pol": {
+ "official": "Republika Peru",
+ "common": "Peru"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Peru",
+ "common": "Per\u00fa"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041f\u0435\u0440\u0443",
+ "common": "\u041f\u0435\u0440\u0443"
+ },
+ "slk": {
+ "official": "Peru\u00e1nska republika",
+ "common": "Peru"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Per\u00fa",
+ "common": "Per\u00fa"
+ },
+ "srp": {
+ "official": "Republika Peru",
+ "common": "Peru"
+ },
+ "swe": {
+ "official": "Republiken Peru",
+ "common": "Peru"
+ },
+ "tur": {
+ "official": "Peru Cumhuriyeti",
+ "common": "Peru"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u067e\u06cc\u0631\u0648",
+ "common": "\u067e\u06cc\u0631\u0648"
+ },
+ "zho": {
+ "official": "\u79d8\u9c81\u5171\u548c\u56fd",
+ "common": "\u79d8\u9c81"
+ }
+ },
+ "latlng": [
+ -10,
+ -76
+ ],
+ "landlocked": false,
+ "borders": [
+ "BOL",
+ "BRA",
+ "CHL",
+ "COL",
+ "ECU"
+ ],
+ "area": 1285216,
+ "flag": "\ud83c\uddf5\ud83c\uddea",
+ "demonyms": {
+ "eng": {
+ "f": "Peruvian",
+ "m": "Peruvian"
+ },
+ "fra": {
+ "f": "P\u00e9ruvienne",
+ "m": "P\u00e9ruvien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Philippines",
+ "official": "Republic of the Philippines",
+ "native": {
+ "eng": {
+ "official": "Republic of the Philippines",
+ "common": "Philippines"
+ },
+ "fil": {
+ "official": "Republic of the Philippines",
+ "common": "Pilipinas"
+ }
+ }
+ },
+ "tld": [
+ ".ph"
+ ],
+ "cca2": "PH",
+ "ccn3": "608",
+ "cca3": "PHL",
+ "cioc": "PHI",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "PHP": {
+ "name": "Philippine peso",
+ "symbol": "\u20b1"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "3"
+ ]
+ },
+ "capital": [
+ "Manila"
+ ],
+ "altSpellings": [
+ "PH",
+ "Republic of the Philippines",
+ "Rep\u00fablika ng Pilipinas"
+ ],
+ "region": "Asia",
+ "subregion": "South-Eastern Asia",
+ "languages": {
+ "eng": "English",
+ "fil": "Filipino"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0641\u0644\u0628\u064a\u0646",
+ "common": "\u0627\u0644\u0641\u0644\u0628\u064a\u0646"
+ },
+ "bre": {
+ "official": "Republik Filipinez",
+ "common": "Filipinez"
+ },
+ "ces": {
+ "official": "Filip\u00ednsk\u00e1 republika",
+ "common": "Filip\u00edny"
+ },
+ "deu": {
+ "official": "Republik der Philippinen",
+ "common": "Philippinen"
+ },
+ "est": {
+ "official": "Filipiini Vabariik",
+ "common": "Filipiinid"
+ },
+ "fin": {
+ "official": "Filippiinien tasavalta",
+ "common": "Filippiinit"
+ },
+ "fra": {
+ "official": "R\u00e9publique des Philippines",
+ "common": "Philippines"
+ },
+ "hrv": {
+ "official": "Republika Filipini",
+ "common": "Filipini"
+ },
+ "hun": {
+ "official": "F\u00fcl\u00f6p-szigeteki K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "F\u00fcl\u00f6p-szigetek"
+ },
+ "ita": {
+ "official": "Repubblica delle Filippine",
+ "common": "Filippine"
+ },
+ "jpn": {
+ "official": "\u30d5\u30a3\u30ea\u30d4\u30f3\u5171\u548c\u56fd",
+ "common": "\u30d5\u30a3\u30ea\u30d4\u30f3"
+ },
+ "kor": {
+ "official": "\ud544\ub9ac\ud540 \uacf5\ud654\uad6d",
+ "common": "\ud544\ub9ac\ud540"
+ },
+ "nld": {
+ "official": "Republiek der Filipijnen",
+ "common": "Filipijnen"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0641\u06cc\u0644\u06cc\u067e\u06cc\u0646",
+ "common": "\u0641\u06cc\u0644\u06cc\u067e\u06cc\u0646"
+ },
+ "pol": {
+ "official": "Republika Filipin",
+ "common": "Filipiny"
+ },
+ "por": {
+ "official": "Rep\u00fablica das Filipinas",
+ "common": "Filipinas"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0424\u0438\u043b\u0438\u043f\u043f\u0438\u043d\u044b",
+ "common": "\u0424\u0438\u043b\u0438\u043f\u043f\u0438\u043d\u044b"
+ },
+ "slk": {
+ "official": "Filip\u00ednska republika",
+ "common": "Filip\u00edny"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de las Filipinas",
+ "common": "Filipinas"
+ },
+ "srp": {
+ "official": "Republika Filipini",
+ "common": "Filipini"
+ },
+ "swe": {
+ "official": "Republiken Filippinerna",
+ "common": "Filippinerna"
+ },
+ "tur": {
+ "official": "Filipinler Cumhuriyeti",
+ "common": "Filipinler"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0641\u0644\u067e\u0627\u0626\u0646",
+ "common": "\u0641\u0644\u067e\u0627\u0626\u0646"
+ },
+ "zho": {
+ "official": "\u83f2\u5f8b\u5bbe\u5171\u548c\u56fd",
+ "common": "\u83f2\u5f8b\u5bbe"
+ }
+ },
+ "latlng": [
+ 13,
+ 122
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 342353,
+ "flag": "\ud83c\uddf5\ud83c\udded",
+ "demonyms": {
+ "eng": {
+ "f": "Filipino",
+ "m": "Filipino"
+ },
+ "fra": {
+ "f": "Philippine",
+ "m": "Philippin"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Palau",
+ "official": "Republic of Palau",
+ "native": {
+ "eng": {
+ "official": "Republic of Palau",
+ "common": "Palau"
+ },
+ "pau": {
+ "official": "Beluu er a Belau",
+ "common": "Belau"
+ }
+ }
+ },
+ "tld": [
+ ".pw"
+ ],
+ "cca2": "PW",
+ "ccn3": "585",
+ "cca3": "PLW",
+ "cioc": "PLW",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "80"
+ ]
+ },
+ "capital": [
+ "Ngerulmud"
+ ],
+ "altSpellings": [
+ "PW",
+ "Republic of Palau",
+ "Beluu er a Belau"
+ ],
+ "region": "Oceania",
+ "subregion": "Micronesia",
+ "languages": {
+ "eng": "English",
+ "pau": "Palauan"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0628\u0627\u0644\u0627\u0648",
+ "common": "\u0628\u0627\u0644\u0627\u0648"
+ },
+ "bre": {
+ "official": "Republik Palau",
+ "common": "Palau"
+ },
+ "ces": {
+ "official": "Republika Palau",
+ "common": "Palau"
+ },
+ "deu": {
+ "official": "Republik Palau",
+ "common": "Palau"
+ },
+ "est": {
+ "official": "Belau Vabariik",
+ "common": "Belau"
+ },
+ "fin": {
+ "official": "Palaun tasavalta",
+ "common": "Palau"
+ },
+ "fra": {
+ "official": "R\u00e9publique des Palaos (Palau)",
+ "common": "Palaos (Palau)"
+ },
+ "hrv": {
+ "official": "Republika Palau",
+ "common": "Palau"
+ },
+ "hun": {
+ "official": "Palaui K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Palau"
+ },
+ "ita": {
+ "official": "Repubblica di Palau",
+ "common": "Palau"
+ },
+ "jpn": {
+ "official": "\u30d1\u30e9\u30aa\u5171\u548c\u56fd",
+ "common": "\u30d1\u30e9\u30aa"
+ },
+ "kor": {
+ "official": "\ud314\ub77c\uc6b0 \uacf5\ud654\uad6d",
+ "common": "\ud314\ub77c\uc6b0"
+ },
+ "nld": {
+ "official": "Republiek van Palau",
+ "common": "Palau"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u067e\u0627\u0644\u0627\u0626\u0648",
+ "common": "\u067e\u0627\u0644\u0627\u0626\u0648"
+ },
+ "pol": {
+ "official": "Republika Palau",
+ "common": "Palau"
+ },
+ "por": {
+ "official": "Rep\u00fablica de Palau",
+ "common": "Palau"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041f\u0430\u043b\u0430\u0443",
+ "common": "\u041f\u0430\u043b\u0430\u0443"
+ },
+ "slk": {
+ "official": "Palausk\u00e1 republika",
+ "common": "Palau"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Palau",
+ "common": "Palau"
+ },
+ "srp": {
+ "official": "Republika Palau",
+ "common": "Palau"
+ },
+ "swe": {
+ "official": "Republiken Palau",
+ "common": "Palau"
+ },
+ "tur": {
+ "official": "Palau Cumhuriyeti",
+ "common": "Palau"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u067e\u0644\u0627\u0624",
+ "common": "\u067e\u0644\u0627\u0624"
+ },
+ "zho": {
+ "official": "\u5e15\u52b3\u5171\u548c\u56fd",
+ "common": "\u5e15\u52b3"
+ }
+ },
+ "latlng": [
+ 7.5,
+ 134.5
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 459,
+ "flag": "\ud83c\uddf5\ud83c\uddfc",
+ "demonyms": {
+ "eng": {
+ "f": "Palauan",
+ "m": "Palauan"
+ },
+ "fra": {
+ "f": "Paluane",
+ "m": "Paluan"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Papua New Guinea",
+ "official": "Independent State of Papua New Guinea",
+ "native": {
+ "eng": {
+ "official": "Independent State of Papua New Guinea",
+ "common": "Papua New Guinea"
+ },
+ "hmo": {
+ "official": "Independen Stet bilong Papua Niugini",
+ "common": "Papua Niu Gini"
+ },
+ "tpi": {
+ "official": "Independen Stet bilong Papua Niugini",
+ "common": "Papua Niugini"
+ }
+ }
+ },
+ "tld": [
+ ".pg"
+ ],
+ "cca2": "PG",
+ "ccn3": "598",
+ "cca3": "PNG",
+ "cioc": "PNG",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "PGK": {
+ "name": "Papua New Guinean kina",
+ "symbol": "K"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "75"
+ ]
+ },
+ "capital": [
+ "Port Moresby"
+ ],
+ "altSpellings": [
+ "PG",
+ "Independent State of Papua New Guinea",
+ "Independen Stet bilong Papua Niugini"
+ ],
+ "region": "Oceania",
+ "subregion": "Melanesia",
+ "languages": {
+ "eng": "English",
+ "hmo": "Hiri Motu",
+ "tpi": "Tok Pisin"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062f\u0648\u0644\u0629 \u0628\u0627\u0628\u0648\u0627 \u063a\u064a\u0646\u064a\u0627 \u0627\u0644\u062c\u062f\u064a\u062f\u0629",
+ "common": "\u0628\u0627\u0628\u0648\u0627 \u063a\u064a\u0646\u064a\u0627 \u0627\u0644\u062c\u062f\u064a\u062f\u0629"
+ },
+ "bre": {
+ "official": "Stad dizalc'h Papoua-Ginea Nevez",
+ "common": "Papoua-Ginea Nevez"
+ },
+ "ces": {
+ "official": "Nez\u00e1visl\u00fd st\u00e1t Papua Nov\u00e1 Guinea",
+ "common": "Papua-Nov\u00e1 Guinea"
+ },
+ "deu": {
+ "official": "Unabh\u00e4ngiger Staat Papua-Neuguinea",
+ "common": "Papua-Neuguinea"
+ },
+ "est": {
+ "official": "Paapua Uus-Guinea Iseseisvusriik",
+ "common": "Paapua Uus-Guinea"
+ },
+ "fin": {
+ "official": "Papua-Uuden-Guinean Itsen\u00e4inen valtio",
+ "common": "Papua-Uusi-Guinea"
+ },
+ "fra": {
+ "official": "\u00c9tat ind\u00e9pendant de Papouasie-Nouvelle-Guin\u00e9e",
+ "common": "Papouasie-Nouvelle-Guin\u00e9e"
+ },
+ "hrv": {
+ "official": "Nezavisna Dr\u017eava Papui Novoj Gvineji",
+ "common": "Papua Nova Gvineja"
+ },
+ "hun": {
+ "official": "P\u00e1pua \u00daj-Guinea F\u00fcggetlen \u00c1llam",
+ "common": "P\u00e1pua \u00daj-Guinea"
+ },
+ "ita": {
+ "official": "Stato indipendente di Papua Nuova Guinea",
+ "common": "Papua Nuova Guinea"
+ },
+ "jpn": {
+ "official": "\u30d1\u30d7\u30a2\u30cb\u30e5\u30fc\u30ae\u30cb\u30a2\u72ec\u7acb\u56fd",
+ "common": "\u30d1\u30d7\u30a2\u30cb\u30e5\u30fc\u30ae\u30cb\u30a2"
+ },
+ "kor": {
+ "official": "\ud30c\ud478\uc544\ub274\uae30\ub2c8 \ub3c5\ub9bd\uad6d",
+ "common": "\ud30c\ud478\uc544\ub274\uae30\ub2c8"
+ },
+ "nld": {
+ "official": "Onafhankelijke Staat Papoea -Nieuw-Guinea",
+ "common": "Papoea-Nieuw-Guinea"
+ },
+ "per": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a \u0645\u0633\u062a\u0642\u0644 \u067e\u0627\u067e\u0648\u0622 \u06af\u06cc\u0646\u0647\u0654 \u0646\u0648",
+ "common": "\u067e\u0627\u067e\u0648\u0622 \u06af\u06cc\u0646\u0647 \u0646\u0648"
+ },
+ "pol": {
+ "official": "Niezale\u017cne Pa\u0144stwo Papui-Nowej Gwinei",
+ "common": "Papua-Nowa Gwinea"
+ },
+ "por": {
+ "official": "Estado Independente da Papua Nova Guin\u00e9",
+ "common": "Papua Nova Guin\u00e9"
+ },
+ "rus": {
+ "official": "\u041d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0435 \u0413\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u043e \u041f\u0430\u043f\u0443\u0430-\u041d\u043e\u0432\u043e\u0439 \u0413\u0432\u0438\u043d\u0435\u0438",
+ "common": "\u041f\u0430\u043f\u0443\u0430 \u2014 \u041d\u043e\u0432\u0430\u044f \u0413\u0432\u0438\u043d\u0435\u044f"
+ },
+ "slk": {
+ "official": "Nez\u00e1visl\u00fd \u0161t\u00e1t Papua-Nov\u00e1 Guinea",
+ "common": "Papua-Nov\u00e1 Guinea"
+ },
+ "spa": {
+ "official": "Estado Independiente de Pap\u00faa Nueva Guinea",
+ "common": "Pap\u00faa Nueva Guinea"
+ },
+ "srp": {
+ "official": "Nezavisna Dr\u017eava Papua Nova Gvineja",
+ "common": "Papua Nova Gvineja"
+ },
+ "swe": {
+ "official": "Den oberoende staten Papua Nya Guinea",
+ "common": "Papua Nya Guinea"
+ },
+ "tur": {
+ "official": "Papua Yeni Gine Ba\u011f\u0131ms\u0131z Devleti",
+ "common": "Papua Yeni Gine"
+ },
+ "urd": {
+ "official": "\u0622\u0632\u0627\u062f \u0631\u06cc\u0627\u0633\u062a\u0650 \u067e\u0627\u067e\u0648\u0627 \u0646\u06cc\u0648 \u06af\u0646\u06cc",
+ "common": "\u067e\u0627\u067e\u0648\u0627 \u0646\u06cc\u0648 \u06af\u0646\u06cc"
+ },
+ "zho": {
+ "official": "\u5df4\u5e03\u4e9a\u65b0\u51e0\u5185\u4e9a",
+ "common": "\u5df4\u5e03\u4e9a\u65b0\u51e0\u5185\u4e9a"
+ }
+ },
+ "latlng": [
+ -6,
+ 147
+ ],
+ "landlocked": false,
+ "borders": [
+ "IDN"
+ ],
+ "area": 462840,
+ "flag": "\ud83c\uddf5\ud83c\uddec",
+ "demonyms": {
+ "eng": {
+ "f": "Papua New Guinean",
+ "m": "Papua New Guinean"
+ },
+ "fra": {
+ "f": "Papouasienne",
+ "m": "Papouasien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Poland",
+ "official": "Republic of Poland",
+ "native": {
+ "pol": {
+ "official": "Rzeczpospolita Polska",
+ "common": "Polska"
+ }
+ }
+ },
+ "tld": [
+ ".pl"
+ ],
+ "cca2": "PL",
+ "ccn3": "616",
+ "cca3": "POL",
+ "cioc": "POL",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "PLN": {
+ "name": "Polish z\u0142oty",
+ "symbol": "z\u0142"
+ }
+ },
+ "idd": {
+ "root": "+4",
+ "suffixes": [
+ "8"
+ ]
+ },
+ "capital": [
+ "Warsaw"
+ ],
+ "altSpellings": [
+ "PL",
+ "Republic of Poland",
+ "Rzeczpospolita Polska"
+ ],
+ "region": "Europe",
+ "subregion": "Central Europe",
+ "languages": {
+ "pol": "Polish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0628\u0648\u0644\u0646\u062f\u064a\u0629",
+ "common": "\u0628\u0648\u0644\u0646\u062f\u0627"
+ },
+ "bre": {
+ "official": "Republik Polonia",
+ "common": "Polonia"
+ },
+ "ces": {
+ "official": "Polsk\u00e1 republika",
+ "common": "Polsko"
+ },
+ "deu": {
+ "official": "Republik Polen",
+ "common": "Polen"
+ },
+ "est": {
+ "official": "Poola Vabariik",
+ "common": "Poola"
+ },
+ "fin": {
+ "official": "Puolan tasavalta",
+ "common": "Puola"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Pologne",
+ "common": "Pologne"
+ },
+ "hrv": {
+ "official": "Republika Poljska",
+ "common": "Poljska"
+ },
+ "hun": {
+ "official": "Lengyel K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Lengyelorsz\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica di Polonia",
+ "common": "Polonia"
+ },
+ "jpn": {
+ "official": "\u30dd\u30fc\u30e9\u30f3\u30c9\u5171\u548c\u56fd",
+ "common": "\u30dd\u30fc\u30e9\u30f3\u30c9"
+ },
+ "kor": {
+ "official": "\ud3f4\ub780\ub4dc \uacf5\ud654\uad6d",
+ "common": "\ud3f4\ub780\ub4dc"
+ },
+ "nld": {
+ "official": "Republiek Polen",
+ "common": "Polen"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0644\u0647\u0633\u062a\u0627\u0646",
+ "common": "\u0644\u0647\u0633\u062a\u0627\u0646"
+ },
+ "pol": {
+ "official": "Rzeczpospolita Polska",
+ "common": "Polska"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Pol\u00f3nia",
+ "common": "Pol\u00f3nia"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041f\u043e\u043b\u044c\u0448\u0430",
+ "common": "\u041f\u043e\u043b\u044c\u0448\u0430"
+ },
+ "slk": {
+ "official": "Po\u013esk\u00e1 republika",
+ "common": "Po\u013esko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Polonia",
+ "common": "Polonia"
+ },
+ "srp": {
+ "official": "Republika Poljska",
+ "common": "Poljska"
+ },
+ "swe": {
+ "official": "Republiken Polen",
+ "common": "Polen"
+ },
+ "tur": {
+ "official": "Polonya Cumhuriyeti",
+ "common": "Polonya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u067e\u0648\u0644\u06cc\u0646\u0688",
+ "common": "\u067e\u0648\u0644\u06cc\u0646\u0688"
+ },
+ "zho": {
+ "official": "\u6ce2\u5170\u5171\u548c\u56fd",
+ "common": "\u6ce2\u5170"
+ }
+ },
+ "latlng": [
+ 52,
+ 20
+ ],
+ "landlocked": false,
+ "borders": [
+ "BLR",
+ "CZE",
+ "DEU",
+ "LTU",
+ "RUS",
+ "SVK",
+ "UKR"
+ ],
+ "area": 312679,
+ "flag": "\ud83c\uddf5\ud83c\uddf1",
+ "demonyms": {
+ "eng": {
+ "f": "Polish",
+ "m": "Polish"
+ },
+ "fra": {
+ "f": "Polonaise",
+ "m": "Polonais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Puerto Rico",
+ "official": "Commonwealth of Puerto Rico",
+ "native": {
+ "eng": {
+ "official": "Commonwealth of Puerto Rico",
+ "common": "Puerto Rico"
+ },
+ "spa": {
+ "official": "Estado Libre Asociado de Puerto Rico",
+ "common": "Puerto Rico"
+ }
+ }
+ },
+ "tld": [
+ ".pr"
+ ],
+ "cca2": "PR",
+ "ccn3": "630",
+ "cca3": "PRI",
+ "cioc": "PUR",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "787",
+ "939"
+ ]
+ },
+ "capital": [
+ "San Juan"
+ ],
+ "altSpellings": [
+ "PR",
+ "Commonwealth of Puerto Rico",
+ "Estado Libre Asociado de Puerto Rico"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English",
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0643\u0648\u0645\u0646\u0648\u0644\u062b \u0628\u0648\u064a\u0631\u062a\u0648\u0631\u064a\u0643\u0648",
+ "common": "\u0628\u0648\u064a\u0631\u062a\u0648\u0631\u064a\u0643\u0648"
+ },
+ "bre": {
+ "official": "Kenglad Puerto Rico",
+ "common": "Puerto Rico"
+ },
+ "ces": {
+ "official": "Portoriko",
+ "common": "Portoriko"
+ },
+ "deu": {
+ "official": "Freistaat Puerto Rico",
+ "common": "Puerto Rico"
+ },
+ "est": {
+ "official": "Puerto Rico \u00dchendus",
+ "common": "Puerto Rico"
+ },
+ "fin": {
+ "official": "Puerto Rico",
+ "common": "Puerto Rico"
+ },
+ "fra": {
+ "official": "Porto Rico",
+ "common": "Porto Rico"
+ },
+ "hrv": {
+ "official": "Zajednica Puerto Rico",
+ "common": "Portoriko"
+ },
+ "hun": {
+ "official": "Puerto Rico",
+ "common": "Puerto Rico"
+ },
+ "ita": {
+ "official": "Commonwealth di Porto Rico",
+ "common": "Porto Rico"
+ },
+ "jpn": {
+ "official": "\u30d7\u30a8\u30eb\u30c8\u30ea\u30b3",
+ "common": "\u30d7\u30a8\u30eb\u30c8\u30ea\u30b3"
+ },
+ "kor": {
+ "official": "\ud478\uc5d0\ub974\ud1a0\ub9ac\ucf54",
+ "common": "\ud478\uc5d0\ub974\ud1a0\ub9ac\ucf54"
+ },
+ "nld": {
+ "official": "Gemenebest van Puerto Rico",
+ "common": "Puerto Rico"
+ },
+ "per": {
+ "official": "\u0642\u0644\u0645\u0631\u0648 \u0647\u0645\u0633\u0648\u062f \u067e\u0648\u0631\u062a\u0648\u0631\u06cc\u06a9\u0648",
+ "common": "\u067e\u0648\u0631\u062a\u0648\u0631\u06cc\u06a9\u0648"
+ },
+ "pol": {
+ "official": "Wolne Stowarzyszone Pa\u0144stwo Portoryko",
+ "common": "Portoryko"
+ },
+ "por": {
+ "official": "Commonwealth of Puerto Rico",
+ "common": "Porto Rico"
+ },
+ "rus": {
+ "official": "\u0421\u043e\u0434\u0440\u0443\u0436\u0435\u0441\u0442\u0432\u043e \u041f\u0443\u044d\u0440\u0442\u043e-\u0420\u0438\u043a\u043e",
+ "common": "\u041f\u0443\u044d\u0440\u0442\u043e-\u0420\u0438\u043a\u043e"
+ },
+ "slk": {
+ "official": "Portorick\u00e9 spolo\u010denstvo",
+ "common": "Portoriko"
+ },
+ "spa": {
+ "official": "Asociado de Puerto Rico",
+ "common": "Puerto Rico"
+ },
+ "srp": {
+ "official": "Komonvelt Portoriko",
+ "common": "Portoriko"
+ },
+ "swe": {
+ "official": "Puerto Rico",
+ "common": "Puerto Rico"
+ },
+ "tur": {
+ "official": "Porto Riko Toplulu\u011fu",
+ "common": "Porto Riko"
+ },
+ "urd": {
+ "official": " \u062f\u0648\u0644\u062a\u0650 \u0645\u0634\u062a\u0631\u06a9\u06c1 \u067e\u0648\u0631\u0679\u0648 \u0631\u06cc\u06a9\u0648",
+ "common": "\u067e\u0648\u0631\u0679\u0648 \u0631\u06cc\u06a9\u0648"
+ },
+ "zho": {
+ "official": "\u6ce2\u591a\u9ece\u5404\u8054\u90a6",
+ "common": "\u6ce2\u591a\u9ece\u5404"
+ }
+ },
+ "latlng": [
+ 18.25,
+ -66.5
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 8870,
+ "flag": "\ud83c\uddf5\ud83c\uddf7",
+ "demonyms": {
+ "eng": {
+ "f": "Puerto Rican",
+ "m": "Puerto Rican"
+ },
+ "fra": {
+ "f": "Portoricaine",
+ "m": "Portoricain"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "North Korea",
+ "official": "Democratic People's Republic of Korea",
+ "native": {
+ "kor": {
+ "official": "\uc870\uc120\ubbfc\uc8fc\uc8fc\uc758\uc778\ubbfc\uacf5\ud654\uad6d",
+ "common": "\uc870\uc120"
+ }
+ }
+ },
+ "tld": [
+ ".kp"
+ ],
+ "cca2": "KP",
+ "ccn3": "408",
+ "cca3": "PRK",
+ "cioc": "PRK",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "KPW": {
+ "name": "North Korean won",
+ "symbol": "\u20a9"
+ }
+ },
+ "idd": {
+ "root": "+8",
+ "suffixes": [
+ "50"
+ ]
+ },
+ "capital": [
+ "Pyongyang"
+ ],
+ "altSpellings": [
+ "KP",
+ "Democratic People's Republic of Korea",
+ "DPRK",
+ "\uc870\uc120\ubbfc\uc8fc\uc8fc\uc758\uc778\ubbfc\uacf5\ud654\uad6d",
+ "Chos\u014fn Minjuju\u016di Inmin Konghwaguk",
+ "Korea, Democratic People's Republic of",
+ "\ubd81\ud55c",
+ "\ubd81\uc870\uc120"
+ ],
+ "region": "Asia",
+ "subregion": "Eastern Asia",
+ "languages": {
+ "kor": "Korean"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0643\u0648\u0631\u064a\u0627 \u0627\u0644\u062f\u064a\u0645\u0642\u0631\u0627\u0637\u064a\u0629 \u0627\u0644\u0634\u0639\u0628\u064a\u0629",
+ "common": "\u0643\u0648\u0631\u064a\u0627 \u0627\u0644\u0634\u0645\u0627\u0644\u064a\u0629"
+ },
+ "bre": {
+ "official": "Republik Poblel ha Demokratel Korea",
+ "common": "Korea an Norzh"
+ },
+ "ces": {
+ "official": "Korejsk\u00e1 lidov\u011b demokratick\u00e1 republika",
+ "common": "Severn\u00ed Korea"
+ },
+ "deu": {
+ "official": "Demokratische Volksrepublik Korea",
+ "common": "Nordkorea"
+ },
+ "est": {
+ "official": "Korea Rahvademokraatlik Vabariik",
+ "common": "P\u00f5hja-Korea"
+ },
+ "fin": {
+ "official": "Korean demokraattinen kansantasavalta",
+ "common": "Pohjois-Korea"
+ },
+ "fra": {
+ "official": "R\u00e9publique populaire d\u00e9mocratique de Cor\u00e9e",
+ "common": "Cor\u00e9e du Nord"
+ },
+ "hrv": {
+ "official": "Demokratska Narodna Republika Koreja",
+ "common": "Sjeverna Koreja"
+ },
+ "hun": {
+ "official": "Koreai N\u00e9pi Demokratikus K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "\u00c9szak-Korea"
+ },
+ "ita": {
+ "official": "Repubblica democratica popolare di Corea",
+ "common": "Corea del Nord"
+ },
+ "jpn": {
+ "official": "\u5317\u671d\u9bae",
+ "common": "\u5317\u671d\u9bae"
+ },
+ "kor": {
+ "official": "\uc870\uc120\ubbfc\uc8fc\uc8fc\uc758\uc778\ubbfc\uacf5\ud654\uad6d",
+ "common": "\uc870\uc120"
+ },
+ "nld": {
+ "official": "Democratische Volksrepubliek Korea",
+ "common": "Noord-Korea"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062f\u0645\u0648\u06a9\u0631\u0627\u062a\u06cc\u06a9 \u062e\u0644\u0642 \u06a9\u0631\u0647",
+ "common": "\u06a9\u064f\u0631\u0647 \u0634\u0645\u0627\u0644\u06cc"
+ },
+ "pol": {
+ "official": "Korea\u0144ska Republika Ludowo-Demokratyczna",
+ "common": "Korea P\u00f3\u0142nocna"
+ },
+ "por": {
+ "official": "Rep\u00fablica Popular Democr\u00e1tica da Coreia",
+ "common": "Coreia do Norte"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u0440\u0435\u0439\u0441\u043a\u0430\u044f \u041d\u0430\u0440\u043e\u0434\u043d\u043e-\u0414\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u043e\u0440\u0435\u044f",
+ "common": "\u0421\u0435\u0432\u0435\u0440\u043d\u0430\u044f \u041a\u043e\u0440\u0435\u044f"
+ },
+ "slk": {
+ "official": "K\u00f3rejsk\u00e1 \u013eudovodemokratick\u00e1 republika",
+ "common": "K\u00f3rejsk\u00e1 \u013eudovodemokratick\u00e1 republika (K\u013dR, Severn\u00e1 K\u00f3rea)"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Popular Democr\u00e1tica de Corea",
+ "common": "Corea del Norte"
+ },
+ "srp": {
+ "official": "Demokratska Narodna Republika Koreja",
+ "common": "Severna Koreja"
+ },
+ "swe": {
+ "official": "Demokratiska Folkrepubliken Korea",
+ "common": "Nordkorea"
+ },
+ "tur": {
+ "official": "Kore Demokratik Halk Cumhuriyeti",
+ "common": "Kuzey Kore"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc \u0639\u0648\u0627\u0645\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06a9\u0648\u0631\u06cc\u0627",
+ "common": "\u0634\u0645\u0627\u0644\u06cc \u06a9\u0648\u0631\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u671d\u9c9c\u4eba\u6c11\u6c11\u4e3b\u5171\u548c\u56fd",
+ "common": "\u671d\u9c9c"
+ }
+ },
+ "latlng": [
+ 40,
+ 127
+ ],
+ "landlocked": false,
+ "borders": [
+ "CHN",
+ "KOR",
+ "RUS"
+ ],
+ "area": 120538,
+ "flag": "\ud83c\uddf0\ud83c\uddf5",
+ "demonyms": {
+ "eng": {
+ "f": "North Korean",
+ "m": "North Korean"
+ },
+ "fra": {
+ "f": "Nord-cor\u00e9enne",
+ "m": "Nord-cor\u00e9en"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Portugal",
+ "official": "Portuguese Republic",
+ "native": {
+ "por": {
+ "official": "Rep\u00fablica portugu\u00eas",
+ "common": "Portugal"
+ }
+ }
+ },
+ "tld": [
+ ".pt"
+ ],
+ "cca2": "PT",
+ "ccn3": "620",
+ "cca3": "PRT",
+ "cioc": "POR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "51"
+ ]
+ },
+ "capital": [
+ "Lisbon"
+ ],
+ "altSpellings": [
+ "PT",
+ "Portuguesa",
+ "Portuguese Republic",
+ "Rep\u00fablica Portuguesa"
+ ],
+ "region": "Europe",
+ "subregion": "Southern Europe",
+ "languages": {
+ "por": "Portuguese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0628\u0631\u062a\u063a\u0627\u0644\u064a\u0629",
+ "common": "\u0627\u0644\u0628\u0631\u062a\u063a\u0627\u0644"
+ },
+ "bre": {
+ "official": "Republik Portugalat",
+ "common": "Portugal"
+ },
+ "ces": {
+ "official": "Portugalsk\u00e1 republika",
+ "common": "Portugalsko"
+ },
+ "deu": {
+ "official": "Portugiesische Republik",
+ "common": "Portugal"
+ },
+ "est": {
+ "official": "Portugali Vabariik",
+ "common": "Portugal"
+ },
+ "fin": {
+ "official": "Portugalin tasavalta",
+ "common": "Portugali"
+ },
+ "fra": {
+ "official": "R\u00e9publique portugaise",
+ "common": "Portugal"
+ },
+ "hrv": {
+ "official": "Portugalska Republika",
+ "common": "Portugal"
+ },
+ "hun": {
+ "official": "Portug\u00e1l K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Portug\u00e1lia"
+ },
+ "ita": {
+ "official": "Repubblica portoghese",
+ "common": "Portogallo"
+ },
+ "jpn": {
+ "official": "\u30dd\u30eb\u30c8\u30ac\u30eb\u5171\u548c\u56fd",
+ "common": "\u30dd\u30eb\u30c8\u30ac\u30eb"
+ },
+ "kor": {
+ "official": "\ud3ec\ub974\ud22c\uac08 \uacf5\ud654\uad6d",
+ "common": "\ud3ec\ub974\ud22c\uac08"
+ },
+ "nld": {
+ "official": "Portugese Republiek",
+ "common": "Portugal"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u067e\u0631\u062a\u063a\u0627\u0644",
+ "common": "\u067e\u0631\u062a\u063a\u0627\u0644"
+ },
+ "pol": {
+ "official": "Republika Portugalska",
+ "common": "Portugalia"
+ },
+ "por": {
+ "official": "Rep\u00fablica portugu\u00eas",
+ "common": "Portugal"
+ },
+ "rus": {
+ "official": "\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u044c\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u041f\u043e\u0440\u0442\u0443\u0433\u0430\u043b\u0438\u044f"
+ },
+ "slk": {
+ "official": "Portugalsk\u00e1 republika",
+ "common": "Portugalsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Portuguesa",
+ "common": "Portugal"
+ },
+ "srp": {
+ "official": "Republika Portugal",
+ "common": "Portugal"
+ },
+ "swe": {
+ "official": "Republiken Portugal",
+ "common": "Portugal"
+ },
+ "tur": {
+ "official": "Portekiz Cumhuriyeti",
+ "common": "Portekiz"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u067e\u0631\u062a\u06af\u0627\u0644",
+ "common": "\u067e\u0631\u062a\u06af\u0627\u0644"
+ },
+ "zho": {
+ "official": "\u8461\u8404\u7259\u5171\u548c\u56fd",
+ "common": "\u8461\u8404\u7259"
+ }
+ },
+ "latlng": [
+ 39.5,
+ -8
+ ],
+ "landlocked": false,
+ "borders": [
+ "ESP"
+ ],
+ "area": 92090,
+ "flag": "\ud83c\uddf5\ud83c\uddf9",
+ "demonyms": {
+ "eng": {
+ "f": "Portuguese",
+ "m": "Portuguese"
+ },
+ "fra": {
+ "f": "Portugaise",
+ "m": "Portugais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Paraguay",
+ "official": "Republic of Paraguay",
+ "native": {
+ "grn": {
+ "official": "Tet\u00e3 Paragu\u00e1i",
+ "common": "Paragu\u00e1i"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Paraguay",
+ "common": "Paraguay"
+ }
+ }
+ },
+ "tld": [
+ ".py"
+ ],
+ "cca2": "PY",
+ "ccn3": "600",
+ "cca3": "PRY",
+ "cioc": "PAR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "PYG": {
+ "name": "Paraguayan guaran\u00ed",
+ "symbol": "\u20b2"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "95"
+ ]
+ },
+ "capital": [
+ "Asunci\u00f3n"
+ ],
+ "altSpellings": [
+ "PY",
+ "Republic of Paraguay",
+ "Rep\u00fablica del Paraguay",
+ "Tet\u00e3 Paragu\u00e1i"
+ ],
+ "region": "Americas",
+ "subregion": "South America",
+ "languages": {
+ "grn": "Guaran\u00ed",
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0628\u0627\u0631\u0627\u063a\u0648\u0627\u064a",
+ "common": "\u0628\u0627\u0631\u0627\u063a\u0648\u0627\u064a"
+ },
+ "bre": {
+ "official": "Republik Paraguay",
+ "common": "Paraguay"
+ },
+ "ces": {
+ "official": "Paraguaysk\u00e1 republika",
+ "common": "Paraguay"
+ },
+ "deu": {
+ "official": "Republik Paraguay",
+ "common": "Paraguay"
+ },
+ "est": {
+ "official": "Paraguay Vabariik",
+ "common": "Paraguay"
+ },
+ "fin": {
+ "official": "Paraguayn tasavalta",
+ "common": "Paraguay"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Paraguay",
+ "common": "Paraguay"
+ },
+ "hrv": {
+ "official": "Republika Paragvaj",
+ "common": "Paragvaj"
+ },
+ "hun": {
+ "official": "Paraguayi K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Paraguay"
+ },
+ "ita": {
+ "official": "Repubblica del Paraguay",
+ "common": "Paraguay"
+ },
+ "jpn": {
+ "official": "\u30d1\u30e9\u30b0\u30a2\u30a4\u5171\u548c\u56fd",
+ "common": "\u30d1\u30e9\u30b0\u30a2\u30a4"
+ },
+ "kor": {
+ "official": "\ud30c\ub77c\uacfc\uc774 \uacf5\ud654\uad6d",
+ "common": "\ud30c\ub77c\uacfc\uc774"
+ },
+ "nld": {
+ "official": "Republiek Paraguay",
+ "common": "Paraguay"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u067e\u0627\u0631\u0627\u06af\u0648\u0626\u0647",
+ "common": "\u067e\u0627\u0631\u0627\u06af\u0648\u0626\u0647"
+ },
+ "pol": {
+ "official": "Republika Paragwaju",
+ "common": "Paragwaj"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Paraguai",
+ "common": "Paraguai"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041f\u0430\u0440\u0430\u0433\u0432\u0430\u0439",
+ "common": "\u041f\u0430\u0440\u0430\u0433\u0432\u0430\u0439"
+ },
+ "slk": {
+ "official": "Paraguajsk\u00e1 republika",
+ "common": "Paraguaj"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Paraguay",
+ "common": "Paraguay"
+ },
+ "srp": {
+ "official": "Republika Paragvaj",
+ "common": "Paragvaj"
+ },
+ "swe": {
+ "official": "Republiken Paraguay",
+ "common": "Paraguay"
+ },
+ "tur": {
+ "official": "Paraguay Cumhuriyeti",
+ "common": "Paraguay"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u067e\u06cc\u0631\u0627\u06af\u0648\u0626\u06d2",
+ "common": "\u067e\u06cc\u0631\u0627\u06af\u0648\u0626\u06d2"
+ },
+ "zho": {
+ "official": "\u5df4\u62c9\u572d\u5171\u548c\u56fd",
+ "common": "\u5df4\u62c9\u572d"
+ }
+ },
+ "latlng": [
+ -23,
+ -58
+ ],
+ "landlocked": true,
+ "borders": [
+ "ARG",
+ "BOL",
+ "BRA"
+ ],
+ "area": 406752,
+ "flag": "\ud83c\uddf5\ud83c\uddfe",
+ "demonyms": {
+ "eng": {
+ "f": "Paraguayan",
+ "m": "Paraguayan"
+ },
+ "fra": {
+ "f": "Paraguayenne",
+ "m": "Paraguayen"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Palestine",
+ "official": "State of Palestine",
+ "native": {
+ "ara": {
+ "official": "\u062f\u0648\u0644\u0629 \u0641\u0644\u0633\u0637\u064a\u0646",
+ "common": "\u0641\u0644\u0633\u0637\u064a\u0646"
+ }
+ }
+ },
+ "tld": [
+ ".ps",
+ "\u0641\u0644\u0633\u0637\u064a\u0646."
+ ],
+ "cca2": "PS",
+ "ccn3": "275",
+ "cca3": "PSE",
+ "cioc": "PLE",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "EGP": {
+ "name": "Egyptian pound",
+ "symbol": "E\u00a3"
+ },
+ "ILS": {
+ "name": "Israeli new shekel",
+ "symbol": "\u20aa"
+ },
+ "JOD": {
+ "name": "Jordanian dinar",
+ "symbol": "JD"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "70"
+ ]
+ },
+ "capital": [
+ "Ramallah"
+ ],
+ "altSpellings": [
+ "PS",
+ "Palestine, State of",
+ "State of Palestine",
+ "Dawlat Filas\u1e6din"
+ ],
+ "region": "Asia",
+ "subregion": "Western Asia",
+ "languages": {
+ "ara": "Arabic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062f\u0648\u0644\u0629 \u0641\u0644\u0633\u0637\u064a\u0646",
+ "common": "\u0641\u0644\u0633\u0637\u064a\u0646"
+ },
+ "bre": {
+ "official": "Stad Palestina",
+ "common": "Palestina"
+ },
+ "ces": {
+ "official": "St\u00e1t Palestina",
+ "common": "Palestina"
+ },
+ "deu": {
+ "official": "Staat Pal\u00e4stina",
+ "common": "Pal\u00e4stina"
+ },
+ "est": {
+ "official": "Palestiina Riik",
+ "common": "Palestiina"
+ },
+ "fin": {
+ "official": "Palestiinan valtio",
+ "common": "Palestiina"
+ },
+ "fra": {
+ "official": "\u00c9tat de Palestine",
+ "common": "Palestine"
+ },
+ "hrv": {
+ "official": "State of Palestine",
+ "common": "Palestina"
+ },
+ "hun": {
+ "official": "Palesztin Auton\u00f3mia",
+ "common": "Palesztina"
+ },
+ "ita": {
+ "official": "Stato di Palestina",
+ "common": "Palestina"
+ },
+ "jpn": {
+ "official": "\u30d1\u30ec\u30b9\u30c1\u30ca",
+ "common": "\u30d1\u30ec\u30b9\u30c1\u30ca"
+ },
+ "kor": {
+ "official": "\ud314\ub808\uc2a4\ud0c0\uc778\uad6d",
+ "common": "\ud314\ub808\uc2a4\ud0c0\uc778"
+ },
+ "nld": {
+ "official": "Staat Palestina",
+ "common": "Palestijnse gebieden"
+ },
+ "per": {
+ "official": "\u062f\u0648\u0644\u062a \u0641\u0644\u0633\u0637\u06cc\u0646",
+ "common": "\u0641\u0644\u0633\u0637\u06cc\u0646"
+ },
+ "pol": {
+ "official": "Pa\u0144stwo Palestyna",
+ "common": "Palestyna"
+ },
+ "por": {
+ "official": "Estado da Palestina",
+ "common": "Palestina"
+ },
+ "rus": {
+ "official": "\u0413\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u043e \u041f\u0430\u043b\u0435\u0441\u0442\u0438\u043d\u0430",
+ "common": "\u041f\u0430\u043b\u0435\u0441\u0442\u0438\u043d\u0430"
+ },
+ "slk": {
+ "official": "Palest\u00ednsky \u0161t\u00e1t",
+ "common": "Palest\u00edna"
+ },
+ "spa": {
+ "official": "Estado de Palestina",
+ "common": "Palestina"
+ },
+ "srp": {
+ "official": "Dr\u017eava Palestina",
+ "common": "Palestina"
+ },
+ "swe": {
+ "official": "Palestina",
+ "common": "Palestina"
+ },
+ "tur": {
+ "official": "Filistin Devleti",
+ "common": "Filistin"
+ },
+ "urd": {
+ "official": "\u0631\u06cc\u0627\u0633\u062a\u0650 \u0641\u0644\u0633\u0637\u06cc\u0646",
+ "common": "\u0641\u0644\u0633\u0637\u06cc\u0646"
+ },
+ "zho": {
+ "official": "\u5df4\u52d2\u65af\u5766\u56fd",
+ "common": "\u5df4\u52d2\u65af\u5766"
+ }
+ },
+ "latlng": [
+ 31.9,
+ 35.2
+ ],
+ "landlocked": false,
+ "borders": [
+ "ISR",
+ "EGY",
+ "JOR"
+ ],
+ "area": 6220,
+ "flag": "\ud83c\uddf5\ud83c\uddf8",
+ "demonyms": {
+ "eng": {
+ "f": "Palestinian",
+ "m": "Palestinian"
+ },
+ "fra": {
+ "f": "Palestinienne",
+ "m": "Palestinien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "French Polynesia",
+ "official": "French Polynesia",
+ "native": {
+ "fra": {
+ "official": "Polyn\u00e9sie fran\u00e7aise",
+ "common": "Polyn\u00e9sie fran\u00e7aise"
+ }
+ }
+ },
+ "tld": [
+ ".pf"
+ ],
+ "cca2": "PF",
+ "ccn3": "258",
+ "cca3": "PYF",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "XPF": {
+ "name": "CFP franc",
+ "symbol": "\u20a3"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "89"
+ ]
+ },
+ "capital": [
+ "Papeet\u0113"
+ ],
+ "altSpellings": [
+ "PF",
+ "Polyn\u00e9sie fran\u00e7aise",
+ "French Polynesia",
+ "P\u014dr\u012bnetia Far\u0101ni"
+ ],
+ "region": "Oceania",
+ "subregion": "Polynesia",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0628\u0648\u0644\u064a\u0646\u0632\u064a\u0627 \u0627\u0644\u0641\u0631\u0646\u0633\u064a\u0629",
+ "common": "\u0628\u0648\u0644\u064a\u0646\u0632\u064a\u0627 \u0627\u0644\u0641\u0631\u0646\u0633\u064a\u0629"
+ },
+ "bre": {
+ "official": "Polinezia C'hall",
+ "common": "Polinezia C'hall"
+ },
+ "ces": {
+ "official": "Francouzsk\u00e1 Polyn\u00e9sie",
+ "common": "Francouzsk\u00e1 Polyn\u00e9sie"
+ },
+ "deu": {
+ "official": "Franz\u00f6sisch-Polynesien",
+ "common": "Franz\u00f6sisch-Polynesien"
+ },
+ "est": {
+ "official": "Prantsuse Pol\u00fcneesia",
+ "common": "Prantsuse Pol\u00fcneesia"
+ },
+ "fin": {
+ "official": "Ranskan Polynesia",
+ "common": "Ranskan Polynesia"
+ },
+ "fra": {
+ "official": "Polyn\u00e9sie fran\u00e7aise",
+ "common": "Polyn\u00e9sie fran\u00e7aise"
+ },
+ "hrv": {
+ "official": "Francuska Polinezija",
+ "common": "Francuska Polinezija"
+ },
+ "hun": {
+ "official": "Francia Polin\u00e9zia",
+ "common": "Francia Polin\u00e9zia"
+ },
+ "ita": {
+ "official": "Polinesia Francese",
+ "common": "Polinesia Francese"
+ },
+ "jpn": {
+ "official": "\u30d5\u30e9\u30f3\u30b9\u9818\u30dd\u30ea\u30cd\u30b7\u30a2",
+ "common": "\u30d5\u30e9\u30f3\u30b9\u9818\u30dd\u30ea\u30cd\u30b7\u30a2"
+ },
+ "kor": {
+ "official": "\ud504\ub791\uc2a4\ub839 \ud3f4\ub9ac\ub124\uc2dc\uc544",
+ "common": "\ud504\ub791\uc2a4\ub839 \ud3f4\ub9ac\ub124\uc2dc\uc544"
+ },
+ "nld": {
+ "official": "Frans-Polynesi\u00eb",
+ "common": "Frans-Polynesi\u00eb"
+ },
+ "per": {
+ "official": "\u067e\u064f\u0644\u06cc\u200c\u0646\u0650\u0632\u06cc \u0641\u0631\u0627\u0646\u0633\u0647",
+ "common": "\u067e\u064f\u0644\u06cc\u200c\u0646\u0650\u0632\u06cc \u0641\u0631\u0627\u0646\u0633\u0647"
+ },
+ "pol": {
+ "official": "Polinezja Francuska",
+ "common": "Polinezja Francuska"
+ },
+ "por": {
+ "official": "Polin\u00e9sia Francesa",
+ "common": "Polin\u00e9sia Francesa"
+ },
+ "rus": {
+ "official": "\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f \u041f\u043e\u043b\u0438\u043d\u0435\u0437\u0438\u044f",
+ "common": "\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0430\u044f \u041f\u043e\u043b\u0438\u043d\u0435\u0437\u0438\u044f"
+ },
+ "slk": {
+ "official": "Franc\u00fazska Polyn\u00e9zia",
+ "common": "Franc\u00fazska Polyn\u00e9zia"
+ },
+ "spa": {
+ "official": "Polinesia franc\u00e9s",
+ "common": "Polinesia Francesa"
+ },
+ "srp": {
+ "official": "Francuska Polinezija",
+ "common": "Francuska Polinezija"
+ },
+ "swe": {
+ "official": "Franska Polynesien",
+ "common": "Franska Polynesien"
+ },
+ "tur": {
+ "official": "Frans\u0131z Polinezyas\u0131",
+ "common": "Frans\u0131z Polinezyas\u0131"
+ },
+ "urd": {
+ "official": "\u0641\u0631\u0627\u0646\u0633\u06cc\u0633\u06cc \u067e\u0648\u0644\u06cc\u0646\u06cc\u0634\u06cc\u0627",
+ "common": "\u0641\u0631\u0627\u0646\u0633\u06cc\u0633\u06cc \u067e\u0648\u0644\u06cc\u0646\u06cc\u0634\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u6cd5\u5c5e\u6ce2\u5229\u5c3c\u897f\u4e9a",
+ "common": "\u6cd5\u5c5e\u6ce2\u5229\u5c3c\u897f\u4e9a"
+ }
+ },
+ "latlng": [
+ -15,
+ -140
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 4167,
+ "flag": "\ud83c\uddf5\ud83c\uddeb",
+ "demonyms": {
+ "eng": {
+ "f": "French Polynesian",
+ "m": "French Polynesian"
+ },
+ "fra": {
+ "f": "Polyn\u00e9sienne",
+ "m": "Polyn\u00e9sien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Qatar",
+ "official": "State of Qatar",
+ "native": {
+ "ara": {
+ "official": "\u062f\u0648\u0644\u0629 \u0642\u0637\u0631",
+ "common": "\u0642\u0637\u0631"
+ }
+ }
+ },
+ "tld": [
+ ".qa",
+ "\u0642\u0637\u0631."
+ ],
+ "cca2": "QA",
+ "ccn3": "634",
+ "cca3": "QAT",
+ "cioc": "QAT",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "QAR": {
+ "name": "Qatari riyal",
+ "symbol": "\u0631.\u0642"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "74"
+ ]
+ },
+ "capital": [
+ "Doha"
+ ],
+ "altSpellings": [
+ "QA",
+ "State of Qatar",
+ "Dawlat Qa\u1e6dar"
+ ],
+ "region": "Asia",
+ "subregion": "Western Asia",
+ "languages": {
+ "ara": "Arabic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062f\u0648\u0644\u0629 \u0642\u0637\u0631",
+ "common": "\u0642\u0637\u0631"
+ },
+ "bre": {
+ "official": "Stad Katar",
+ "common": "Katar"
+ },
+ "ces": {
+ "official": "St\u00e1t Katar",
+ "common": "Katar"
+ },
+ "deu": {
+ "official": "Staat Katar",
+ "common": "Katar"
+ },
+ "est": {
+ "official": "Katari Riik",
+ "common": "Katar"
+ },
+ "fin": {
+ "official": "Qatarin valtio",
+ "common": "Qatar"
+ },
+ "fra": {
+ "official": "\u00c9tat du Qatar",
+ "common": "Qatar"
+ },
+ "hrv": {
+ "official": "Dr\u017eava Katar",
+ "common": "Katar"
+ },
+ "hun": {
+ "official": "Katari \u00c1llam",
+ "common": "Katar"
+ },
+ "ita": {
+ "official": "Stato del Qatar",
+ "common": "Qatar"
+ },
+ "jpn": {
+ "official": "\u30ab\u30bf\u30fc\u30eb\u56fd",
+ "common": "\u30ab\u30bf\u30fc\u30eb"
+ },
+ "kor": {
+ "official": "\uce74\ud0c0\ub974\uad6d",
+ "common": "\uce74\ud0c0\ub974"
+ },
+ "nld": {
+ "official": "Staat Qatar",
+ "common": "Qatar"
+ },
+ "per": {
+ "official": "\u062f\u0648\u0644\u062a \u0642\u0637\u0631",
+ "common": "\u0642\u0637\u0631"
+ },
+ "pol": {
+ "official": "Pa\u0144stwo Katar",
+ "common": "Katar"
+ },
+ "por": {
+ "official": "Estado do Qatar",
+ "common": "Catar"
+ },
+ "rus": {
+ "official": "\u0413\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u043e \u041a\u0430\u0442\u0430\u0440",
+ "common": "\u041a\u0430\u0442\u0430\u0440"
+ },
+ "slk": {
+ "official": "Katarsk\u00fd \u0161t\u00e1t",
+ "common": "Katar"
+ },
+ "spa": {
+ "official": "Estado de Qatar",
+ "common": "Catar"
+ },
+ "srp": {
+ "official": "Dr\u017eava Katar",
+ "common": "Katar"
+ },
+ "swe": {
+ "official": "Staten Qatar",
+ "common": "Qatar"
+ },
+ "tur": {
+ "official": "Katar Devleti",
+ "common": "Katar"
+ },
+ "urd": {
+ "official": "\u0631\u06cc\u0627\u0633\u062a\u0650 \u0642\u0637\u0631",
+ "common": "\u0642\u0637\u0631"
+ },
+ "zho": {
+ "official": "\u5361\u5854\u5c14\u56fd",
+ "common": "\u5361\u5854\u5c14"
+ }
+ },
+ "latlng": [
+ 25.5,
+ 51.25
+ ],
+ "landlocked": false,
+ "borders": [
+ "SAU"
+ ],
+ "area": 11586,
+ "flag": "\ud83c\uddf6\ud83c\udde6",
+ "demonyms": {
+ "eng": {
+ "f": "Qatari",
+ "m": "Qatari"
+ },
+ "fra": {
+ "f": "Qatarienne",
+ "m": "Qatarien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "R\u00e9union",
+ "official": "R\u00e9union Island",
+ "native": {
+ "fra": {
+ "official": "Ile de la R\u00e9union",
+ "common": "La R\u00e9union"
+ }
+ }
+ },
+ "tld": [
+ ".re"
+ ],
+ "cca2": "RE",
+ "ccn3": "638",
+ "cca3": "REU",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "62"
+ ]
+ },
+ "capital": [
+ "Saint-Denis"
+ ],
+ "altSpellings": [
+ "RE",
+ "Reunion"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0632\u064a\u0631\u0629 \u0644\u0627 \u0631\u064a\u0648\u0646\u064a\u0648\u0646",
+ "common": "\u0644\u0627 \u0631\u064a\u0648\u0646\u064a\u0648\u0646"
+ },
+ "bre": {
+ "official": "Enez ar Re\u00fcnion",
+ "common": "Re\u00fcnion"
+ },
+ "ces": {
+ "official": "R\u00e9union",
+ "common": "R\u00e9union"
+ },
+ "deu": {
+ "official": "R\u00e9union",
+ "common": "R\u00e9union"
+ },
+ "est": {
+ "official": "R\u00e9unioni departemang",
+ "common": "R\u00e9union"
+ },
+ "fin": {
+ "official": "R\u00e9union",
+ "common": "R\u00e9union"
+ },
+ "fra": {
+ "official": "Ile de la R\u00e9union",
+ "common": "R\u00e9union"
+ },
+ "hrv": {
+ "official": "R\u00e9union Island",
+ "common": "R\u00e9union"
+ },
+ "hun": {
+ "official": "R\u00e9union",
+ "common": "R\u00e9union"
+ },
+ "ita": {
+ "official": "R\u00e9union",
+ "common": "Riunione"
+ },
+ "jpn": {
+ "official": "\u30ec\u30e6\u30cb\u30aa\u30f3",
+ "common": "\u30ec\u30e6\u30cb\u30aa\u30f3"
+ },
+ "kor": {
+ "official": "\ub808\uc704\ub2c8\uc639",
+ "common": "\ub808\uc704\ub2c8\uc639"
+ },
+ "nld": {
+ "official": "R\u00e9union",
+ "common": "R\u00e9union"
+ },
+ "per": {
+ "official": "\u0631\u0626\u0648\u0646\u06cc\u0648\u0646",
+ "common": "\u0631\u0626\u0648\u0646\u06cc\u0648\u0646"
+ },
+ "pol": {
+ "official": "Reunion",
+ "common": "Reunion"
+ },
+ "por": {
+ "official": "Ilha da Reuni\u00e3o",
+ "common": "Reuni\u00e3o"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u044e\u043d\u044c\u043e\u043d",
+ "common": "\u0420\u0435\u044e\u043d\u044c\u043e\u043d"
+ },
+ "slk": {
+ "official": "R\u00e9unionsk\u00fd z\u00e1morsk\u00fd departm\u00e1n",
+ "common": "R\u00e9union"
+ },
+ "spa": {
+ "official": "Isla de la Reuni\u00f3n",
+ "common": "Reuni\u00f3n"
+ },
+ "srp": {
+ "official": "Departman Reinion",
+ "common": "Reinion"
+ },
+ "swe": {
+ "official": "R\u00e9union",
+ "common": "R\u00e9union"
+ },
+ "tur": {
+ "official": "Réunion",
+ "common": "Réunion"
+ },
+ "urd": {
+ "official": "\u0631\u06d2 \u06cc\u0648\u0646\u06cc\u0648\u06ba \u062c\u0632\u06cc\u0631\u06c1",
+ "common": "\u0631\u06d2 \u06cc\u0648\u0646\u06cc\u0648\u06ba"
+ },
+ "zho": {
+ "official": "\u7559\u5c3c\u65fa\u5c9b",
+ "common": "\u7559\u5c3c\u65fa\u5c9b"
+ }
+ },
+ "latlng": [
+ -21.15,
+ 55.5
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 2511,
+ "flag": "\ud83c\uddf7\ud83c\uddea",
+ "demonyms": {
+ "eng": {
+ "f": "R\u00e9unionese",
+ "m": "R\u00e9unionese"
+ },
+ "fra": {
+ "f": "R\u00e9unionnaise",
+ "m": "R\u00e9unionnais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Romania",
+ "official": "Romania",
+ "native": {
+ "ron": {
+ "official": "Rom\u00e2nia",
+ "common": "Rom\u00e2nia"
+ }
+ }
+ },
+ "tld": [
+ ".ro"
+ ],
+ "cca2": "RO",
+ "ccn3": "642",
+ "cca3": "ROU",
+ "cioc": "ROU",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "RON": {
+ "name": "Romanian leu",
+ "symbol": "lei"
+ }
+ },
+ "idd": {
+ "root": "+4",
+ "suffixes": [
+ "0"
+ ]
+ },
+ "capital": [
+ "Bucharest"
+ ],
+ "altSpellings": [
+ "RO",
+ "Rumania",
+ "Roumania",
+ "Rom\u00e2nia"
+ ],
+ "region": "Europe",
+ "subregion": "Southeast Europe",
+ "languages": {
+ "ron": "Romanian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0631\u0648\u0645\u0627\u0646\u064a\u0627",
+ "common": "\u0631\u0648\u0645\u0627\u0646\u064a\u0627"
+ },
+ "bre": {
+ "official": "Roumania",
+ "common": "Roumania"
+ },
+ "ces": {
+ "official": "Rumunsko",
+ "common": "Rumunsko"
+ },
+ "deu": {
+ "official": "Rum\u00e4nien",
+ "common": "Rum\u00e4nien"
+ },
+ "est": {
+ "official": "Rumeenia",
+ "common": "Rumeenia"
+ },
+ "fin": {
+ "official": "Romania",
+ "common": "Romania"
+ },
+ "fra": {
+ "official": "Roumanie",
+ "common": "Roumanie"
+ },
+ "hrv": {
+ "official": "Rumunija",
+ "common": "Rumunjska"
+ },
+ "hun": {
+ "official": "Rom\u00e1nia",
+ "common": "Rom\u00e1nia"
+ },
+ "ita": {
+ "official": "Romania",
+ "common": "Romania"
+ },
+ "jpn": {
+ "official": "\u30eb\u30fc\u30de\u30cb\u30a2",
+ "common": "\u30eb\u30fc\u30de\u30cb\u30a2"
+ },
+ "kor": {
+ "official": "\ub8e8\ub9c8\ub2c8\uc544",
+ "common": "\ub8e8\ub9c8\ub2c8\uc544"
+ },
+ "nld": {
+ "official": "Roemeni\u00eb",
+ "common": "Roemeni\u00eb"
+ },
+ "per": {
+ "official": "\u0631\u0648\u0645\u0627\u0646\u06cc",
+ "common": "\u0631\u0648\u0645\u0627\u0646\u06cc"
+ },
+ "pol": {
+ "official": "Rumunia",
+ "common": "Rumunia"
+ },
+ "por": {
+ "official": "Rom\u00eania",
+ "common": "Rom\u00e9nia"
+ },
+ "rus": {
+ "official": "\u0420\u0443\u043c\u044b\u043d\u0438\u044f",
+ "common": "\u0420\u0443\u043c\u044b\u043d\u0438\u044f"
+ },
+ "slk": {
+ "official": "Rumunsko",
+ "common": "Rumunsko"
+ },
+ "spa": {
+ "official": "Rumania",
+ "common": "Rumania"
+ },
+ "srp": {
+ "official": "Rumunija",
+ "common": "Rumunija"
+ },
+ "swe": {
+ "official": "Rum\u00e4nien",
+ "common": "Rum\u00e4nien"
+ },
+ "tur": {
+ "official": "Romanya",
+ "common": "Romanya"
+ },
+ "urd": {
+ "official": "\u0631\u0648\u0645\u0627\u0646\u06cc\u06c1",
+ "common": "\u0631\u0648\u0645\u0627\u0646\u06cc\u06c1"
+ },
+ "zho": {
+ "official": "\u7f57\u9a6c\u5c3c\u4e9a",
+ "common": "\u7f57\u9a6c\u5c3c\u4e9a"
+ }
+ },
+ "latlng": [
+ 46,
+ 25
+ ],
+ "landlocked": false,
+ "borders": [
+ "BGR",
+ "HUN",
+ "MDA",
+ "SRB",
+ "UKR"
+ ],
+ "area": 238391,
+ "flag": "\ud83c\uddf7\ud83c\uddf4",
+ "demonyms": {
+ "eng": {
+ "f": "Romanian",
+ "m": "Romanian"
+ },
+ "fra": {
+ "f": "Roumaine",
+ "m": "Roumain"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Russia",
+ "official": "Russian Federation",
+ "native": {
+ "rus": {
+ "official": "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f",
+ "common": "\u0420\u043e\u0441\u0441\u0438\u044f"
+ }
+ }
+ },
+ "tld": [
+ ".ru",
+ ".su",
+ ".\u0440\u0444"
+ ],
+ "cca2": "RU",
+ "ccn3": "643",
+ "cca3": "RUS",
+ "cioc": "RUS",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "RUB": {
+ "name": "Russian ruble",
+ "symbol": "\u20bd"
+ }
+ },
+ "idd": {
+ "root": "+7",
+ "suffixes": [
+ "3",
+ "4",
+ "5",
+ "8",
+ "9"
+ ]
+ },
+ "capital": [
+ "Moscow"
+ ],
+ "altSpellings": [
+ "RU",
+ "Russian Federation",
+ "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f"
+ ],
+ "region": "Europe",
+ "subregion": "Eastern Europe",
+ "languages": {
+ "rus": "Russian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0631\u0648\u0633\u064a\u0627 \u0627\u0644\u0627\u062a\u062d\u0627\u062f\u064a\u0629",
+ "common": "\u0631\u0648\u0633\u064a\u0627"
+ },
+ "bre": {
+ "official": "Kevread Rusia",
+ "common": "Rusia"
+ },
+ "ces": {
+ "official": "Rusk\u00e1 federace",
+ "common": "Rusko"
+ },
+ "deu": {
+ "official": "Russische F\u00f6deration",
+ "common": "Russland"
+ },
+ "est": {
+ "official": "Venemaa F\u00f6deratsioon",
+ "common": "Venemaa"
+ },
+ "fin": {
+ "official": "Ven\u00e4j\u00e4n federaatio",
+ "common": "Ven\u00e4j\u00e4"
+ },
+ "fra": {
+ "official": "F\u00e9d\u00e9ration de Russie",
+ "common": "Russie"
+ },
+ "hrv": {
+ "official": "Ruska Federacija",
+ "common": "Rusija"
+ },
+ "hun": {
+ "official": "Oroszorsz\u00e1gi F\u00f6der\u00e1ci\u00f3",
+ "common": "Oroszorsz\u00e1g"
+ },
+ "ita": {
+ "official": "Federazione russa",
+ "common": "Russia"
+ },
+ "jpn": {
+ "official": "\u30ed\u30b7\u30a2\u9023\u90a6",
+ "common": "\u30ed\u30b7\u30a2"
+ },
+ "kor": {
+ "official": "\ub7ec\uc2dc\uc544 \uc5f0\ubc29",
+ "common": "\ub7ec\uc2dc\uc544"
+ },
+ "nld": {
+ "official": "Russische Federatie",
+ "common": "Rusland"
+ },
+ "per": {
+ "official": "\u0641\u062f\u0631\u0627\u0633\u06cc\u0648\u0646 \u0631\u0648\u0633\u06cc\u0647",
+ "common": "\u0631\u0648\u0633\u06cc\u0647"
+ },
+ "pol": {
+ "official": "Federacja Rosyjska",
+ "common": "Rosja"
+ },
+ "por": {
+ "official": "Federa\u00e7\u00e3o Russa",
+ "common": "R\u00fassia"
+ },
+ "rus": {
+ "official": "\u0420\u043e\u0441\u0441\u0438\u0439\u0441\u043a\u0430\u044f \u0424\u0435\u0434\u0435\u0440\u0430\u0446\u0438\u044f",
+ "common": "\u0420\u043e\u0441\u0441\u0438\u044f"
+ },
+ "slk": {
+ "official": "Rusk\u00e1 feder\u00e1cia",
+ "common": "Rusko"
+ },
+ "spa": {
+ "official": "Federaci\u00f3n de Rusia",
+ "common": "Rusia"
+ },
+ "srp": {
+ "official": "Ruska Federacija",
+ "common": "Rusija"
+ },
+ "swe": {
+ "official": "Ryska federationen",
+ "common": "Ryssland"
+ },
+ "tur": {
+ "official": "Rusya Federasyonu",
+ "common": "Rusya"
+ },
+ "urd": {
+ "official": "\u0631\u0648\u0633\u06cc \u0648\u0641\u0627\u0642",
+ "common": "\u0631\u0648\u0633"
+ },
+ "zho": {
+ "official": "\u4fc4\u7f57\u65af\u8054\u90a6",
+ "common": "\u4fc4\u7f57\u65af"
+ }
+ },
+ "latlng": [
+ 60,
+ 100
+ ],
+ "landlocked": false,
+ "borders": [
+ "AZE",
+ "BLR",
+ "CHN",
+ "EST",
+ "FIN",
+ "GEO",
+ "KAZ",
+ "PRK",
+ "LVA",
+ "LTU",
+ "MNG",
+ "NOR",
+ "POL",
+ "UKR"
+ ],
+ "area": 17098242,
+ "flag": "\ud83c\uddf7\ud83c\uddfa",
+ "demonyms": {
+ "eng": {
+ "f": "Russian",
+ "m": "Russian"
+ },
+ "fra": {
+ "f": "Russe",
+ "m": "Russe"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Rwanda",
+ "official": "Republic of Rwanda",
+ "native": {
+ "eng": {
+ "official": "Republic of Rwanda",
+ "common": "Rwanda"
+ },
+ "fra": {
+ "official": "R\u00e9publique rwandaise",
+ "common": "Rwanda"
+ },
+ "kin": {
+ "official": "Repubulika y'u Rwanda",
+ "common": "Rwanda"
+ }
+ }
+ },
+ "tld": [
+ ".rw"
+ ],
+ "cca2": "RW",
+ "ccn3": "646",
+ "cca3": "RWA",
+ "cioc": "RWA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "RWF": {
+ "name": "Rwandan franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "50"
+ ]
+ },
+ "capital": [
+ "Kigali"
+ ],
+ "altSpellings": [
+ "RW",
+ "Republic of Rwanda",
+ "Repubulika y'u Rwanda",
+ "R\u00e9publique du Rwanda"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "eng": "English",
+ "fra": "French",
+ "kin": "Kinyarwanda"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0631\u0648\u0627\u0646\u062f\u0627",
+ "common": "\u0631\u0648\u0627\u0646\u062f\u0627"
+ },
+ "bre": {
+ "official": "Republik Rwanda",
+ "common": "Rwanda"
+ },
+ "ces": {
+ "official": "Rwandsk\u00e1 republika",
+ "common": "Rwanda"
+ },
+ "deu": {
+ "official": "Republik Ruanda",
+ "common": "Ruanda"
+ },
+ "est": {
+ "official": "Rwanda Vabariik",
+ "common": "Rwanda"
+ },
+ "fin": {
+ "official": "Ruandan tasavalta",
+ "common": "Ruanda"
+ },
+ "fra": {
+ "official": "R\u00e9publique rwandaise",
+ "common": "Rwanda"
+ },
+ "hrv": {
+ "official": "Republika Ruandi",
+ "common": "Ruanda"
+ },
+ "hun": {
+ "official": "Ruandai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Ruanda"
+ },
+ "ita": {
+ "official": "Repubblica del Ruanda",
+ "common": "Ruanda"
+ },
+ "jpn": {
+ "official": "\u30eb\u30ef\u30f3\u30c0\u5171\u548c\u56fd",
+ "common": "\u30eb\u30ef\u30f3\u30c0"
+ },
+ "kor": {
+ "official": "\ub974\uc644\ub2e4 \uacf5\ud654\uad6d",
+ "common": "\ub974\uc644\ub2e4"
+ },
+ "nld": {
+ "official": "Republiek Rwanda",
+ "common": "Rwanda"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0631\u0648\u0627\u0646\u062f\u0627",
+ "common": "\u0631\u0648\u0627\u0646\u062f\u0627"
+ },
+ "pol": {
+ "official": "Republika Rwandy",
+ "common": "Rwanda"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Ruanda",
+ "common": "Ruanda"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0420\u0443\u0430\u043d\u0434\u0430",
+ "common": "\u0420\u0443\u0430\u043d\u0434\u0430"
+ },
+ "slk": {
+ "official": "Rwandsk\u00e1 republika",
+ "common": "Rwanda"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Rwanda",
+ "common": "Ruanda"
+ },
+ "srp": {
+ "official": "Republika Ruanda",
+ "common": "Ruanda"
+ },
+ "swe": {
+ "official": "Republiken Rwanda",
+ "common": "Rwanda"
+ },
+ "tur": {
+ "official": "Ruanda Cumhuriyeti",
+ "common": "Ruanda"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0631\u0648\u0627\u0646\u0688\u0627",
+ "common": "\u0631\u0648\u0627\u0646\u0688\u0627"
+ },
+ "zho": {
+ "official": "\u5362\u65fa\u8fbe\u5171\u548c\u56fd",
+ "common": "\u5362\u65fa\u8fbe"
+ }
+ },
+ "latlng": [
+ -2,
+ 30
+ ],
+ "landlocked": true,
+ "borders": [
+ "BDI",
+ "COD",
+ "TZA",
+ "UGA"
+ ],
+ "area": 26338,
+ "flag": "\ud83c\uddf7\ud83c\uddfc",
+ "demonyms": {
+ "eng": {
+ "f": "Rwandan",
+ "m": "Rwandan"
+ },
+ "fra": {
+ "f": "Rwandaise",
+ "m": "Rwandais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Saudi Arabia",
+ "official": "Kingdom of Saudi Arabia",
+ "native": {
+ "ara": {
+ "official": "\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629",
+ "common": "\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629"
+ }
+ }
+ },
+ "tld": [
+ ".sa",
+ ".\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629"
+ ],
+ "cca2": "SA",
+ "ccn3": "682",
+ "cca3": "SAU",
+ "cioc": "KSA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "SAR": {
+ "name": "Saudi riyal",
+ "symbol": "\u0631.\u0633"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "66"
+ ]
+ },
+ "capital": [
+ "Riyadh"
+ ],
+ "altSpellings": [
+ "Saudi",
+ "SA",
+ "Kingdom of Saudi Arabia",
+ "Al-Mamlakah al-\u2018Arabiyyah as-Su\u2018\u016bdiyyah"
+ ],
+ "region": "Asia",
+ "subregion": "Western Asia",
+ "languages": {
+ "ara": "Arabic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629",
+ "common": "\u0627\u0644\u0633\u0639\u0648\u062f\u064a\u0629"
+ },
+ "bre": {
+ "official": "Rouantelezh Arabia Saoudat",
+ "common": "Arabia Saoudat"
+ },
+ "ces": {
+ "official": "Sa\u00fadskoarabsk\u00e9 kr\u00e1lovstv\u00ed",
+ "common": "Sa\u00fadsk\u00e1 Ar\u00e1bie"
+ },
+ "deu": {
+ "official": "K\u00f6nigreich Saudi-Arabien",
+ "common": "Saudi-Arabien"
+ },
+ "est": {
+ "official": "Saudi Araabia Kuningriik",
+ "common": "Saudi Araabia"
+ },
+ "fin": {
+ "official": "Saudi-Arabian kuningaskunta",
+ "common": "Saudi-Arabia"
+ },
+ "fra": {
+ "official": "Royaume d'Arabie Saoudite",
+ "common": "Arabie Saoudite"
+ },
+ "hrv": {
+ "official": "Kraljevina Saudijska Arabija",
+ "common": "Saudijska Arabija"
+ },
+ "hun": {
+ "official": "Sza\u00fad-Ar\u00e1bia",
+ "common": "Sza\u00fad-Ar\u00e1bia"
+ },
+ "ita": {
+ "official": "Arabia Saudita",
+ "common": "Arabia Saudita"
+ },
+ "jpn": {
+ "official": "\u30b5\u30a6\u30b8\u30a2\u30e9\u30d3\u30a2\u738b\u56fd",
+ "common": "\u30b5\u30a6\u30b8\u30a2\u30e9\u30d3\u30a2"
+ },
+ "kor": {
+ "official": "\uc0ac\uc6b0\ub514\uc544\ub77c\ube44\uc544 \uc655\uad6d",
+ "common": "\uc0ac\uc6b0\ub514\uc544\ub77c\ube44\uc544"
+ },
+ "nld": {
+ "official": "Koninkrijk van Saoedi-Arabi\u00eb",
+ "common": "Saoedi-Arabi\u00eb"
+ },
+ "per": {
+ "official": "\u067e\u0627\u062f\u0634\u0627\u0647\u06cc \u0639\u0631\u0628\u06cc \u0633\u064e\u0639\u0648\u062f\u06cc",
+ "common": "\u0639\u0631\u0628\u0633\u062a\u0627\u0646 \u0633\u0639\u0648\u062f\u06cc"
+ },
+ "pol": {
+ "official": "Kr\u00f3lestwo Arabii Saudyjskiej",
+ "common": "Arabia Saudyjska"
+ },
+ "por": {
+ "official": "Reino da Ar\u00e1bia Saudita",
+ "common": "Ar\u00e1bia Saudita"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u0440\u043e\u043b\u0435\u0432\u0441\u0442\u0432\u043e \u0421\u0430\u0443\u0434\u043e\u0432\u0441\u043a\u0430\u044f \u0410\u0440\u0430\u0432\u0438\u044f",
+ "common": "\u0421\u0430\u0443\u0434\u043e\u0432\u0441\u043a\u0430\u044f \u0410\u0440\u0430\u0432\u0438\u044f"
+ },
+ "slk": {
+ "official": "Saudskoarabsk\u00e9 kr\u00e1\u013eovstvo",
+ "common": "Saudsk\u00e1 Ar\u00e1bia"
+ },
+ "spa": {
+ "official": "Reino de Arabia Saudita",
+ "common": "Arabia Saud\u00ed"
+ },
+ "srp": {
+ "official": "Kraljevina Saudijska Arabija",
+ "common": "Saudijska Arabija"
+ },
+ "swe": {
+ "official": "Kungad\u00f6met Saudiarabien",
+ "common": "Saudiarabien"
+ },
+ "tur": {
+ "official": "Suudi Arabistan Krall\u0131\u011f\u0131",
+ "common": "Suudi Arabistan"
+ },
+ "urd": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a\u0650 \u0633\u0639\u0648\u062f\u06cc \u0639\u0631\u0628",
+ "common": "\u0633\u0639\u0648\u062f\u06cc \u0639\u0631\u0628"
+ },
+ "zho": {
+ "official": "\u6c99\u7279\u963f\u62c9\u4f2f\u738b\u56fd",
+ "common": "\u6c99\u7279\u963f\u62c9\u4f2f"
+ }
+ },
+ "latlng": [
+ 25,
+ 45
+ ],
+ "landlocked": false,
+ "borders": [
+ "IRQ",
+ "JOR",
+ "KWT",
+ "OMN",
+ "QAT",
+ "ARE",
+ "YEM"
+ ],
+ "area": 2149690,
+ "flag": "\ud83c\uddf8\ud83c\udde6",
+ "demonyms": {
+ "eng": {
+ "f": "Saudi Arabian",
+ "m": "Saudi Arabian"
+ },
+ "fra": {
+ "f": "Saoudienne",
+ "m": "Saoudien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Sudan",
+ "official": "Republic of the Sudan",
+ "native": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0633\u0648\u062f\u0627\u0646",
+ "common": "\u0627\u0644\u0633\u0648\u062f\u0627\u0646"
+ },
+ "eng": {
+ "official": "Republic of the Sudan",
+ "common": "Sudan"
+ }
+ }
+ },
+ "tld": [
+ ".sd"
+ ],
+ "cca2": "SD",
+ "ccn3": "729",
+ "cca3": "SDN",
+ "cioc": "SUD",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "SDG": {
+ "name": "Sudanese pound",
+ "symbol": "PT"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "49"
+ ]
+ },
+ "capital": [
+ "Khartoum"
+ ],
+ "altSpellings": [
+ "SD",
+ "Republic of the Sudan",
+ "Jumh\u016br\u012byat as-S\u016bd\u0101n"
+ ],
+ "region": "Africa",
+ "subregion": "Northern Africa",
+ "languages": {
+ "ara": "Arabic",
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0633\u0648\u062f\u0627\u0646",
+ "common": "\u0627\u0644\u0633\u0648\u062f\u0627\u0646"
+ },
+ "bre": {
+ "official": "Republik Soudan",
+ "common": "Soudan"
+ },
+ "ces": {
+ "official": "S\u00fad\u00e1nsk\u00e1 republika",
+ "common": "S\u00fad\u00e1n"
+ },
+ "deu": {
+ "official": "Republik Sudan",
+ "common": "Sudan"
+ },
+ "est": {
+ "official": "Sudaani Vabariik",
+ "common": "Sudaan"
+ },
+ "fin": {
+ "official": "Sudanin tasavalta",
+ "common": "Sudan"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Soudan",
+ "common": "Soudan"
+ },
+ "hrv": {
+ "official": "Republika Sudan",
+ "common": "Sudan"
+ },
+ "hun": {
+ "official": "Szud\u00e1ni K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Szud\u00e1n"
+ },
+ "ita": {
+ "official": "Repubblica del Sudan",
+ "common": "Sudan"
+ },
+ "jpn": {
+ "official": "\u30b9\u30fc\u30c0\u30f3\u5171\u548c\u56fd",
+ "common": "\u30b9\u30fc\u30c0\u30f3"
+ },
+ "kor": {
+ "official": "\uc218\ub2e8 \uacf5\ud654\uad6d",
+ "common": "\uc218\ub2e8"
+ },
+ "nld": {
+ "official": "Republiek Soedan",
+ "common": "Soedan"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0633\u0648\u062f\u0627\u0646",
+ "common": "\u0633\u0648\u062f\u0627\u0646"
+ },
+ "pol": {
+ "official": "Republika Sudanu",
+ "common": "Sudan"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Sud\u00e3o",
+ "common": "Sud\u00e3o"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u0443\u0434\u0430\u043d",
+ "common": "\u0421\u0443\u0434\u0430\u043d"
+ },
+ "slk": {
+ "official": "Sud\u00e1nska republika",
+ "common": "Sud\u00e1n"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Sud\u00e1n",
+ "common": "Sud\u00e1n"
+ },
+ "srp": {
+ "official": "Republika Sudan",
+ "common": "Sudan"
+ },
+ "swe": {
+ "official": "Republiken Sudan",
+ "common": "Sudan"
+ },
+ "tur": {
+ "official": "Sudan Cumhuriyeti",
+ "common": "Sudan"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0633\u0648\u062f\u0627\u0646",
+ "common": "\u0633\u0648\u062f\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u82cf\u4e39\u5171\u548c\u56fd",
+ "common": "\u82cf\u4e39"
+ }
+ },
+ "latlng": [
+ 15,
+ 30
+ ],
+ "landlocked": false,
+ "borders": [
+ "CAF",
+ "TCD",
+ "EGY",
+ "ERI",
+ "ETH",
+ "LBY",
+ "SSD"
+ ],
+ "area": 1886068,
+ "flag": "\ud83c\uddf8\ud83c\udde9",
+ "demonyms": {
+ "eng": {
+ "f": "Sudanese",
+ "m": "Sudanese"
+ },
+ "fra": {
+ "f": "Soudanaise",
+ "m": "Soudanais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Senegal",
+ "official": "Republic of Senegal",
+ "native": {
+ "fra": {
+ "official": "R\u00e9publique du S\u00e9n\u00e9gal",
+ "common": "S\u00e9n\u00e9gal"
+ }
+ }
+ },
+ "tld": [
+ ".sn"
+ ],
+ "cca2": "SN",
+ "ccn3": "686",
+ "cca3": "SEN",
+ "cioc": "SEN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "XOF": {
+ "name": "West African CFA franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "21"
+ ]
+ },
+ "capital": [
+ "Dakar"
+ ],
+ "altSpellings": [
+ "SN",
+ "Republic of Senegal",
+ "R\u00e9publique du S\u00e9n\u00e9gal"
+ ],
+ "region": "Africa",
+ "subregion": "Western Africa",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0633\u0646\u063a\u0627\u0644",
+ "common": "\u0627\u0644\u0633\u0646\u063a\u0627\u0644"
+ },
+ "bre": {
+ "official": "Republik Senegal",
+ "common": "Senegal"
+ },
+ "ces": {
+ "official": "Senegalsk\u00e1 republika",
+ "common": "Senegal"
+ },
+ "deu": {
+ "official": "Republik Senegal",
+ "common": "Senegal"
+ },
+ "est": {
+ "official": "Senegali Vabariik",
+ "common": "Senegal"
+ },
+ "fin": {
+ "official": "Senegalin tasavalta",
+ "common": "Senegal"
+ },
+ "fra": {
+ "official": "R\u00e9publique du S\u00e9n\u00e9gal",
+ "common": "S\u00e9n\u00e9gal"
+ },
+ "hrv": {
+ "official": "Republika Senegal",
+ "common": "Senegal"
+ },
+ "hun": {
+ "official": "Szeneg\u00e1li K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Szeneg\u00e1l"
+ },
+ "ita": {
+ "official": "Repubblica del Senegal",
+ "common": "Senegal"
+ },
+ "jpn": {
+ "official": "\u30bb\u30cd\u30ac\u30eb\u5171\u548c\u56fd",
+ "common": "\u30bb\u30cd\u30ac\u30eb"
+ },
+ "kor": {
+ "official": "\uc138\ub124\uac08 \uacf5\ud654\uad6d",
+ "common": "\uc138\ub124\uac08"
+ },
+ "nld": {
+ "official": "Republiek Senegal",
+ "common": "Senegal"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0633\u0646\u06af\u0627\u0644",
+ "common": "\u0633\u0646\u06af\u0627\u0644"
+ },
+ "pol": {
+ "official": "Senegal",
+ "common": "Senegal"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Senegal",
+ "common": "Senegal"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u0435\u043d\u0435\u0433\u0430\u043b",
+ "common": "\u0421\u0435\u043d\u0435\u0433\u0430\u043b"
+ },
+ "slk": {
+ "official": "Senegalsk\u00e1 republika",
+ "common": "Senegal"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Senegal",
+ "common": "Senegal"
+ },
+ "srp": {
+ "official": "Republika Senegal",
+ "common": "Senegal"
+ },
+ "swe": {
+ "official": "Republiken Senegal",
+ "common": "Senegal"
+ },
+ "tur": {
+ "official": "Senegal Cumhuriyeti",
+ "common": "Senegal"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0633\u06cc\u0646\u06cc\u06af\u0627\u0644",
+ "common": "\u0633\u06cc\u0646\u06cc\u06af\u0627\u0644"
+ },
+ "zho": {
+ "official": "\u585e\u5185\u52a0\u5c14\u5171\u548c\u56fd",
+ "common": "\u585e\u5185\u52a0\u5c14"
+ }
+ },
+ "latlng": [
+ 14,
+ -14
+ ],
+ "landlocked": false,
+ "borders": [
+ "GMB",
+ "GIN",
+ "GNB",
+ "MLI",
+ "MRT"
+ ],
+ "area": 196722,
+ "flag": "\ud83c\uddf8\ud83c\uddf3",
+ "demonyms": {
+ "eng": {
+ "f": "Senegalese",
+ "m": "Senegalese"
+ },
+ "fra": {
+ "f": "S\u00e9n\u00e9galaise",
+ "m": "S\u00e9n\u00e9galais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Singapore",
+ "official": "Republic of Singapore",
+ "native": {
+ "eng": {
+ "official": "Republic of Singapore",
+ "common": "Singapore"
+ },
+ "msa": {
+ "official": "Republik Singapura",
+ "common": "Singapura"
+ },
+ "tam": {
+ "official": "\u0b9a\u0bbf\u0b99\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0bc2\u0bb0\u0bcd \u0b95\u0bc1\u0b9f\u0bbf\u0baf\u0bb0\u0b9a\u0bc1",
+ "common": "\u0b9a\u0bbf\u0b99\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0bc2\u0bb0\u0bcd"
+ },
+ "zho": {
+ "official": "\u65b0\u52a0\u5761\u5171\u548c\u56fd",
+ "common": "\u65b0\u52a0\u5761"
+ }
+ }
+ },
+ "tld": [
+ ".sg",
+ ".\u65b0\u52a0\u5761",
+ ".\u0b9a\u0bbf\u0b99\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0bc2\u0bb0\u0bcd"
+ ],
+ "cca2": "SG",
+ "ccn3": "702",
+ "cca3": "SGP",
+ "cioc": "SGP",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "SGD": {
+ "name": "Singapore dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "5"
+ ]
+ },
+ "capital": [
+ "Singapore"
+ ],
+ "altSpellings": [
+ "SG",
+ "Singapura",
+ "Republik Singapura",
+ "\u65b0\u52a0\u5761\u5171\u548c\u56fd"
+ ],
+ "region": "Asia",
+ "subregion": "South-Eastern Asia",
+ "languages": {
+ "eng": "English",
+ "msa": "Malay",
+ "tam": "Tamil",
+ "zho": "Chinese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0633\u0646\u063a\u0627\u0641\u0648\u0631\u0629",
+ "common": "\u0633\u0646\u063a\u0627\u0641\u0648\u0631\u0629"
+ },
+ "bre": {
+ "official": "Republik Singapour",
+ "common": "Singapour"
+ },
+ "ces": {
+ "official": "Singapursk\u00e1 republika",
+ "common": "Singapur"
+ },
+ "deu": {
+ "official": "Republik Singapur",
+ "common": "Singapur"
+ },
+ "est": {
+ "official": "Singapuri Vabariik",
+ "common": "Singapur"
+ },
+ "fin": {
+ "official": "Singaporen tasavalta",
+ "common": "Singapore"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Singapour",
+ "common": "Singapour"
+ },
+ "hrv": {
+ "official": "Republika Singapur",
+ "common": "Singapur"
+ },
+ "hun": {
+ "official": "Szingap\u00fari K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Szingap\u00far"
+ },
+ "ita": {
+ "official": "Repubblica di Singapore",
+ "common": "Singapore"
+ },
+ "jpn": {
+ "official": "\u30b7\u30f3\u30ac\u30dd\u30fc\u30eb\u5171\u548c\u56fd",
+ "common": "\u30b7\u30f3\u30ac\u30dd\u30fc\u30eb"
+ },
+ "kor": {
+ "official": "\uc2f1\uac00\ud3ec\ub974 \uacf5\ud654\uad6d",
+ "common": "\uc2f1\uac00\ud3ec\ub974"
+ },
+ "nld": {
+ "official": "Republiek Singapore",
+ "common": "Singapore"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0633\u0646\u06af\u0627\u067e\u0648\u0631",
+ "common": "\u0633\u0646\u06af\u0627\u067e\u0648\u0631"
+ },
+ "pol": {
+ "official": "Republika Singapuru",
+ "common": "Singapur"
+ },
+ "por": {
+ "official": "Rep\u00fablica de Singapura",
+ "common": "Singapura"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u0438\u043d\u0433\u0430\u043f\u0443\u0440",
+ "common": "\u0421\u0438\u043d\u0433\u0430\u043f\u0443\u0440"
+ },
+ "slk": {
+ "official": "Singapursk\u00e1 republika",
+ "common": "Singapur"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Singapur",
+ "common": "Singapur"
+ },
+ "srp": {
+ "official": "Republika Singapur",
+ "common": "Singapur"
+ },
+ "swe": {
+ "official": "Republiken Singapore",
+ "common": "Singapore"
+ },
+ "tur": {
+ "official": "Singapur Cumhuriyeti",
+ "common": "Singapur"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0633\u0646\u06af\u0627\u067e\u0648\u0631",
+ "common": "\u0633\u0646\u06af\u0627\u067e\u0648\u0631"
+ },
+ "zho": {
+ "official": "\u65b0\u52a0\u5761\u5171\u548c\u56fd",
+ "common": "\u65b0\u52a0\u5761"
+ }
+ },
+ "latlng": [
+ 1.36666666,
+ 103.8
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 710,
+ "flag": "\ud83c\uddf8\ud83c\uddec",
+ "demonyms": {
+ "eng": {
+ "f": "Singaporean",
+ "m": "Singaporean"
+ },
+ "fra": {
+ "f": "Singapourienne",
+ "m": "Singapourien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "South Georgia",
+ "official": "South Georgia and the South Sandwich Islands",
+ "native": {
+ "eng": {
+ "official": "South Georgia and the South Sandwich Islands",
+ "common": "South Georgia"
+ }
+ }
+ },
+ "tld": [
+ ".gs"
+ ],
+ "cca2": "GS",
+ "ccn3": "239",
+ "cca3": "SGS",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "SHP": {
+ "name": "Saint Helena pound",
+ "symbol": "\u00a3"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "00"
+ ]
+ },
+ "capital": [
+ "King Edward Point"
+ ],
+ "altSpellings": [
+ "GS",
+ "South Georgia and the South Sandwich Islands"
+ ],
+ "region": "Antarctic",
+ "subregion": "",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0648\u0631\u062c\u064a\u0627 \u0627\u0644\u062c\u0646\u0648\u0628\u064a\u0629 \u0648\u062c\u0632\u0631 \u0633\u0627\u0646\u062f\u0648\u062a\u0634 \u0627\u0644\u062c\u0646\u0648\u0628\u064a\u0629",
+ "common": "\u062c\u0648\u0631\u062c\u064a\u0627 \u0627\u0644\u062c\u0646\u0648\u0628\u064a\u0629"
+ },
+ "bre": {
+ "official": "Georgia ar Su hag Inizi Sandwich ar Su",
+ "common": "Georgia ar Su hag Inizi Sandwich ar Su"
+ },
+ "ces": {
+ "official": "Ji\u017en\u00ed Georgie a Ji\u017en\u00ed Sandwichovy ostrovy",
+ "common": "Ji\u017en\u00ed Georgie a Ji\u017en\u00ed Sandwichovy ostrovy"
+ },
+ "deu": {
+ "official": "S\u00fcdgeorgien und die S\u00fcdlichen Sandwichinseln",
+ "common": "S\u00fcdgeorgien und die S\u00fcdlichen Sandwichinseln"
+ },
+ "est": {
+ "official": "L\u00f5una-Georgia ja L\u00f5una-Sandwichi saared",
+ "common": "L\u00f5una-Georgia ja L\u00f5una-Sandwichi saared"
+ },
+ "fin": {
+ "official": "Etel\u00e4-Georgia ja Etel\u00e4iset Sandwichsaaret",
+ "common": "Etel\u00e4-Georgia ja Etel\u00e4iset Sandwichsaaret"
+ },
+ "fra": {
+ "official": "G\u00e9orgie du Sud et les \u00eeles Sandwich du Sud",
+ "common": "G\u00e9orgie du Sud-et-les \u00celes Sandwich du Sud"
+ },
+ "hrv": {
+ "official": "Ju\u017ena D\u017eord\u017eija i Otoci Ju\u017eni Sendvi\u010d",
+ "common": "Ju\u017ena Georgija i oto\u010dje Ju\u017eni Sandwich"
+ },
+ "hun": {
+ "official": "D\u00e9li-Georgia \u00e9s D\u00e9li-Sandwich-szigetek",
+ "common": "D\u00e9li-Georgia \u00e9s D\u00e9li-Sandwich-szigetek"
+ },
+ "ita": {
+ "official": "Georgia del Sud e isole Sandwich del Sud",
+ "common": "Georgia del Sud e Isole Sandwich Meridionali"
+ },
+ "jpn": {
+ "official": "\u5357\u30b8\u30e7\u30fc\u30b8\u30a2\u5cf6\u30fb\u5357\u30b5\u30f3\u30c9\u30a4\u30c3\u30c1\u8af8\u5cf6",
+ "common": "\u30b5\u30a6\u30b9\u30b8\u30e7\u30fc\u30b8\u30a2\u30fb\u30b5\u30a6\u30b9\u30b5\u30f3\u30c9\u30a6\u30a3\u30c3\u30c1\u8af8\u5cf6"
+ },
+ "kor": {
+ "official": "\uc870\uc9c0\uc544",
+ "common": "\uc870\uc9c0\uc544"
+ },
+ "nld": {
+ "official": "Zuid-Georgi\u00eb en de Zuidelijke Sandwich-eilanden",
+ "common": "Zuid-Georgia en Zuidelijke Sandwicheilanden"
+ },
+ "per": {
+ "official": "\u062c\u0632\u0627\u06cc\u0631 \u062c\u0648\u0631\u062c\u06cc\u0627\u06cc \u062c\u0646\u0648\u0628\u06cc \u0648 \u0633\u0627\u0646\u062f\u0648\u06cc\u0686 \u062c\u0646\u0648\u0628\u06cc",
+ "common": "\u062c\u0632\u0627\u06cc\u0631 \u062c\u0648\u0631\u062c\u06cc\u0627\u06cc \u062c\u0646\u0648\u0628\u06cc \u0648 \u0633\u0627\u0646\u062f\u0648\u06cc\u0686 \u062c\u0646\u0648\u0628\u06cc"
+ },
+ "pol": {
+ "official": "Georgia Po\u0142udniowa i Sandwich Po\u0142udniowy",
+ "common": "Georgia Po\u0142udniowa i Sandwich Po\u0142udniowy"
+ },
+ "por": {
+ "official": "Ge\u00f3rgia do Sul e Sandwich do Sul",
+ "common": "Ilhas Ge\u00f3rgia do Sul e Sandwich do Sul"
+ },
+ "rus": {
+ "official": "\u042e\u0436\u043d\u0430\u044f \u0413\u0435\u043e\u0440\u0433\u0438\u044f \u0438 \u042e\u0436\u043d\u044b\u0435 \u0421\u0430\u043d\u0434\u0432\u0438\u0447\u0435\u0432\u044b \u043e\u0441\u0442\u0440\u043e\u0432\u0430",
+ "common": "\u042e\u0436\u043d\u0430\u044f \u0413\u0435\u043e\u0440\u0433\u0438\u044f \u0438 \u042e\u0436\u043d\u044b\u0435 \u0421\u0430\u043d\u0434\u0432\u0438\u0447\u0435\u0432\u044b \u043e\u0441\u0442\u0440\u043e\u0432\u0430"
+ },
+ "slk": {
+ "official": "Ju\u017en\u00e1 Georgia a Ju\u017en\u00e9 Sandwichove ostrovy",
+ "common": "Ju\u017en\u00e1 Georgia a Ju\u017en\u00e9 Sandwichove ostrovy"
+ },
+ "spa": {
+ "official": "Georgia del Sur y las Islas Sandwich del Sur",
+ "common": "Islas Georgias del Sur y Sandwich del Sur"
+ },
+ "srp": {
+ "official": "Ju\u017ena D\u017eord\u017eija i Ju\u017ena Sendvi\u010dka Ostrva",
+ "common": "Ju\u017ena D\u017eord\u017eija"
+ },
+ "swe": {
+ "official": "Sydgeorgien",
+ "common": "Sydgeorgien"
+ },
+ "tur": {
+ "official": "G\u00fcney Georgia ve G\u00fcney Sandwich Adalar\u0131",
+ "common": "G\u00fcney Georgia ve G\u00fcney Sandwich Adalar\u0131"
+ },
+ "urd": {
+ "official": "\u062c\u0646\u0648\u0628\u06cc \u062c\u0627\u0631\u062c\u06cc\u0627 \u0648 \u062c\u0632\u0627\u0626\u0631 \u062c\u0646\u0648\u0628\u06cc \u0633\u06cc\u0646\u0688\u0648\u0686",
+ "common": "\u062c\u0646\u0648\u0628\u06cc \u062c\u0627\u0631\u062c\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u5357\u4e54\u6cbb\u4e9a\u5c9b\u548c\u5357\u6851\u5a01\u5947\u7fa4\u5c9b",
+ "common": "\u5357\u4e54\u6cbb\u4e9a"
+ }
+ },
+ "latlng": [
+ -54.5,
+ -37
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 3903,
+ "flag": "\ud83c\uddec\ud83c\uddf8",
+ "demonyms": {
+ "eng": {
+ "f": "South Georgian South Sandwich Islander",
+ "m": "South Georgian South Sandwich Islander"
+ },
+ "fra": {
+ "f": "",
+ "m": ""
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Svalbard and Jan Mayen",
+ "official": "Svalbard og Jan Mayen",
+ "native": {
+ "nor": {
+ "official": "Svalbard og Jan Mayen",
+ "common": "Svalbard og Jan Mayen"
+ }
+ }
+ },
+ "tld": [
+ ".sj"
+ ],
+ "cca2": "SJ",
+ "ccn3": "744",
+ "cca3": "SJM",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "NOK": {
+ "name": "krone",
+ "symbol": "kr"
+ }
+ },
+ "idd": {
+ "root": "+4",
+ "suffixes": [
+ "779"
+ ]
+ },
+ "capital": [
+ "Longyearbyen"
+ ],
+ "altSpellings": [
+ "SJ",
+ "Svalbard and Jan Mayen Islands"
+ ],
+ "region": "Europe",
+ "subregion": "Northern Europe",
+ "languages": {
+ "nor": "Norwegian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0633\u0641\u0627\u0644\u0628\u0627\u0631\u062f \u0648\u064a\u0627\u0646 \u0645\u0627\u064a\u0646",
+ "common": "\u0633\u0641\u0627\u0644\u0628\u0627\u0631\u062f \u0648\u064a\u0627\u0646 \u0645\u0627\u064a\u0646"
+ },
+ "bre": {
+ "official": "Svalbard ha Jan Mayen",
+ "common": "Svalbard ha Jan Mayen"
+ },
+ "ces": {
+ "official": "\u0160picberky a Jan Mayen",
+ "common": "\u0160picberky a Jan Mayen"
+ },
+ "deu": {
+ "official": "Spitzbergen und Jan Mayen",
+ "common": "Spitzbergen und Jan Mayen"
+ },
+ "est": {
+ "official": "Svalbard",
+ "common": "Svalbard"
+ },
+ "fin": {
+ "official": "Huippuvuoret",
+ "common": "Huippuvuoret"
+ },
+ "fra": {
+ "official": "Jan Mayen Svalbard",
+ "common": "Svalbard et Jan Mayen"
+ },
+ "hrv": {
+ "official": "Svalbard og Jan Mayen",
+ "common": "Svalbard i Jan Mayen"
+ },
+ "hun": {
+ "official": "Svalbard \u00e9s Jan Mayen",
+ "common": "Svalbard \u00e9s Jan Mayen"
+ },
+ "ita": {
+ "official": "Svalbard og Jan Mayen",
+ "common": "Svalbard e Jan Mayen"
+ },
+ "jpn": {
+ "official": "\u30b9\u30f4\u30a1\u30fc\u30eb\u30d0\u30eb\u8af8\u5cf6\u30fb\u30e4\u30f3\u30de\u30a4\u30a8\u30f3\u5cf6",
+ "common": "\u30b9\u30f4\u30a1\u30fc\u30eb\u30d0\u30eb\u8af8\u5cf6\u304a\u3088\u3073\u30e4\u30f3\u30de\u30a4\u30a8\u30f3\u5cf6"
+ },
+ "kor": {
+ "official": "\uc2a4\ubc1c\ubc14\ub974 \uc580\ub9c8\uc60c \uc81c\ub3c4",
+ "common": "\uc2a4\ubc1c\ubc14\ub974 \uc580\ub9c8\uc60c \uc81c\ub3c4"
+ },
+ "nld": {
+ "official": "Svalbard og Jan Mayen",
+ "common": "Svalbard en Jan Mayen"
+ },
+ "per": {
+ "official": "\u0633\u0648\u0627\u0644\u0628\u0627\u0631\u062f \u0648 \u06cc\u0627\u0646 \u0645\u0627\u06cc\u0646",
+ "common": "\u0633\u0648\u0627\u0644\u0628\u0627\u0631\u062f \u0648 \u06cc\u0627\u0646 \u0645\u0627\u06cc\u0646"
+ },
+ "pol": {
+ "official": "Svalbard i Jan Mayen",
+ "common": "Svalbard i Jan Mayen"
+ },
+ "por": {
+ "official": "Svalbard og Jan Mayen",
+ "common": "Ilhas Svalbard e Jan Mayen"
+ },
+ "rus": {
+ "official": "\u0421\u0432\u0430\u043b\u044c\u0431\u0430\u0440\u0434\u0430 \u043e\u0433 \u042f\u043d-\u041c\u0430\u0439\u0435\u043d",
+ "common": "\u0428\u043f\u0438\u0446\u0431\u0435\u0440\u0433\u0435\u043d \u0438 \u042f\u043d-\u041c\u0430\u0439\u0435\u043d"
+ },
+ "slk": {
+ "official": "Svalbard a Jan Mayen",
+ "common": "Svalbard a Jan Mayen"
+ },
+ "spa": {
+ "official": "Svalbard og Jan Mayen",
+ "common": "Islas Svalbard y Jan Mayen"
+ },
+ "srp": {
+ "official": "Svalbard i Jan Majen",
+ "common": "Svalbard i Jan Majen"
+ },
+ "swe": {
+ "official": "Svalbard och Jan Mayen",
+ "common": "Svalbard och Jan Mayen"
+ },
+ "tur": {
+ "official": "Svalbard ve Jan Mayen",
+ "common": "Svalbard ve Jan Mayen"
+ },
+ "urd": {
+ "official": "\u0633\u0648\u0627\u0644\u0628\u0627\u0631\u0688 \u0627\u0648\u0631 \u062c\u0627\u0646 \u0645\u06cc\u0626\u0646",
+ "common": "\u0633\u0648\u0627\u0644\u0628\u0627\u0631\u0688 \u0627\u0648\u0631 \u062c\u0627\u0646 \u0645\u06cc\u0626\u0646"
+ },
+ "zho": {
+ "official": "\u65af\u74e6\u5c14\u5df4\u7279",
+ "common": "\u65af\u74e6\u5c14\u5df4\u7279"
+ }
+ },
+ "latlng": [
+ 78,
+ 20
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": -1,
+ "flag": "\ud83c\uddf8\ud83c\uddef",
+ "demonyms": {
+ "eng": {
+ "f": "Norwegian",
+ "m": "Norwegian"
+ },
+ "fra": {
+ "f": "",
+ "m": ""
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Solomon Islands",
+ "official": "Solomon Islands",
+ "native": {
+ "eng": {
+ "official": "Solomon Islands",
+ "common": "Solomon Islands"
+ }
+ }
+ },
+ "tld": [
+ ".sb"
+ ],
+ "cca2": "SB",
+ "ccn3": "090",
+ "cca3": "SLB",
+ "cioc": "SOL",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "SBD": {
+ "name": "Solomon Islands dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "77"
+ ]
+ },
+ "capital": [
+ "Honiara"
+ ],
+ "altSpellings": [
+ "SB"
+ ],
+ "region": "Oceania",
+ "subregion": "Melanesia",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0632\u0631 \u0633\u0644\u064a\u0645\u0627\u0646",
+ "common": "\u062c\u0632\u0631 \u0633\u0644\u064a\u0645\u0627\u0646"
+ },
+ "bre": {
+ "official": "Inizi Salomon",
+ "common": "Inizi Salomon"
+ },
+ "ces": {
+ "official": "\u0160alamounovy ostrovy",
+ "common": "\u0160alamounovy ostrovy"
+ },
+ "deu": {
+ "official": "Salomonen",
+ "common": "Salomonen"
+ },
+ "est": {
+ "official": "Saalomoni Saared",
+ "common": "Saalomoni Saared"
+ },
+ "fin": {
+ "official": "Salomonsaaret",
+ "common": "Salomonsaaret"
+ },
+ "fra": {
+ "official": "\u00celes Salomon",
+ "common": "\u00celes Salomon"
+ },
+ "hrv": {
+ "official": "Solomonski Otoci",
+ "common": "Solomonski Otoci"
+ },
+ "hun": {
+ "official": "Salamon-szigetek",
+ "common": "Salamon-szigetek"
+ },
+ "ita": {
+ "official": "Isole Salomone",
+ "common": "Isole Salomone"
+ },
+ "jpn": {
+ "official": "\u30bd\u30ed\u30e2\u30f3\u8af8\u5cf6",
+ "common": "\u30bd\u30ed\u30e2\u30f3\u8af8\u5cf6"
+ },
+ "kor": {
+ "official": "\uc194\ub85c\ubaac \uc81c\ub3c4",
+ "common": "\uc194\ub85c\ubaac \uc81c\ub3c4"
+ },
+ "nld": {
+ "official": "Solomon eilanden",
+ "common": "Salomonseilanden"
+ },
+ "per": {
+ "official": "\u062c\u0632\u0627\u06cc\u0631 \u0633\u0644\u06cc\u0645\u0627\u0646",
+ "common": "\u062c\u0632\u0627\u06cc\u0631 \u0633\u0644\u06cc\u0645\u0627\u0646"
+ },
+ "pol": {
+ "official": "Wyspy Salomona",
+ "common": "Wyspy Salomona"
+ },
+ "por": {
+ "official": "Ilhas Salom\u00e3o",
+ "common": "Ilhas Salom\u00e3o"
+ },
+ "rus": {
+ "official": "\u0421\u043e\u043b\u043e\u043c\u043e\u043d\u043e\u0432\u044b \u043e\u0441\u0442\u0440\u043e\u0432\u0430",
+ "common": "\u0421\u043e\u043b\u043e\u043c\u043e\u043d\u043e\u0432\u044b \u041e\u0441\u0442\u0440\u043e\u0432\u0430"
+ },
+ "slk": {
+ "official": "Salomonove ostrovy",
+ "common": "Salomonove ostrovy"
+ },
+ "spa": {
+ "official": "islas Salom\u00f3n",
+ "common": "Islas Salom\u00f3n"
+ },
+ "srp": {
+ "official": "Solomonova Ostrva",
+ "common": "Solomonova Ostrva"
+ },
+ "swe": {
+ "official": "Salomon\u00f6arna",
+ "common": "Salomon\u00f6arna"
+ },
+ "tur": {
+ "official": "Solomon Adalar\u0131",
+ "common": "Solomon Adalar\u0131"
+ },
+ "urd": {
+ "official": "\u062c\u0632\u0627\u0626\u0631 \u0633\u0644\u06cc\u0645\u0627\u0646",
+ "common": "\u062c\u0632\u0627\u0626\u0631 \u0633\u0644\u06cc\u0645\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u6240\u7f57\u95e8\u7fa4\u5c9b",
+ "common": "\u6240\u7f57\u95e8\u7fa4\u5c9b"
+ }
+ },
+ "latlng": [
+ -8,
+ 159
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 28896,
+ "flag": "\ud83c\uddf8\ud83c\udde7",
+ "demonyms": {
+ "eng": {
+ "f": "Solomon Islander",
+ "m": "Solomon Islander"
+ },
+ "fra": {
+ "f": "Salomonienne",
+ "m": "Salomonien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Sierra Leone",
+ "official": "Republic of Sierra Leone",
+ "native": {
+ "eng": {
+ "official": "Republic of Sierra Leone",
+ "common": "Sierra Leone"
+ }
+ }
+ },
+ "tld": [
+ ".sl"
+ ],
+ "cca2": "SL",
+ "ccn3": "694",
+ "cca3": "SLE",
+ "cioc": "SLE",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "SLL": {
+ "name": "Sierra Leonean leone",
+ "symbol": "Le"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "32"
+ ]
+ },
+ "capital": [
+ "Freetown"
+ ],
+ "altSpellings": [
+ "SL",
+ "Republic of Sierra Leone"
+ ],
+ "region": "Africa",
+ "subregion": "Western Africa",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0633\u064a\u0631\u0627\u0644\u064a\u0648\u0646",
+ "common": "\u0633\u064a\u0631\u0627\u0644\u064a\u0648\u0646"
+ },
+ "bre": {
+ "official": "Republik Sierra Leone",
+ "common": "Sierra Leone"
+ },
+ "ces": {
+ "official": "Republika Sierra Leone",
+ "common": "Sierra Leone"
+ },
+ "deu": {
+ "official": "Republik Sierra Leone",
+ "common": "Sierra Leone"
+ },
+ "est": {
+ "official": "Sierra Leone Vabariik",
+ "common": "Sierra Leone"
+ },
+ "fin": {
+ "official": "Sierra Leonen tasavalta",
+ "common": "Sierra Leone"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Sierra Leone",
+ "common": "Sierra Leone"
+ },
+ "hrv": {
+ "official": "Republika Sijera Leone",
+ "common": "Sijera Leone"
+ },
+ "hun": {
+ "official": "Sierra Leone K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Sierra Leone"
+ },
+ "ita": {
+ "official": "Repubblica della Sierra Leone",
+ "common": "Sierra Leone"
+ },
+ "jpn": {
+ "official": "\u30b7\u30a8\u30e9\u30ec\u30aa\u30cd\u5171\u548c\u56fd",
+ "common": "\u30b7\u30a8\u30e9\u30ec\u30aa\u30cd"
+ },
+ "kor": {
+ "official": "\uc2dc\uc5d0\ub77c\ub9ac\uc628 \uacf5\ud654\uad6d",
+ "common": "\uc2dc\uc5d0\ub77c\ub9ac\uc628"
+ },
+ "nld": {
+ "official": "Republiek Sierra Leone",
+ "common": "Sierra Leone"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0633\u06cc\u0631\u0627\u0644\u0626\u0648\u0646",
+ "common": "\u0633\u06cc\u0631\u0627\u0644\u0626\u0648\u0646"
+ },
+ "pol": {
+ "official": "Sierra Leone",
+ "common": "Sierra Leone"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Serra Leoa",
+ "common": "Serra Leoa"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u044c\u0435\u0440\u0440\u0430-\u041b\u0435\u043e\u043d\u0435",
+ "common": "\u0421\u044c\u0435\u0440\u0440\u0430-\u041b\u0435\u043e\u043d\u0435"
+ },
+ "slk": {
+ "official": "Sierraleonsk\u00e1 republika",
+ "common": "Sierra Leone"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Sierra Leona",
+ "common": "Sierra Leone"
+ },
+ "srp": {
+ "official": "Republika Sijera Leone",
+ "common": "Sijera Leone"
+ },
+ "swe": {
+ "official": "Republiken Sierra Leone",
+ "common": "Sierra Leone"
+ },
+ "tur": {
+ "official": "Sierra Leone Cumhuriyeti",
+ "common": "Sierra Leone"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0633\u06cc\u0631\u0627\u0644\u06cc\u0648\u0646",
+ "common": "\u0633\u06cc\u0631\u0627\u0644\u06cc\u0648\u0646"
+ },
+ "zho": {
+ "official": "\u585e\u62c9\u5229\u6602\u5171\u548c\u56fd",
+ "common": "\u585e\u62c9\u5229\u6602"
+ }
+ },
+ "latlng": [
+ 8.5,
+ -11.5
+ ],
+ "landlocked": false,
+ "borders": [
+ "GIN",
+ "LBR"
+ ],
+ "area": 71740,
+ "flag": "\ud83c\uddf8\ud83c\uddf1",
+ "demonyms": {
+ "eng": {
+ "f": "Sierra Leonean",
+ "m": "Sierra Leonean"
+ },
+ "fra": {
+ "f": "Sierra-leonaise",
+ "m": "Sierra-leonais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "El Salvador",
+ "official": "Republic of El Salvador",
+ "native": {
+ "spa": {
+ "official": "Rep\u00fablica de El Salvador",
+ "common": "El Salvador"
+ }
+ }
+ },
+ "tld": [
+ ".sv"
+ ],
+ "cca2": "SV",
+ "ccn3": "222",
+ "cca3": "SLV",
+ "cioc": "ESA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "03"
+ ]
+ },
+ "capital": [
+ "San Salvador"
+ ],
+ "altSpellings": [
+ "SV",
+ "Republic of El Salvador",
+ "Rep\u00fablica de El Salvador"
+ ],
+ "region": "Americas",
+ "subregion": "Central America",
+ "languages": {
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0633\u0644\u0641\u0627\u062f\u0648\u0631",
+ "common": "\u0627\u0644\u0633\u0644\u0641\u0627\u062f\u0648\u0631"
+ },
+ "bre": {
+ "official": "Republik El Salvador",
+ "common": "El Salvador"
+ },
+ "ces": {
+ "official": "Salvadorsk\u00e1 republika",
+ "common": "Salvador"
+ },
+ "deu": {
+ "official": "Republik El Salvador",
+ "common": "El Salvador"
+ },
+ "est": {
+ "official": "El Salvadori Vabariik",
+ "common": "El Salvador"
+ },
+ "fin": {
+ "official": "El Salvadorin tasavalta",
+ "common": "El Salvador"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Salvador",
+ "common": "Salvador"
+ },
+ "hrv": {
+ "official": "Republika El Salvador",
+ "common": "Salvador"
+ },
+ "hun": {
+ "official": "Salvadori K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Salvador"
+ },
+ "ita": {
+ "official": "Repubblica di El Salvador",
+ "common": "El Salvador"
+ },
+ "jpn": {
+ "official": "\u30a8\u30eb\u30b5\u30eb\u30d0\u30c9\u30eb\u5171\u548c\u56fd",
+ "common": "\u30a8\u30eb\u30b5\u30eb\u30d0\u30c9\u30eb"
+ },
+ "kor": {
+ "official": "\uc5d8\uc0b4\ubc14\ub3c4\ub974 \uacf5\ud654\uad6d",
+ "common": "\uc5d8\uc0b4\ubc14\ub3c4\ub974"
+ },
+ "nld": {
+ "official": "Republiek El Salvador",
+ "common": "El Salvador"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0644\u0633\u0627\u0644\u0648\u0627\u062f\u0648\u0631",
+ "common": "\u0627\u0644\u0633\u0627\u0644\u0648\u0627\u062f\u0648\u0631"
+ },
+ "pol": {
+ "official": "Republika Salwadoru",
+ "common": "Salwador"
+ },
+ "por": {
+ "official": "Rep\u00fablica de El Salvador",
+ "common": "El Salvador"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u042d\u043b\u044c-\u0421\u0430\u043b\u044c\u0432\u0430\u0434\u043e\u0440",
+ "common": "\u0421\u0430\u043b\u044c\u0432\u0430\u0434\u043e\u0440"
+ },
+ "slk": {
+ "official": "Salv\u00e1dorsk\u00e1 republika",
+ "common": "Salv\u00e1dor"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de El Salvador",
+ "common": "El Salvador"
+ },
+ "srp": {
+ "official": "Republika El Salvador",
+ "common": "El Salvador"
+ },
+ "swe": {
+ "official": "Republiken El Salvador",
+ "common": "El Salvador"
+ },
+ "tur": {
+ "official": "El Salvador Cumhuriyeti",
+ "common": "El Salvador"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0627\u06cc\u0644 \u0633\u06cc\u0644\u0648\u0627\u0688\u0648\u0631",
+ "common": "\u0627\u06cc\u0644 \u0633\u06cc\u0644\u0648\u0627\u0688\u0648\u0631"
+ },
+ "zho": {
+ "official": "\u8428\u5c14\u74e6\u591a\u5171\u548c\u56fd",
+ "common": "\u8428\u5c14\u74e6\u591a"
+ }
+ },
+ "latlng": [
+ 13.83333333,
+ -88.91666666
+ ],
+ "landlocked": false,
+ "borders": [
+ "GTM",
+ "HND"
+ ],
+ "area": 21041,
+ "flag": "\ud83c\uddf8\ud83c\uddfb",
+ "demonyms": {
+ "eng": {
+ "f": "Salvadoran",
+ "m": "Salvadoran"
+ },
+ "fra": {
+ "f": "Salvadorienne",
+ "m": "Salvadorien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "San Marino",
+ "official": "Most Serene Republic of San Marino",
+ "native": {
+ "ita": {
+ "official": "Serenissima Repubblica di San Marino",
+ "common": "San Marino"
+ }
+ }
+ },
+ "tld": [
+ ".sm"
+ ],
+ "cca2": "SM",
+ "ccn3": "674",
+ "cca3": "SMR",
+ "cioc": "SMR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "78"
+ ]
+ },
+ "capital": [
+ "City of San Marino"
+ ],
+ "altSpellings": [
+ "SM",
+ "Republic of San Marino",
+ "Repubblica di San Marino"
+ ],
+ "region": "Europe",
+ "subregion": "Southern Europe",
+ "languages": {
+ "ita": "Italian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0633\u0627\u0646 \u0645\u0627\u0631\u064a\u0646\u0648",
+ "common": "\u0633\u0627\u0646 \u0645\u0627\u0631\u064a\u0646\u0648"
+ },
+ "bre": {
+ "official": "Republik San Marino",
+ "common": "San Marino"
+ },
+ "ces": {
+ "official": "Republika San Marino",
+ "common": "San Marino"
+ },
+ "deu": {
+ "official": "Republik San Marino",
+ "common": "San Marino"
+ },
+ "est": {
+ "official": "San Marino Vabariik",
+ "common": "San Marino"
+ },
+ "fin": {
+ "official": "San Marinon seesteinen tasavalta",
+ "common": "San Marino"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Saint-Marin",
+ "common": "Saint-Marin"
+ },
+ "hrv": {
+ "official": "Ve\u0107ina Serene Republika San Marino",
+ "common": "San Marino"
+ },
+ "hun": {
+ "official": "San Marino K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "San Marino"
+ },
+ "ita": {
+ "official": "Serenissima Repubblica di San Marino",
+ "common": "San Marino"
+ },
+ "jpn": {
+ "official": "\u30b5\u30f3\u30de\u30ea\u30ce\u5171\u548c\u56fd",
+ "common": "\u30b5\u30f3\u30de\u30ea\u30ce"
+ },
+ "kor": {
+ "official": "\uc0b0\ub9c8\ub9ac\ub178 \uacf5\ud654\uad6d",
+ "common": "\uc0b0\ub9c8\ub9ac\ub178"
+ },
+ "nld": {
+ "official": "Meest Serene Republiek San Marino",
+ "common": "San Marino"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0633\u0627\u0646 \u0645\u0627\u0631\u06cc\u0646\u0648",
+ "common": "\u0633\u0627\u0646 \u0645\u0627\u0631\u06cc\u0646\u0648"
+ },
+ "pol": {
+ "official": "Republika San Marino",
+ "common": "San Marino"
+ },
+ "por": {
+ "official": "Seren\u00edssima Rep\u00fablica de San Marino",
+ "common": "San Marino"
+ },
+ "rus": {
+ "official": "\u0411\u043e\u043b\u044c\u0448\u0438\u043d\u0441\u0442\u0432\u043e Serene \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u0430\u043d-\u041c\u0430\u0440\u0438\u043d\u043e",
+ "common": "\u0421\u0430\u043d-\u041c\u0430\u0440\u0438\u043d\u043e"
+ },
+ "slk": {
+ "official": "Sanmar\u00ednska republika",
+ "common": "San Mar\u00edno"
+ },
+ "spa": {
+ "official": "Seren\u00edsima Rep\u00fablica de San Marino",
+ "common": "San Marino"
+ },
+ "srp": {
+ "official": "Republika San Marino",
+ "common": "San Marino"
+ },
+ "swe": {
+ "official": "Republiken San Marino",
+ "common": "San Marino"
+ },
+ "tur": {
+ "official": "San Marino Cumhuriyeti",
+ "common": "San Marino"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0633\u0627\u0646 \u0645\u0627\u0631\u06cc\u0646\u0648",
+ "common": "\u0633\u0627\u0646 \u0645\u0627\u0631\u06cc\u0646\u0648"
+ },
+ "zho": {
+ "official": "\u5723\u9a6c\u529b\u8bfa\u5171\u548c\u56fd",
+ "common": "\u5723\u9a6c\u529b\u8bfa"
+ }
+ },
+ "latlng": [
+ 43.76666666,
+ 12.41666666
+ ],
+ "landlocked": true,
+ "borders": [
+ "ITA"
+ ],
+ "area": 61,
+ "flag": "\ud83c\uddf8\ud83c\uddf2",
+ "demonyms": {
+ "eng": {
+ "f": "Sammarinese",
+ "m": "Sammarinese"
+ },
+ "fra": {
+ "f": "Saint-Marinaise",
+ "m": "Saint-Marinais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Somalia",
+ "official": "Federal Republic of Somalia",
+ "native": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0635\u0648\u0645\u0627\u0644 \u0627\u0644\u0641\u064a\u062f\u0631\u0627\u0644\u064a\u0629",
+ "common": "\u0627\u0644\u0635\u0648\u0645\u0627\u0644"
+ },
+ "som": {
+ "official": "Jamhuuriyadda Federaalka Soomaaliya",
+ "common": "Soomaaliya"
+ }
+ }
+ },
+ "tld": [
+ ".so"
+ ],
+ "cca2": "SO",
+ "ccn3": "706",
+ "cca3": "SOM",
+ "cioc": "SOM",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "SOS": {
+ "name": "Somali shilling",
+ "symbol": "Sh"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "52"
+ ]
+ },
+ "capital": [
+ "Mogadishu"
+ ],
+ "altSpellings": [
+ "SO",
+ "a\u1e63-\u1e62\u016bm\u0101l",
+ "Federal Republic of Somalia",
+ "Jamhuuriyadda Federaalka Soomaaliya",
+ "Jumh\u016briyyat a\u1e63-\u1e62\u016bm\u0101l al-Fider\u0101liyya"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "ara": "Arabic",
+ "som": "Somali"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0635\u0648\u0645\u0627\u0644 \u0627\u0644\u0641\u064a\u062f\u0631\u0627\u0644\u064a\u0629",
+ "common": "\u0627\u0644\u0635\u0648\u0645\u0627\u0644"
+ },
+ "bre": {
+ "official": "Republik Kevreadel Somalia",
+ "common": "Somalia"
+ },
+ "ces": {
+ "official": "Som\u00e1lsk\u00e1 demokratick\u00e1 republika",
+ "common": "Som\u00e1lsko"
+ },
+ "deu": {
+ "official": "Bundesrepublik Somalia",
+ "common": "Somalia"
+ },
+ "est": {
+ "official": "Somaalia Liitvabariik",
+ "common": "Somaalia"
+ },
+ "fin": {
+ "official": "Somalian liittotasavalta",
+ "common": "Somalia"
+ },
+ "fra": {
+ "official": "R\u00e9publique f\u00e9d\u00e9rale de Somalie",
+ "common": "Somalie"
+ },
+ "hrv": {
+ "official": "Savezna Republika Somaliji",
+ "common": "Somalija"
+ },
+ "hun": {
+ "official": "Szom\u00e1li Sz\u00f6vets\u00e9gi K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Szom\u00e1lia"
+ },
+ "ita": {
+ "official": "Repubblica federale di Somalia",
+ "common": "Somalia"
+ },
+ "jpn": {
+ "official": "\u30bd\u30de\u30ea\u30a2\u9023\u90a6\u5171\u548c\u56fd",
+ "common": "\u30bd\u30de\u30ea\u30a2"
+ },
+ "kor": {
+ "official": " \uc18c\ub9d0\ub9ac\uc544 \uc5f0\ubc29 \uacf5\ud654\uad6d",
+ "common": "\uc18c\ub9d0\ub9ac\uc544"
+ },
+ "nld": {
+ "official": "Federale Republiek Somali\u00eb",
+ "common": "Somali\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0641\u062f\u0631\u0627\u0644 \u0633\u0648\u0645\u0627\u0644\u06cc",
+ "common": "\u0633\u0648\u0645\u0627\u0644\u06cc"
+ },
+ "pol": {
+ "official": "Federalna Republika Somalii",
+ "common": "Somalia"
+ },
+ "por": {
+ "official": "Rep\u00fablica Federal da Som\u00e1lia",
+ "common": "Som\u00e1lia"
+ },
+ "rus": {
+ "official": "\u0424\u0435\u0434\u0435\u0440\u0430\u0442\u0438\u0432\u043d\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u043e\u043c\u0430\u043b\u0438",
+ "common": "\u0421\u043e\u043c\u0430\u043b\u0438"
+ },
+ "slk": {
+ "official": "Som\u00e1lska federat\u00edvna republika",
+ "common": "Som\u00e1lsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Federal de Somalia",
+ "common": "Somalia"
+ },
+ "srp": {
+ "official": "Savezna Republika Somalija",
+ "common": "Somalija"
+ },
+ "swe": {
+ "official": "F\u00f6rbundsrepubliken Somalia",
+ "common": "Somalia"
+ },
+ "tur": {
+ "official": "Somali Federal Cumhuriyeti",
+ "common": "Somali"
+ },
+ "urd": {
+ "official": "\u0648\u0641\u0627\u0642\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0635\u0648\u0645\u0627\u0644\u06cc\u06c1",
+ "common": "\u0635\u0648\u0645\u0627\u0644\u06cc\u06c1"
+ },
+ "zho": {
+ "official": "\u7d22\u9a6c\u91cc\u5171\u548c\u56fd",
+ "common": "\u7d22\u9a6c\u91cc"
+ }
+ },
+ "latlng": [
+ 10,
+ 49
+ ],
+ "landlocked": false,
+ "borders": [
+ "DJI",
+ "ETH",
+ "KEN"
+ ],
+ "area": 637657,
+ "flag": "\ud83c\uddf8\ud83c\uddf4",
+ "demonyms": {
+ "eng": {
+ "f": "Somali",
+ "m": "Somali"
+ },
+ "fra": {
+ "f": "Somalienne",
+ "m": "Somalien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Saint Pierre and Miquelon",
+ "official": "Saint Pierre and Miquelon",
+ "native": {
+ "fra": {
+ "official": "Collectivit\u00e9 territoriale de Saint-Pierre-et-Miquelon",
+ "common": "Saint-Pierre-et-Miquelon"
+ }
+ }
+ },
+ "tld": [
+ ".pm"
+ ],
+ "cca2": "PM",
+ "ccn3": "666",
+ "cca3": "SPM",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "08"
+ ]
+ },
+ "capital": [
+ "Saint-Pierre"
+ ],
+ "altSpellings": [
+ "PM",
+ "Collectivit\u00e9 territoriale de Saint-Pierre-et-Miquelon"
+ ],
+ "region": "Americas",
+ "subregion": "North America",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0633\u0627\u0646 \u0628\u064a\u064a\u0631 \u0648\u0645\u064a\u0643\u0644\u0648\u0646",
+ "common": "\u0633\u0627\u0646 \u0628\u064a\u064a\u0631 \u0648\u0645\u064a\u0643\u0644\u0648\u0646"
+ },
+ "bre": {
+ "official": "Sant-Pêr-ha-Mikelon",
+ "common": "Sant-Pêr-ha-Mikelon"
+ },
+ "ces": {
+ "official": "Saint-Pierre a Miquelon",
+ "common": "Saint-Pierre a Miquelon"
+ },
+ "deu": {
+ "official": "St. Pierre und Miquelon",
+ "common": "St. Pierre und Miquelon"
+ },
+ "est": {
+ "official": "Saint-Pierre\u2019i ja Miqueloni territoriaal\u00fchendus",
+ "common": "Saint-Pierre ja Miquelon"
+ },
+ "fin": {
+ "official": "Saint-Pierre ja Miquelon",
+ "common": "Saint-Pierre ja Miquelon"
+ },
+ "fra": {
+ "official": "Saint-Pierre-et-Miquelon",
+ "common": "Saint-Pierre-et-Miquelon"
+ },
+ "hrv": {
+ "official": "Saint Pierre i Miquelon",
+ "common": "Sveti Petar i Mikelon"
+ },
+ "hun": {
+ "official": "Saint-Pierre \u00e9s Miquelon",
+ "common": "Saint-Pierre \u00e9s Miquelon"
+ },
+ "ita": {
+ "official": "Saint Pierre e Miquelon",
+ "common": "Saint-Pierre e Miquelon"
+ },
+ "jpn": {
+ "official": "\u30b5\u30f3\u30d4\u30a8\u30fc\u30eb\u5cf6\u30fb\u30df\u30af\u30ed\u30f3\u5cf6",
+ "common": "\u30b5\u30f3\u30d4\u30a8\u30fc\u30eb\u5cf6\u53ca\u3073\u30df\u30af\u30ed\u30f3\u5cf6"
+ },
+ "kor": {
+ "official": "\uc0dd\ud53c\uc5d0\ub974 \ubbf8\ud074\ub871",
+ "common": "\uc0dd\ud53c\uc5d0\ub974 \ubbf8\ud074\ub871"
+ },
+ "nld": {
+ "official": "Saint-Pierre en Miquelon",
+ "common": "Saint Pierre en Miquelon"
+ },
+ "per": {
+ "official": "\u0633\u0646-\u067e\u06cc\u0631-\u0627-\u0645\u06cc\u06a9\u0644\u0648\u0646",
+ "common": "\u0633\u0646-\u067e\u06cc\u0650\u0631 \u0648 \u0645\u06cc\u06a9\u0644\u064f\u0646"
+ },
+ "pol": {
+ "official": "Saint-Pierre i Miquelon",
+ "common": "Saint-Pierre i Miquelon"
+ },
+ "por": {
+ "official": "Saint Pierre e Miquelon",
+ "common": "Saint-Pierre e Miquelon"
+ },
+ "rus": {
+ "official": "\u0421\u0435\u043d-\u041f\u044c\u0435\u0440 \u0438 \u041c\u0438\u043a\u0435\u043b\u043e\u043d",
+ "common": "\u0421\u0435\u043d-\u041f\u044c\u0435\u0440 \u0438 \u041c\u0438\u043a\u0435\u043b\u043e\u043d"
+ },
+ "slk": {
+ "official": "Ostrovy Saint Pierre a Miquelon",
+ "common": "Saint Pierre a Miquelon"
+ },
+ "spa": {
+ "official": "San Pedro y Miquel\u00f3n",
+ "common": "San Pedro y Miquel\u00f3n"
+ },
+ "srp": {
+ "official": "Sent Pjer i Mikelon",
+ "common": "Sent Pjer i Mikelon"
+ },
+ "swe": {
+ "official": "Saint-Pierre och Miquelon",
+ "common": "Saint-Pierre och Miquelon"
+ },
+ "tur": {
+ "official": "Saint Pierre ve Miquelon",
+ "common": "Saint Pierre ve Miquelon"
+ },
+ "urd": {
+ "official": "\u0633\u06cc\u0646\u0679 \u067e\u06cc\u0626\u0631 \u0648 \u0645\u06cc\u06a9\u06cc\u0644\u0648\u0646",
+ "common": "\u0633\u06cc\u0646\u0679 \u067e\u06cc\u0626\u0631 \u0648 \u0645\u06cc\u06a9\u06cc\u0644\u0648\u0646"
+ },
+ "zho": {
+ "official": "\u5723\u76ae\u57c3\u5c14\u548c\u5bc6\u514b\u9686",
+ "common": "\u5723\u76ae\u57c3\u5c14\u548c\u5bc6\u514b\u9686"
+ }
+ },
+ "latlng": [
+ 46.83333333,
+ -56.33333333
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 242,
+ "flag": "\ud83c\uddf5\ud83c\uddf2",
+ "demonyms": {
+ "eng": {
+ "f": "Saint-Pierrais, Miquelonnais",
+ "m": "Saint-Pierrais, Miquelonnais"
+ },
+ "fra": {
+ "f": "Saint-Pierraise, Miquelonaise",
+ "m": "Saint-Pierrais, Miquelonais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Serbia",
+ "official": "Republic of Serbia",
+ "native": {
+ "srp": {
+ "official": "\u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u0440\u0431\u0438\u0458\u0430",
+ "common": "\u0421\u0440\u0431\u0438\u0458\u0430"
+ }
+ }
+ },
+ "tld": [
+ ".rs",
+ ".\u0441\u0440\u0431"
+ ],
+ "cca2": "RS",
+ "ccn3": "688",
+ "cca3": "SRB",
+ "cioc": "SRB",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "RSD": {
+ "name": "Serbian dinar",
+ "symbol": "\u0434\u0438\u043d."
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "81"
+ ]
+ },
+ "capital": [
+ "Belgrade"
+ ],
+ "altSpellings": [
+ "RS",
+ "Srbija",
+ "Republika Srbija",
+ "\u0421\u0440\u0431\u0438\u0458\u0430",
+ "\u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u0440\u0431\u0438\u0458\u0430",
+ "Republic of Serbia"
+ ],
+ "region": "Europe",
+ "subregion": "Southeast Europe",
+ "languages": {
+ "srp": "Serbian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0635\u064a\u0631\u0628\u064a\u0627",
+ "common": "\u0635\u064a\u0631\u0628\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Serbia",
+ "common": "Serbia"
+ },
+ "ces": {
+ "official": "Srbsk\u00e1 republika",
+ "common": "Srbsko"
+ },
+ "deu": {
+ "official": "Republik Serbien",
+ "common": "Serbien"
+ },
+ "est": {
+ "official": "Serbia Vabariik",
+ "common": "Serbia"
+ },
+ "fin": {
+ "official": "Serbian tasavalta",
+ "common": "Serbia"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Serbie",
+ "common": "Serbie"
+ },
+ "hrv": {
+ "official": "Republika Srbija",
+ "common": "Srbija"
+ },
+ "hun": {
+ "official": "Szerb K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Szerbia"
+ },
+ "ita": {
+ "official": "Repubblica di Serbia",
+ "common": "Serbia"
+ },
+ "jpn": {
+ "official": "\u30bb\u30eb\u30d3\u30a2\u5171\u548c\u56fd",
+ "common": "\u30bb\u30eb\u30d3\u30a2"
+ },
+ "kor": {
+ "official": "\uc138\ub974\ube44\uc544 \uacf5\ud654\uad6d",
+ "common": "\uc138\ub974\ube44\uc544"
+ },
+ "nld": {
+ "official": "Republiek Servi\u00eb",
+ "common": "Servi\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0635\u0631\u0628\u0633\u062a\u0627\u0646",
+ "common": "\u0635\u0631\u0628\u0633\u062a\u0627\u0646"
+ },
+ "pol": {
+ "official": "Republika Serbii",
+ "common": "Serbia"
+ },
+ "por": {
+ "official": "Rep\u00fablica da S\u00e9rvia",
+ "common": "S\u00e9rvia"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u0435\u0440\u0431\u0438\u044f",
+ "common": "\u0421\u0435\u0440\u0431\u0438\u044f"
+ },
+ "slk": {
+ "official": "Srbsk\u00e1 republika",
+ "common": "Srbsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Serbia",
+ "common": "Serbia"
+ },
+ "srp": {
+ "official": "Republika Srbija",
+ "common": "Srbija"
+ },
+ "swe": {
+ "official": "Republiken Serbien",
+ "common": "Serbien"
+ },
+ "tur": {
+ "official": "S\u0131rbistan Cumhuriyeti",
+ "common": "S\u0131rbistan"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0633\u0631\u0628\u06cc\u0627",
+ "common": "\u0633\u0631\u0628\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u585e\u5c14\u7ef4\u4e9a\u5171\u548c\u56fd",
+ "common": "\u585e\u5c14\u7ef4\u4e9a"
+ }
+ },
+ "latlng": [
+ 44,
+ 21
+ ],
+ "landlocked": true,
+ "borders": [
+ "BIH",
+ "BGR",
+ "HRV",
+ "HUN",
+ "UNK",
+ "MKD",
+ "MNE",
+ "ROU"
+ ],
+ "area": 88361,
+ "flag": "\ud83c\uddf7\ud83c\uddf8",
+ "demonyms": {
+ "eng": {
+ "f": "Serbian",
+ "m": "Serbian"
+ },
+ "fra": {
+ "f": "Serbe",
+ "m": "Serbe"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "South Sudan",
+ "official": "Republic of South Sudan",
+ "native": {
+ "eng": {
+ "official": "Republic of South Sudan",
+ "common": "South Sudan"
+ }
+ }
+ },
+ "tld": [
+ ".ss"
+ ],
+ "cca2": "SS",
+ "ccn3": "728",
+ "cca3": "SSD",
+ "cioc": "",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "SSP": {
+ "name": "South Sudanese pound",
+ "symbol": "\u00a3"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "11"
+ ]
+ },
+ "capital": [
+ "Juba"
+ ],
+ "altSpellings": [
+ "SS"
+ ],
+ "region": "Africa",
+ "subregion": "Middle Africa",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u062c\u0646\u0648\u0628 \u0627\u0644\u0633\u0648\u062f\u0627\u0646",
+ "common": "\u062c\u0646\u0648\u0628 \u0627\u0644\u0633\u0648\u062f\u0627\u0646"
+ },
+ "bre": {
+ "official": "Republik Soudan ar Su",
+ "common": "Soudan ar Su"
+ },
+ "ces": {
+ "official": "Jihos\u00fad\u00e1nsk\u00e1 republika",
+ "common": "Ji\u017en\u00ed S\u00fad\u00e1n"
+ },
+ "deu": {
+ "official": "Republik S\u00fcdsudan",
+ "common": "S\u00fcdsudan"
+ },
+ "est": {
+ "official": "L\u00f5una-Sudaani Vabariik",
+ "common": "L\u00f5una-Sudaan"
+ },
+ "fin": {
+ "official": "Etel\u00e4-Sudanin tasavalta",
+ "common": "Etel\u00e4-Sudan"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Soudan du Sud",
+ "common": "Soudan du Sud"
+ },
+ "hrv": {
+ "official": "Republika Ju\u017eni Sudan",
+ "common": "Ju\u017eni Sudan"
+ },
+ "hun": {
+ "official": "D\u00e9l-szud\u00e1ni K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "D\u00e9l-Szud\u00e1n"
+ },
+ "ita": {
+ "official": "Repubblica del Sudan del Sud",
+ "common": "Sudan del sud"
+ },
+ "jpn": {
+ "official": "\u5357\u30b9\u30fc\u30c0\u30f3\u5171\u548c\u56fd",
+ "common": "\u5357\u30b9\u30fc\u30c0\u30f3"
+ },
+ "kor": {
+ "official": "\ub0a8\uc218\ub2e8 \uacf5\ud654\uad6d",
+ "common": "\ub0a8\uc218\ub2e8"
+ },
+ "nld": {
+ "official": "Republiek Zuid-Soedan",
+ "common": "Zuid-Soedan"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0633\u0648\u062f\u0627\u0646 \u062c\u0646\u0648\u0628\u06cc",
+ "common": "\u0633\u0648\u062f\u0627\u0646 \u062c\u0646\u0648\u0628\u06cc"
+ },
+ "pol": {
+ "official": "Republika Sudanu",
+ "common": "Sudan"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Sud\u00e3o do Sul",
+ "common": "Sud\u00e3o do Sul"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u042e\u0436\u043d\u044b\u0439 \u0421\u0443\u0434\u0430\u043d",
+ "common": "\u042e\u0436\u043d\u044b\u0439 \u0421\u0443\u0434\u0430\u043d"
+ },
+ "slk": {
+ "official": "Juhosud\u00e1nska republika",
+ "common": "Ju\u017en\u00fd Sud\u00e1n"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Sud\u00e1n del Sur",
+ "common": "Sud\u00e1n del Sur"
+ },
+ "srp": {
+ "official": "Republika Ju\u017eni Sudan",
+ "common": "Ju\u017eni Sudan"
+ },
+ "swe": {
+ "official": "Republiken Sydsudan",
+ "common": "Sydsudan"
+ },
+ "tur": {
+ "official": "G\u00fcney Sudan Cumhuriyeti",
+ "common": "G\u00fcney Sudan"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u062c\u0646\u0648\u0628\u06cc \u0633\u0648\u0688\u0627\u0646",
+ "common": "\u062c\u0646\u0648\u0628\u06cc \u0633\u0648\u0688\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u5357\u82cf\u4e39\u5171\u548c\u56fd",
+ "common": "\u5357\u82cf\u4e39"
+ }
+ },
+ "latlng": [
+ 7,
+ 30
+ ],
+ "landlocked": true,
+ "borders": [
+ "CAF",
+ "COD",
+ "ETH",
+ "KEN",
+ "SDN",
+ "UGA"
+ ],
+ "area": 619745,
+ "flag": "\ud83c\uddf8\ud83c\uddf8",
+ "demonyms": {
+ "eng": {
+ "f": "South Sudanese",
+ "m": "South Sudanese"
+ },
+ "fra": {
+ "f": "Sud-Soudanaise",
+ "m": "Sud-Soudanais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "S\u00e3o Tom\u00e9 and Pr\u00edncipe",
+ "official": "Democratic Republic of S\u00e3o Tom\u00e9 and Pr\u00edncipe",
+ "native": {
+ "por": {
+ "official": "Rep\u00fablica Democr\u00e1tica do S\u00e3o Tom\u00e9 e Pr\u00edncipe",
+ "common": "S\u00e3o Tom\u00e9 e Pr\u00edncipe"
+ }
+ }
+ },
+ "tld": [
+ ".st"
+ ],
+ "cca2": "ST",
+ "ccn3": "678",
+ "cca3": "STP",
+ "cioc": "STP",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "STN": {
+ "name": "S\u00e3o Tom\u00e9 and Pr\u00edncipe dobra",
+ "symbol": "Db"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "39"
+ ]
+ },
+ "capital": [
+ "S\u00e3o Tom\u00e9"
+ ],
+ "altSpellings": [
+ "ST",
+ "Democratic Republic of S\u00e3o Tom\u00e9 and Pr\u00edncipe",
+ "Sao Tome and Principe",
+ "Rep\u00fablica Democr\u00e1tica de S\u00e3o Tom\u00e9 e Pr\u00edncipe"
+ ],
+ "region": "Africa",
+ "subregion": "Middle Africa",
+ "languages": {
+ "por": "Portuguese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0633\u0627\u0648 \u062a\u0648\u0645\u064a \u0648\u0628\u0631\u064a\u0646\u0633\u064a\u0628 \u0627\u0644\u062f\u064a\u0645\u0642\u0631\u0627\u0637\u064a\u0629",
+ "common": "\u0633\u0627\u0648 \u062a\u0648\u0645\u064a \u0648\u0628\u0631\u064a\u0646\u0633\u064a\u0628"
+ },
+ "bre": {
+ "official": "Republik Demokratel S\u00e3o Tom\u00e9 ha Pr\u00edncipe",
+ "common": "S\u00e3o Tom\u00e9 ha Pr\u00edncipe"
+ },
+ "ces": {
+ "official": "Demokratick\u00e1 republika Svat\u00fd Tom\u00e1\u0161 a Princ\u016fv ostrov",
+ "common": "Svat\u00fd Tom\u00e1\u0161 a Princ\u016fv ostrov"
+ },
+ "deu": {
+ "official": "Demokratische Republik S\u00e3o Tom\u00e9 und Pr\u00edncipe",
+ "common": "S\u00e3o Tom\u00e9 und Pr\u00edncipe"
+ },
+ "est": {
+ "official": "S\u00e3o Tom\u00e9 ja Pr\u00edncipe Demokraatlik Vabariik",
+ "common": "S\u00e3o Tom\u00e9 ja Pr\u00edncipe"
+ },
+ "fin": {
+ "official": "S\u00e3o Tom\u00e9 ja Pr\u00edncipen demokraattinen tasavalta",
+ "common": "S\u00e3o T\u00e9me ja Pr\u00edncipe"
+ },
+ "fra": {
+ "official": "R\u00e9publique d\u00e9mocratique de S\u00e3o Tom\u00e9 et Pr\u00edncipe",
+ "common": "S\u00e3o Tom\u00e9 et Pr\u00edncipe"
+ },
+ "hrv": {
+ "official": "Demokratska Republika S\u00e3o Tome i Principe",
+ "common": "Sveti Toma i Princip"
+ },
+ "hun": {
+ "official": "S\u00e3o Tom\u00e9 \u00e9s Pr\u00edncipe Demokratikus K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "S\u00e3o Tom\u00e9 \u00e9s Pr\u00edncipe"
+ },
+ "ita": {
+ "official": "Repubblica democratica di S\u00e3o Tom\u00e9 e Pr\u00edncipe",
+ "common": "S\u00e3o Tom\u00e9 e Pr\u00edncipe"
+ },
+ "jpn": {
+ "official": "\u30b5\u30f3\u30c8\u30e1\u30fb\u30d7\u30ea\u30f3\u30b7\u30da\u6c11\u4e3b\u5171\u548c\u56fd",
+ "common": "\u30b5\u30f3\u30c8\u30e1\u30fb\u30d7\u30ea\u30f3\u30b7\u30da"
+ },
+ "kor": {
+ "official": "\uc0c1\ud22c\uba54 \ud504\ub9b0\uc2dc\ud398 \ubbfc\uc8fc \uacf5\ud654\uad6d",
+ "common": "\uc0c1\ud22c\uba54 \ud504\ub9b0\uc2dc\ud398"
+ },
+ "nld": {
+ "official": "Democratische Republiek Sao Tom\u00e9 en Principe",
+ "common": "Sao Tom\u00e9 en Principe"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062f\u0645\u0648\u06a9\u0631\u0627\u062a\u06cc\u06a9 \u0633\u0627\u0626\u0648\u062a\u0648\u0645\u0647 \u0648 \u067e\u0631\u0646\u0633\u06cc\u067e",
+ "common": "\u0633\u0627\u0626\u0648\u062a\u0648\u0645\u0647 \u0648 \u067e\u0631\u0646\u0633\u06cc\u067e"
+ },
+ "pol": {
+ "official": "Demokratyczna Republika Wysp \u015awi\u0119tego Tomasza i Ksi\u0105\u017c\u0119cej",
+ "common": "Wyspy \u015awi\u0119tego Tomasza i Ksi\u0105\u017c\u0119ca"
+ },
+ "por": {
+ "official": "Rep\u00fablica Democr\u00e1tica de S\u00e3o Tom\u00e9 e Pr\u00edncipe",
+ "common": "S\u00e3o Tom\u00e9 e Pr\u00edncipe"
+ },
+ "rus": {
+ "official": "\u0414\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u0430\u043d-\u0422\u043e\u043c\u0435 \u0438 \u041f\u0440\u0438\u043d\u0441\u0438\u043f\u0438",
+ "common": "\u0421\u0430\u043d-\u0422\u043e\u043c\u0435 \u0438 \u041f\u0440\u0438\u043d\u0441\u0438\u043f\u0438"
+ },
+ "slk": {
+ "official": "Demokratick\u00e1 republika Sv\u00e4t\u00e9ho Tom\u00e1\u0161a A princovho ostrova",
+ "common": "Sv\u00e4t\u00fd Tom\u00e1\u0161 a Princov ostrov"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Democr\u00e1tica de Santo Tom\u00e9 y Pr\u00edncipe",
+ "common": "Santo Tom\u00e9 y Pr\u00edncipe"
+ },
+ "srp": {
+ "official": "Demokratska Republika Sao Tome i Prinsipe",
+ "common": "Sao Tome i Prinsipe"
+ },
+ "swe": {
+ "official": "Demokratiska republiken S\u00e3o Tom\u00e9 och Pr\u00edncipe",
+ "common": "S\u00e3o Tom\u00e9 och Pr\u00edncipe"
+ },
+ "tur": {
+ "official": "S\u00e3o Tom\u00e9 ve Pr\u00edncipe Demokratik Cumhuriyeti",
+ "common": "S\u00e3o Tom\u00e9 ve Pr\u00edncipe"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0633\u0627\u0624 \u0679\u0648\u0645\u06d2 \u0648 \u067e\u0631\u0646\u0633\u067e\u06d2",
+ "common": "\u0633\u0627\u0624 \u0679\u0648\u0645\u06d2 \u0648 \u067e\u0631\u0646\u0633\u067e\u06d2"
+ },
+ "zho": {
+ "official": "\u5723\u591a\u7f8e\u548c\u666e\u6797\u897f\u6bd4\u6c11\u4e3b\u5171\u548c\u56fd",
+ "common": "\u5723\u591a\u7f8e\u548c\u666e\u6797\u897f\u6bd4"
+ }
+ },
+ "latlng": [
+ 1,
+ 7
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 964,
+ "flag": "\ud83c\uddf8\ud83c\uddf9",
+ "demonyms": {
+ "eng": {
+ "f": "Sao Tomean",
+ "m": "Sao Tomean"
+ },
+ "fra": {
+ "f": "Santom\u00e9enne",
+ "m": "Santom\u00e9en"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Suriname",
+ "official": "Republic of Suriname",
+ "native": {
+ "nld": {
+ "official": "Republiek Suriname",
+ "common": "Suriname"
+ }
+ }
+ },
+ "tld": [
+ ".sr"
+ ],
+ "cca2": "SR",
+ "ccn3": "740",
+ "cca3": "SUR",
+ "cioc": "SUR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "SRD": {
+ "name": "Surinamese dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "97"
+ ]
+ },
+ "capital": [
+ "Paramaribo"
+ ],
+ "altSpellings": [
+ "SR",
+ "Sarnam",
+ "Sranangron",
+ "Republic of Suriname",
+ "Republiek Suriname"
+ ],
+ "region": "Americas",
+ "subregion": "South America",
+ "languages": {
+ "nld": "Dutch"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0633\u0648\u0631\u064a\u0646\u0627\u0645",
+ "common": "\u0633\u0648\u0631\u064a\u0646\u0627\u0645"
+ },
+ "bre": {
+ "official": "Republik Surinam",
+ "common": "Surinam"
+ },
+ "ces": {
+ "official": "Republika Surinam",
+ "common": "Surinam"
+ },
+ "deu": {
+ "official": "Republik Suriname",
+ "common": "Suriname"
+ },
+ "est": {
+ "official": "Suriname Vabariik",
+ "common": "Suriname"
+ },
+ "fin": {
+ "official": "Surinamen tasavalta",
+ "common": "Suriname"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Suriname",
+ "common": "Surinam"
+ },
+ "hrv": {
+ "official": "Republika Surinam",
+ "common": "Surinam"
+ },
+ "hun": {
+ "official": "Suriname K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Suriname"
+ },
+ "ita": {
+ "official": "Repubblica del Suriname",
+ "common": "Suriname"
+ },
+ "jpn": {
+ "official": "\u30b9\u30ea\u30ca\u30e0\u5171\u548c\u56fd",
+ "common": "\u30b9\u30ea\u30ca\u30e0"
+ },
+ "kor": {
+ "official": "\uc218\ub9ac\ub0a8 \uacf5\ud654\uad6d",
+ "common": "\uc218\ub9ac\ub0a8"
+ },
+ "nld": {
+ "official": "Republiek Suriname",
+ "common": "Suriname"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0633\u0648\u0631\u06cc\u0646\u0627\u0645",
+ "common": "\u0633\u0648\u0631\u06cc\u0646\u0627\u0645"
+ },
+ "pol": {
+ "official": "Republika Surinamu",
+ "common": "Surinam"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Suriname",
+ "common": "Suriname"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u0443\u0440\u0438\u043d\u0430\u043c",
+ "common": "\u0421\u0443\u0440\u0438\u043d\u0430\u043c"
+ },
+ "slk": {
+ "official": "Surinamsk\u00e1 republika",
+ "common": "Surinam"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Suriname",
+ "common": "Surinam"
+ },
+ "srp": {
+ "official": "Republika Surinam",
+ "common": "Surinam"
+ },
+ "swe": {
+ "official": "Republiken Surinam",
+ "common": "Surinam"
+ },
+ "tur": {
+ "official": "Surinam Cumhuriyeti",
+ "common": "Surinam"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0633\u0631\u06cc\u0646\u0627\u0645",
+ "common": "\u0633\u0631\u06cc\u0646\u0627\u0645"
+ },
+ "zho": {
+ "official": "\u82cf\u91cc\u5357\u5171\u548c\u56fd",
+ "common": "\u82cf\u91cc\u5357"
+ }
+ },
+ "latlng": [
+ 4,
+ -56
+ ],
+ "landlocked": false,
+ "borders": [
+ "BRA",
+ "GUF",
+ "GUY"
+ ],
+ "area": 163820,
+ "flag": "\ud83c\uddf8\ud83c\uddf7",
+ "demonyms": {
+ "eng": {
+ "f": "Surinamer",
+ "m": "Surinamer"
+ },
+ "fra": {
+ "f": "Surinamaise",
+ "m": "Surinamais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Slovakia",
+ "official": "Slovak Republic",
+ "native": {
+ "slk": {
+ "official": "Slovensk\u00e1 republika",
+ "common": "Slovensko"
+ }
+ }
+ },
+ "tld": [
+ ".sk"
+ ],
+ "cca2": "SK",
+ "ccn3": "703",
+ "cca3": "SVK",
+ "cioc": "SVK",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+4",
+ "suffixes": [
+ "21"
+ ]
+ },
+ "capital": [
+ "Bratislava"
+ ],
+ "altSpellings": [
+ "SK",
+ "Slovak Republic",
+ "Slovensk\u00e1 republika"
+ ],
+ "region": "Europe",
+ "subregion": "Central Europe",
+ "languages": {
+ "slk": "Slovak"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0633\u0644\u0648\u0641\u0627\u0643\u064a\u0627",
+ "common": "\u0633\u0644\u0648\u0641\u0627\u0643\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Slovak",
+ "common": "Slovakia"
+ },
+ "ces": {
+ "official": "Slovensk\u00e1 republika",
+ "common": "Slovensko"
+ },
+ "deu": {
+ "official": "Slowakische Republik",
+ "common": "Slowakei"
+ },
+ "est": {
+ "official": "Slovaki Vabariik",
+ "common": "Slovakkia"
+ },
+ "fin": {
+ "official": "Slovakian tasavalta",
+ "common": "Slovakia"
+ },
+ "fra": {
+ "official": "R\u00e9publique slovaque",
+ "common": "Slovaquie"
+ },
+ "hrv": {
+ "official": "slova\u010dka",
+ "common": "Slova\u010dka"
+ },
+ "hun": {
+ "official": "Szlov\u00e1k K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Szlov\u00e1kia"
+ },
+ "ita": {
+ "official": "Repubblica slovacca",
+ "common": "Slovacchia"
+ },
+ "jpn": {
+ "official": "\u30b9\u30ed\u30d0\u30ad\u30a2\u5171\u548c\u56fd",
+ "common": "\u30b9\u30ed\u30d0\u30ad\u30a2"
+ },
+ "kor": {
+ "official": "\uc2ac\ub85c\ubc14\ud0a4\uc544 \uacf5\ud654\uad6d",
+ "common": "\uc2ac\ub85c\ubc14\ud0a4\uc544"
+ },
+ "nld": {
+ "official": "Slowaakse Republiek",
+ "common": "Slowakije"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0633\u0644\u0648\u0627\u06a9\u06cc",
+ "common": "\u0627\u0650\u0633\u0644\u064f\u0648\u0627\u06a9\u06cc"
+ },
+ "pol": {
+ "official": "Republika S\u0142owacka",
+ "common": "S\u0142owacja"
+ },
+ "por": {
+ "official": "Rep\u00fablica Eslovaca",
+ "common": "Eslov\u00e1quia"
+ },
+ "rus": {
+ "official": "\u0421\u043b\u043e\u0432\u0430\u0446\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0421\u043b\u043e\u0432\u0430\u043a\u0438\u044f"
+ },
+ "slk": {
+ "official": "Slovensk\u00e1 republika",
+ "common": "Slovensko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Eslovaca",
+ "common": "Eslovaquia"
+ },
+ "srp": {
+ "official": "Slova\u010dka republika",
+ "common": "Slova\u010dka"
+ },
+ "swe": {
+ "official": "Republiken Slovakien",
+ "common": "Slovakien"
+ },
+ "tur": {
+ "official": "Slovak Cumhuriyeti",
+ "common": "Slovakya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0633\u0644\u0648\u0648\u0627\u06a9\u06cc\u06c1",
+ "common": "\u0633\u0644\u0648\u0648\u0627\u06a9\u06cc\u06c1"
+ },
+ "zho": {
+ "official": "\u65af\u6d1b\u4f10\u514b\u5171\u548c\u56fd",
+ "common": "\u65af\u6d1b\u4f10\u514b"
+ }
+ },
+ "latlng": [
+ 48.66666666,
+ 19.5
+ ],
+ "landlocked": true,
+ "borders": [
+ "AUT",
+ "CZE",
+ "HUN",
+ "POL",
+ "UKR"
+ ],
+ "area": 49037,
+ "flag": "\ud83c\uddf8\ud83c\uddf0",
+ "demonyms": {
+ "eng": {
+ "f": "Slovak",
+ "m": "Slovak"
+ },
+ "fra": {
+ "f": "Slovaque",
+ "m": "Slovaque"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Slovenia",
+ "official": "Republic of Slovenia",
+ "native": {
+ "slv": {
+ "official": "Republika Slovenija",
+ "common": "Slovenija"
+ }
+ }
+ },
+ "tld": [
+ ".si"
+ ],
+ "cca2": "SI",
+ "ccn3": "705",
+ "cca3": "SVN",
+ "cioc": "SLO",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "86"
+ ]
+ },
+ "capital": [
+ "Ljubljana"
+ ],
+ "altSpellings": [
+ "SI",
+ "Republic of Slovenia",
+ "Republika Slovenija"
+ ],
+ "region": "Europe",
+ "subregion": "Central Europe",
+ "languages": {
+ "slv": "Slovene"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0633\u0644\u0648\u0641\u064a\u0646\u064a\u0627",
+ "common": "\u0633\u0644\u0648\u0641\u064a\u0646\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Slovenia",
+ "common": "Slovenia"
+ },
+ "ces": {
+ "official": "Slovinsk\u00e1 republika",
+ "common": "Slovinsko"
+ },
+ "deu": {
+ "official": "Republik Slowenien",
+ "common": "Slowenien"
+ },
+ "est": {
+ "official": "Sloveenia Vabariik",
+ "common": "Sloveenia"
+ },
+ "fin": {
+ "official": "Slovenian tasavalta",
+ "common": "Slovenia"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Slov\u00e9nie",
+ "common": "Slov\u00e9nie"
+ },
+ "hrv": {
+ "official": "Republika Slovenija",
+ "common": "Slovenija"
+ },
+ "hun": {
+ "official": "Szlov\u00e9n K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Szlov\u00e9nia"
+ },
+ "ita": {
+ "official": "Repubblica di Slovenia",
+ "common": "Slovenia"
+ },
+ "jpn": {
+ "official": "\u30b9\u30ed\u30d9\u30cb\u30a2\u5171\u548c\u56fd",
+ "common": "\u30b9\u30ed\u30d9\u30cb\u30a2"
+ },
+ "kor": {
+ "official": "\uc2ac\ub85c\ubca0\ub2c8\uc544 \uacf5\ud654\uad6d",
+ "common": "\uc2ac\ub85c\ubca0\ub2c8\uc544"
+ },
+ "nld": {
+ "official": "Republiek Sloveni\u00eb",
+ "common": "Sloveni\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0633\u0644\u0648\u0648\u0646\u06cc",
+ "common": "\u0627\u0633\u0644\u0648\u0648\u0646\u06cc"
+ },
+ "pol": {
+ "official": "Republika S\u0142owenii",
+ "common": "S\u0142owenia"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Eslov\u00e9nia",
+ "common": "Eslov\u00e9nia"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u043b\u043e\u0432\u0435\u043d\u0438\u044f",
+ "common": "\u0421\u043b\u043e\u0432\u0435\u043d\u0438\u044f"
+ },
+ "slk": {
+ "official": "Slovinsk\u00e1 republika",
+ "common": "Slovinsko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Eslovenia",
+ "common": "Eslovenia"
+ },
+ "srp": {
+ "official": "Republika Slovenija",
+ "common": "Slovenija"
+ },
+ "swe": {
+ "official": "Republiken Slovenien",
+ "common": "Slovenien"
+ },
+ "tur": {
+ "official": "Slovenya Cumhuriyeti",
+ "common": "Slovenya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0633\u0644\u0648\u0648\u06cc\u0646\u06cc\u0627",
+ "common": "\u0633\u0644\u0648\u0648\u06cc\u0646\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u65af\u6d1b\u6587\u5c3c\u4e9a\u5171\u548c\u56fd",
+ "common": "\u65af\u6d1b\u6587\u5c3c\u4e9a"
+ }
+ },
+ "latlng": [
+ 46.11666666,
+ 14.81666666
+ ],
+ "landlocked": false,
+ "borders": [
+ "AUT",
+ "HRV",
+ "ITA",
+ "HUN"
+ ],
+ "area": 20273,
+ "flag": "\ud83c\uddf8\ud83c\uddee",
+ "demonyms": {
+ "eng": {
+ "f": "Slovene",
+ "m": "Slovene"
+ },
+ "fra": {
+ "f": "Slov\u00e8ne",
+ "m": "Slov\u00e8ne"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Sweden",
+ "official": "Kingdom of Sweden",
+ "native": {
+ "swe": {
+ "official": "Konungariket Sverige",
+ "common": "Sverige"
+ }
+ }
+ },
+ "tld": [
+ ".se"
+ ],
+ "cca2": "SE",
+ "ccn3": "752",
+ "cca3": "SWE",
+ "cioc": "SWE",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "SEK": {
+ "name": "Swedish krona",
+ "symbol": "kr"
+ }
+ },
+ "idd": {
+ "root": "+4",
+ "suffixes": [
+ "6"
+ ]
+ },
+ "capital": [
+ "Stockholm"
+ ],
+ "altSpellings": [
+ "SE",
+ "Kingdom of Sweden",
+ "Konungariket Sverige"
+ ],
+ "region": "Europe",
+ "subregion": "Northern Europe",
+ "languages": {
+ "swe": "Swedish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0645\u0644\u0643\u0629 \u0627\u0644\u0633\u0648\u064a\u062f",
+ "common": "\u0627\u0644\u0633\u0648\u064a\u062f"
+ },
+ "bre": {
+ "official": "Rouantelezh Sveden",
+ "common": "Sveden"
+ },
+ "ces": {
+ "official": "\u0160v\u00e9dsk\u00e9 kr\u00e1lovstv\u00ed",
+ "common": "\u0160v\u00e9dsko"
+ },
+ "deu": {
+ "official": "K\u00f6nigreich Schweden",
+ "common": "Schweden"
+ },
+ "est": {
+ "official": "Rootsi Kuningriik",
+ "common": "Rootsi"
+ },
+ "fin": {
+ "official": "Ruotsin kuningaskunta",
+ "common": "Ruotsi"
+ },
+ "fra": {
+ "official": "Royaume de Su\u00e8de",
+ "common": "Su\u00e8de"
+ },
+ "hrv": {
+ "official": "Kraljevina \u0160vedska",
+ "common": "\u0160vedska"
+ },
+ "hun": {
+ "official": "Sv\u00e9d Kir\u00e1lys\u00e1g",
+ "common": "Sv\u00e9dorsz\u00e1g"
+ },
+ "ita": {
+ "official": "Regno di Svezia",
+ "common": "Svezia"
+ },
+ "jpn": {
+ "official": "\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3\u738b\u56fd",
+ "common": "\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3"
+ },
+ "kor": {
+ "official": "\uc2a4\uc6e8\ub374 \uc655\uad6d",
+ "common": "\uc2a4\uc6e8\ub374"
+ },
+ "nld": {
+ "official": "Koninkrijk Zweden",
+ "common": "Zweden"
+ },
+ "per": {
+ "official": "\u067e\u0627\u062f\u0634\u0627\u0647\u06cc \u0633\u0648\u0626\u062f",
+ "common": "\u0633\u0648\u0626\u062f"
+ },
+ "pol": {
+ "official": "Kr\u00f3lestwo Szwecji",
+ "common": "Szwecja"
+ },
+ "por": {
+ "official": "Reino da Su\u00e9cia",
+ "common": "Su\u00e9cia"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u0440\u043e\u043b\u0435\u0432\u0441\u0442\u0432\u043e \u0428\u0432\u0435\u0446\u0438\u044f",
+ "common": "\u0428\u0432\u0435\u0446\u0438\u044f"
+ },
+ "slk": {
+ "official": "\u0160v\u00e9dske kr\u00e1\u013eovstvo",
+ "common": "\u0160v\u00e9dsko"
+ },
+ "spa": {
+ "official": "Reino de Suecia",
+ "common": "Suecia"
+ },
+ "srp": {
+ "official": "Kraljevina \u0160vedska",
+ "common": "\u0160vedska"
+ },
+ "swe": {
+ "official": "Konungariket Sverige",
+ "common": "Sverige"
+ },
+ "tur": {
+ "official": "\u0130sve\u00e7 Krall\u0131\u011f\u0131",
+ "common": "\u0130sve\u00e7"
+ },
+ "urd": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a\u0650 \u0633\u0648\u06cc\u0688\u0646",
+ "common": "\u0633\u0648\u06cc\u0688\u0646"
+ },
+ "zho": {
+ "official": "\u745e\u5178\u738b\u56fd",
+ "common": "\u745e\u5178"
+ }
+ },
+ "latlng": [
+ 62,
+ 15
+ ],
+ "landlocked": false,
+ "borders": [
+ "FIN",
+ "NOR"
+ ],
+ "area": 450295,
+ "flag": "\ud83c\uddf8\ud83c\uddea",
+ "demonyms": {
+ "eng": {
+ "f": "Swedish",
+ "m": "Swedish"
+ },
+ "fra": {
+ "f": "Su\u00e9doise",
+ "m": "Su\u00e9dois"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Eswatini",
+ "official": "Kingdom of Eswatini",
+ "native": {
+ "eng": {
+ "official": "Kingdom of Eswatini",
+ "common": "Eswatini"
+ },
+ "ssw": {
+ "official": "Umbuso weSwatini",
+ "common": "eSwatini"
+ }
+ }
+ },
+ "tld": [
+ ".sz"
+ ],
+ "cca2": "SZ",
+ "ccn3": "748",
+ "cca3": "SWZ",
+ "cioc": "SWZ",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "SZL": {
+ "name": "Swazi lilangeni",
+ "symbol": "L"
+ },
+ "ZAR": {
+ "name": "South African rand",
+ "symbol": "R"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "68"
+ ]
+ },
+ "capital": [
+ "Lobamba"
+ ],
+ "altSpellings": [
+ "SZ",
+ "Swaziland",
+ "weSwatini",
+ "Swatini",
+ "Ngwane",
+ "Kingdom of Eswatini",
+ "Umbuso weSwatini"
+ ],
+ "region": "Africa",
+ "subregion": "Southern Africa",
+ "languages": {
+ "eng": "English",
+ "ssw": "Swazi"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0645\u0644\u0643\u0629 \u0625\u0633\u0648\u0627\u062a\u064a\u0646\u064a",
+ "common": "\u0625\u0633\u0648\u0627\u062a\u064a\u0646\u064a"
+ },
+ "bre": {
+ "official": "Rouantelezh Eswatini",
+ "common": "Eswatini"
+ },
+ "ces": {
+ "official": "Svazijsk\u00e9 kr\u00e1lovstv\u00ed",
+ "common": "eSwatini"
+ },
+ "deu": {
+ "official": "K\u00f6nigreich Eswatini",
+ "common": "Eswatini"
+ },
+ "est": {
+ "official": "eSwatini Kuningriik",
+ "common": "eSwatini"
+ },
+ "fin": {
+ "official": "Swazimaan kuningaskunta",
+ "common": "Eswatini"
+ },
+ "fra": {
+ "official": "Royaume d\u2019Eswatini",
+ "common": "Eswatini"
+ },
+ "hrv": {
+ "official": "Kraljevina eSwatini",
+ "common": "Esvatini"
+ },
+ "hun": {
+ "official": "Szv\u00e1zif\u00f6ldi Kir\u00e1lys\u00e1g",
+ "common": "Szv\u00e1zif\u00f6ld"
+ },
+ "ita": {
+ "official": "Regno di eSwatini",
+ "common": "ESwatini"
+ },
+ "jpn": {
+ "official": "\u30a8\u30b9\u30ef\u30c6\u30a3\u30cb\u738b\u56fd",
+ "common": "\u30a8\u30b9\u30ef\u30c6\u30a3\u30cb"
+ },
+ "kor": {
+ "official": "\uc5d0\uc2a4\uc640\ud2f0\ub2c8 \uc655\uad6d",
+ "common": "\uc5d0\uc2a4\uc640\ud2f0\ub2c8"
+ },
+ "nld": {
+ "official": "Koninkrijk eSwatini",
+ "common": "Swaziland"
+ },
+ "per": {
+ "official": "\u067e\u0627\u062f\u0634\u0627\u0647\u06cc \u0633\u0648\u0627\u0632\u06cc\u0644\u0646\u062f",
+ "common": "\u0627\u0633\u0648\u0627\u062a\u06cc\u0646\u06cc"
+ },
+ "pol": {
+ "official": "Kr\u00f3lestwo Suazi",
+ "common": "Eswatini"
+ },
+ "por": {
+ "official": "Reino de eSwatini",
+ "common": "Essuat\u00edni"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u0440\u043e\u043b\u0435\u0432\u0441\u0442\u0432\u043e \u0421\u0432\u0430\u0437\u0438\u043b\u0435\u043d\u0434",
+ "common": "\u0421\u0432\u0430\u0437\u0438\u043b\u0435\u043d\u0434"
+ },
+ "slk": {
+ "official": "Svazijsk\u00e9 kr\u00e1\u013eovstvo",
+ "common": "Eswatini"
+ },
+ "spa": {
+ "official": "Reino de eSwatini",
+ "common": "Esuatini"
+ },
+ "srp": {
+ "official": "Kraljevina Esvatini",
+ "common": "Esvatini"
+ },
+ "swe": {
+ "official": "Konungariket Eswatini",
+ "common": "Eswatini"
+ },
+ "tur": {
+ "official": "Esvatini Krall\u0131\u011f\u0131",
+ "common": "Esvatini"
+ },
+ "urd": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a\u0650 \u0633\u0648\u0627\u0632\u06cc \u0644\u06cc\u0646\u0688",
+ "common": "\u0633\u0648\u0627\u0632\u06cc \u0644\u06cc\u0646\u0688"
+ },
+ "zho": {
+ "official": "\u65af\u5a01\u58eb\u5170\u738b\u56fd",
+ "common": "\u65af\u5a01\u58eb\u5170"
+ }
+ },
+ "latlng": [
+ -26.5,
+ 31.5
+ ],
+ "landlocked": true,
+ "borders": [
+ "MOZ",
+ "ZAF"
+ ],
+ "area": 17364,
+ "flag": "\ud83c\uddf8\ud83c\uddff",
+ "demonyms": {
+ "eng": {
+ "f": "Swazi",
+ "m": "Swazi"
+ },
+ "fra": {
+ "f": "Swazie",
+ "m": "Swazie"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Sint Maarten",
+ "official": "Sint Maarten",
+ "native": {
+ "eng": {
+ "official": "Sint Maarten",
+ "common": "Sint Maarten"
+ },
+ "fra": {
+ "official": "Saint-Martin",
+ "common": "Saint-Martin"
+ },
+ "nld": {
+ "official": "Sint Maarten",
+ "common": "Sint Maarten"
+ }
+ }
+ },
+ "tld": [
+ ".sx"
+ ],
+ "cca2": "SX",
+ "ccn3": "534",
+ "cca3": "SXM",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "ANG": {
+ "name": "Netherlands Antillean guilder",
+ "symbol": "\u0192"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "721"
+ ]
+ },
+ "capital": [
+ "Philipsburg"
+ ],
+ "altSpellings": [
+ "SX",
+ "Sint Maarten (Dutch part)"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English",
+ "fra": "French",
+ "nld": "Dutch"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0633\u064a\u0646\u062a \u0645\u0627\u0631\u062a\u0646",
+ "common": "\u0633\u064a\u0646\u062a \u0645\u0627\u0631\u062a\u0646"
+ },
+ "bre": {
+ "official": "Sint Maarten",
+ "common": "Sint Maarten"
+ },
+ "ces": {
+ "official": "Svat\u00fd Martin",
+ "common": "Svat\u00fd Martin (Nizozemsko)"
+ },
+ "deu": {
+ "official": "Sint Maarten",
+ "common": "Sint Maarten"
+ },
+ "est": {
+ "official": "Sint Maarten",
+ "common": "Sint Maarten"
+ },
+ "fin": {
+ "official": "Sint Maarten",
+ "common": "Sint Maarten"
+ },
+ "fra": {
+ "official": "Sint Maarten",
+ "common": "Saint-Martin"
+ },
+ "hrv": {
+ "official": "Sveti Martin",
+ "common": "Sveti Martin"
+ },
+ "hun": {
+ "official": "Sint Maarten",
+ "common": "Sint Maarten"
+ },
+ "ita": {
+ "official": "Sint Maarten",
+ "common": "Sint Maarten"
+ },
+ "jpn": {
+ "official": "\u30b7\u30f3\u30c8\u30fb\u30de\u30fc\u30eb\u30c6\u30f3",
+ "common": "\u30b7\u30f3\u30c8\u30fb\u30de\u30fc\u30eb\u30c6\u30f3"
+ },
+ "kor": {
+ "official": "\uc2e0\ud2b8\ub9c8\ub974\ud134",
+ "common": "\uc2e0\ud2b8\ub9c8\ub974\ud134"
+ },
+ "nld": {
+ "official": "Sint Maarten",
+ "common": "Sint Maarten"
+ },
+ "per": {
+ "official": "\u0633\u0646 \u0645\u0627\u0631\u062a\u0646",
+ "common": "\u0633\u0646 \u0645\u0627\u0631\u062a\u0646"
+ },
+ "pol": {
+ "official": "Sint Maarten",
+ "common": "Sint Maarten"
+ },
+ "por": {
+ "official": "Sint Maarten",
+ "common": "S\u00e3o Martinho"
+ },
+ "rus": {
+ "official": "\u0421\u0438\u043d\u0442-\u041c\u0430\u0430\u0440\u0442\u0435\u043d",
+ "common": "\u0421\u0438\u043d\u0442-\u041c\u0430\u0440\u0442\u0435\u043d"
+ },
+ "slk": {
+ "official": "Sint Maarten",
+ "common": "Sint Maarten"
+ },
+ "spa": {
+ "official": "Sint Maarten",
+ "common": "Sint Maarten"
+ },
+ "srp": {
+ "official": "Sveti Martin",
+ "common": "Sveti Martin"
+ },
+ "swe": {
+ "official": "Sint Maarten",
+ "common": "Sint Maarten"
+ },
+ "tur": {
+ "official": "Sint Maarten",
+ "common": "Sint Maarten"
+ },
+ "urd": {
+ "official": "\u0633\u0646\u0679 \u0645\u0627\u0631\u0679\u0646",
+ "common": "\u0633\u0646\u0679 \u0645\u0627\u0631\u0679\u0646"
+ },
+ "zho": {
+ "official": "\u5723\u9a6c\u4e01\u5c9b",
+ "common": "\u5723\u9a6c\u4e01\u5c9b"
+ }
+ },
+ "latlng": [
+ 18.033333,
+ -63.05
+ ],
+ "landlocked": false,
+ "borders": [
+ "MAF"
+ ],
+ "area": 34,
+ "flag": "\ud83c\uddf8\ud83c\uddfd",
+ "demonyms": {
+ "eng": {
+ "f": "St. Maartener",
+ "m": "St. Maartener"
+ },
+ "fra": {
+ "f": "Saint-Martinoise",
+ "m": "Saint-Martinois"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Seychelles",
+ "official": "Republic of Seychelles",
+ "native": {
+ "crs": {
+ "official": "Repiblik Sesel",
+ "common": "Sesel"
+ },
+ "eng": {
+ "official": "Republic of Seychelles",
+ "common": "Seychelles"
+ },
+ "fra": {
+ "official": "R\u00e9publique des Seychelles",
+ "common": "Seychelles"
+ }
+ }
+ },
+ "tld": [
+ ".sc"
+ ],
+ "cca2": "SC",
+ "ccn3": "690",
+ "cca3": "SYC",
+ "cioc": "SEY",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "SCR": {
+ "name": "Seychellois rupee",
+ "symbol": "\u20a8"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "48"
+ ]
+ },
+ "capital": [
+ "Victoria"
+ ],
+ "altSpellings": [
+ "SC",
+ "Republic of Seychelles",
+ "Repiblik Sesel",
+ "R\u00e9publique des Seychelles"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "crs": "Seychellois Creole",
+ "eng": "English",
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0633\u064a\u0634\u0644",
+ "common": "\u0633\u064a\u0634\u0644"
+ },
+ "bre": {
+ "official": "Republik Sechelez",
+ "common": "Sechelez"
+ },
+ "ces": {
+ "official": "Seychelsk\u00e1 republika",
+ "common": "Seychely"
+ },
+ "deu": {
+ "official": "Republik der Seychellen",
+ "common": "Seychellen"
+ },
+ "est": {
+ "official": "Sei\u0161elli Vabariik",
+ "common": "Sei\u0161ellid"
+ },
+ "fin": {
+ "official": "Seychellien tasavalta",
+ "common": "Seychellit"
+ },
+ "fra": {
+ "official": "R\u00e9publique des Seychelles",
+ "common": "Seychelles"
+ },
+ "hrv": {
+ "official": "Republika Sej\u0161eli",
+ "common": "Sej\u0161eli"
+ },
+ "hun": {
+ "official": "Seychelle K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Seychelle-szigetek"
+ },
+ "ita": {
+ "official": "Repubblica delle Seychelles",
+ "common": "Seychelles"
+ },
+ "jpn": {
+ "official": "\u30bb\u30fc\u30b7\u30a7\u30eb\u5171\u548c\u56fd",
+ "common": "\u30bb\u30fc\u30b7\u30a7\u30eb"
+ },
+ "kor": {
+ "official": "\uc138\uc774\uc178 \uacf5\ud654\uad6d",
+ "common": "\uc138\uc774\uc178"
+ },
+ "nld": {
+ "official": "Republiek der Seychellen",
+ "common": "Seychellen"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0633\u06cc\u0634\u0644",
+ "common": "\u0633\u06cc\u0634\u0644"
+ },
+ "pol": {
+ "official": "Republika Seszeli",
+ "common": "Seszele"
+ },
+ "por": {
+ "official": "Rep\u00fablica das Seychelles",
+ "common": "Seicheles"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0421\u0435\u0439\u0448\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u041e\u0441\u0442\u0440\u043e\u0432\u0430",
+ "common": "\u0421\u0435\u0439\u0448\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u041e\u0441\u0442\u0440\u043e\u0432\u0430"
+ },
+ "slk": {
+ "official": "Seychelsk\u00e1 republika",
+ "common": "Seychely"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de las Seychelles",
+ "common": "Seychelles"
+ },
+ "srp": {
+ "official": "Republika Sej\u0161eli",
+ "common": "Sej\u0161eli"
+ },
+ "swe": {
+ "official": "Republiken Seychellerna",
+ "common": "Seychellerna"
+ },
+ "tur": {
+ "official": "Sey\u015feller Cumhuriyeti",
+ "common": "Sey\u015feller"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0633\u06cc\u0686\u06cc\u0644\u06cc\u0633",
+ "common": "\u0633\u06cc\u0686\u06cc\u0644\u06cc\u0633"
+ },
+ "zho": {
+ "official": "\u585e\u820c\u5c14\u5171\u548c\u56fd",
+ "common": "\u585e\u820c\u5c14"
+ }
+ },
+ "latlng": [
+ -4.58333333,
+ 55.66666666
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 452,
+ "flag": "\ud83c\uddf8\ud83c\udde8",
+ "demonyms": {
+ "eng": {
+ "f": "Seychellois",
+ "m": "Seychellois"
+ },
+ "fra": {
+ "f": "Seychelloise",
+ "m": "Seychellois"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Syria",
+ "official": "Syrian Arab Republic",
+ "native": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0648\u0631\u064a\u0629",
+ "common": "\u0633\u0648\u0631\u064a\u0627"
+ }
+ }
+ },
+ "tld": [
+ ".sy",
+ "\u0633\u0648\u0631\u064a\u0627."
+ ],
+ "cca2": "SY",
+ "ccn3": "760",
+ "cca3": "SYR",
+ "cioc": "SYR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "SYP": {
+ "name": "Syrian pound",
+ "symbol": "\u00a3"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "63"
+ ]
+ },
+ "capital": [
+ "Damascus"
+ ],
+ "altSpellings": [
+ "SY",
+ "Syrian Arab Republic",
+ "Al-Jumh\u016br\u012byah Al-\u02bbArab\u012byah As-S\u016br\u012byah"
+ ],
+ "region": "Asia",
+ "subregion": "Western Asia",
+ "languages": {
+ "ara": "Arabic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0627\u0644\u0633\u0648\u0631\u064a\u0629",
+ "common": "\u0633\u0648\u0631\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Arab Siriat",
+ "common": "Siria"
+ },
+ "ces": {
+ "official": "Syrsk\u00e1 arabsk\u00e1 republika",
+ "common": "S\u00fdrie"
+ },
+ "deu": {
+ "official": "Arabische Republik Syrien",
+ "common": "Syrien"
+ },
+ "est": {
+ "official": "S\u00fc\u00fcria Araabia Vabariik",
+ "common": "S\u00fc\u00fcria"
+ },
+ "fin": {
+ "official": "Syyrian arabitasavalta",
+ "common": "Syyria"
+ },
+ "fra": {
+ "official": "R\u00e9publique arabe syrienne",
+ "common": "Syrie"
+ },
+ "hrv": {
+ "official": "Sirijska Arapska Republika",
+ "common": "Sirija"
+ },
+ "hun": {
+ "official": "Sz\u00edriai Arab K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Sz\u00edria"
+ },
+ "ita": {
+ "official": "Repubblica araba siriana",
+ "common": "Siria"
+ },
+ "jpn": {
+ "official": "\u30b7\u30ea\u30a2\u30fb\u30a2\u30e9\u30d6\u5171\u548c\u56fd",
+ "common": "\u30b7\u30ea\u30a2"
+ },
+ "kor": {
+ "official": "\uc2dc\ub9ac\uc544 \uc544\ub78d \uacf5\ud654\uad6d",
+ "common": "\uc2dc\ub9ac\uc544"
+ },
+ "nld": {
+ "official": "Syrische Arabische Republiek",
+ "common": "Syri\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0639\u0631\u0628\u06cc \u0633\u0648\u0631\u06cc\u0647",
+ "common": "\u0633\u0648\u0631\u06cc\u0647"
+ },
+ "pol": {
+ "official": "Syryjska Republika Arabska",
+ "common": "Syria"
+ },
+ "por": {
+ "official": "Rep\u00fablica \u00c1rabe S\u00edria",
+ "common": "S\u00edria"
+ },
+ "rus": {
+ "official": "\u0421\u0438\u0440\u0438\u0439\u0441\u043a\u0430\u044f \u0410\u0440\u0430\u0431\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0421\u0438\u0440\u0438\u044f"
+ },
+ "slk": {
+ "official": "S\u00fdrska arabsk\u00e1 republika",
+ "common": "S\u00fdria"
+ },
+ "spa": {
+ "official": "Rep\u00fablica \u00c1rabe Siria",
+ "common": "Siria"
+ },
+ "srp": {
+ "official": "Sirijska Arapska Republika",
+ "common": "Sirija"
+ },
+ "swe": {
+ "official": "Syriska arabiska republiken",
+ "common": "Syrien"
+ },
+ "tur": {
+ "official": "Suriye Arap Cumhuriyeti",
+ "common": "Suriye"
+ },
+ "urd": {
+ "official": "\u0639\u0631\u0628 \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0633\u0648\u0631\u06cc\u06c1",
+ "common": "\u0633\u0648\u0631\u06cc\u06c1"
+ },
+ "zho": {
+ "official": "\u53d9\u5229\u4e9a\u963f\u62c9\u4f2f\u5171\u548c\u56fd",
+ "common": "\u53d9\u5229\u4e9a"
+ }
+ },
+ "latlng": [
+ 35,
+ 38
+ ],
+ "landlocked": false,
+ "borders": [
+ "IRQ",
+ "ISR",
+ "JOR",
+ "LBN",
+ "TUR"
+ ],
+ "area": 185180,
+ "flag": "\ud83c\uddf8\ud83c\uddfe",
+ "demonyms": {
+ "eng": {
+ "f": "Syrian",
+ "m": "Syrian"
+ },
+ "fra": {
+ "f": "Syrienne",
+ "m": "Syrien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Turks and Caicos Islands",
+ "official": "Turks and Caicos Islands",
+ "native": {
+ "eng": {
+ "official": "Turks and Caicos Islands",
+ "common": "Turks and Caicos Islands"
+ }
+ }
+ },
+ "tld": [
+ ".tc"
+ ],
+ "cca2": "TC",
+ "ccn3": "796",
+ "cca3": "TCA",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "649"
+ ]
+ },
+ "capital": [
+ "Cockburn Town"
+ ],
+ "altSpellings": [
+ "TC"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0632\u0631 \u062a\u0648\u0631\u0643\u0633 \u0648\u0643\u0627\u064a\u0643\u0648\u0633",
+ "common": "\u062c\u0632\u0631 \u062a\u0648\u0631\u0643\u0633 \u0648\u0643\u0627\u064a\u0643\u0648\u0633"
+ },
+ "bre": {
+ "official": "Inizi Turks ha Caicos",
+ "common": "Inizi Turks ha Caicos"
+ },
+ "ces": {
+ "official": "Turks a Caicos",
+ "common": "Turks a Caicos"
+ },
+ "deu": {
+ "official": "Turks und Caicos Inseln",
+ "common": "Turks-und Caicosinseln"
+ },
+ "est": {
+ "official": "Turksi ja Caicose saared",
+ "common": "Turks ja Caicos"
+ },
+ "fin": {
+ "official": "Turks-ja Caicossaaret",
+ "common": "Turks-ja Caicossaaret"
+ },
+ "fra": {
+ "official": "\u00celes Turques et Ca\u00efques",
+ "common": "\u00celes Turques-et-Ca\u00efques"
+ },
+ "hrv": {
+ "official": "Otoci Turks i Caicos",
+ "common": "Otoci Turks i Caicos"
+ },
+ "hun": {
+ "official": "Turks- \u00e9s Caicos-szigetek",
+ "common": "Turks- \u00e9s Caicos-szigetek"
+ },
+ "ita": {
+ "official": "Turks e Caicos",
+ "common": "Isole Turks e Caicos"
+ },
+ "jpn": {
+ "official": "\u30bf\u30fc\u30af\u30b9\u30fb\u30ab\u30a4\u30b3\u30b9\u8af8\u5cf6",
+ "common": "\u30bf\u30fc\u30af\u30b9\u30fb\u30ab\u30a4\u30b3\u30b9\u8af8\u5cf6"
+ },
+ "kor": {
+ "official": "\ud130\ud06c\uc2a4 \ucf00\uc774\ucee4\uc2a4 \uc81c\ub3c4",
+ "common": "\ud130\ud06c\uc2a4 \ucf00\uc774\ucee4\uc2a4 \uc81c\ub3c4"
+ },
+ "nld": {
+ "official": "Turks-en Caicoseilanden",
+ "common": "Turks-en Caicoseilanden"
+ },
+ "per": {
+ "official": "\u062c\u0632\u0627\u06cc\u0631 \u062a\u0648\u0631\u06a9\u0633 \u0648 \u06a9\u0627\u06cc\u06a9\u0648\u0633",
+ "common": "\u062c\u0632\u0627\u06cc\u0631 \u062a\u0648\u0631\u06a9\u0633 \u0648 \u06a9\u0627\u06cc\u06a9\u0648\u0633"
+ },
+ "pol": {
+ "official": "Turks i Caicos",
+ "common": "Turks i Caicos"
+ },
+ "por": {
+ "official": "Ilhas Turks e Caicos",
+ "common": "Ilhas Turks e Caicos"
+ },
+ "rus": {
+ "official": "\u0422\u0435\u0440\u043a\u0441 \u0438 \u041a\u0430\u0439\u043a\u043e\u0441 \u043e\u0441\u0442\u0440\u043e\u0432\u0430",
+ "common": "\u0422\u0435\u0440\u043a\u0441 \u0438 \u041a\u0430\u0439\u043a\u043e\u0441"
+ },
+ "slk": {
+ "official": "Ostrovy Turks a Caicos",
+ "common": "Turks a Caicos"
+ },
+ "spa": {
+ "official": "Islas Turcas y Caicos",
+ "common": "Islas Turks y Caicos"
+ },
+ "srp": {
+ "official": "Ostrva Terks i Kejkos",
+ "common": "Ostrva Terks i Kejkos"
+ },
+ "swe": {
+ "official": "Turks- och Caicos\u00f6arna",
+ "common": "Turks- och Caicos\u00f6arna"
+ },
+ "tur": {
+ "official": "Turks ve Caicos Adalar\u0131",
+ "common": "Turks ve Caicos Adalar\u0131"
+ },
+ "urd": {
+ "official": "\u062c\u0632\u0627\u0626\u0631 \u06a9\u06cc\u06a9\u0633 \u0648 \u062a\u0631\u06a9\u06cc\u06c1",
+ "common": "\u062c\u0632\u0627\u0626\u0631 \u06a9\u06cc\u06a9\u0633 \u0648 \u062a\u0631\u06a9\u06cc\u06c1"
+ },
+ "zho": {
+ "official": "\u7279\u514b\u65af\u548c\u51ef\u79d1\u65af\u7fa4\u5c9b",
+ "common": "\u7279\u514b\u65af\u548c\u51ef\u79d1\u65af\u7fa4\u5c9b"
+ }
+ },
+ "latlng": [
+ 21.75,
+ -71.58333333
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 948,
+ "flag": "\ud83c\uddf9\ud83c\udde8",
+ "demonyms": {
+ "eng": {
+ "f": "Turks and Caicos Islander",
+ "m": "Turks and Caicos Islander"
+ },
+ "fra": {
+ "f": "",
+ "m": ""
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Chad",
+ "official": "Republic of Chad",
+ "native": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u062a\u0634\u0627\u062f",
+ "common": "\u062a\u0634\u0627\u062f"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Tchad",
+ "common": "Tchad"
+ }
+ }
+ },
+ "tld": [
+ ".td"
+ ],
+ "cca2": "TD",
+ "ccn3": "148",
+ "cca3": "TCD",
+ "cioc": "CHA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "XAF": {
+ "name": "Central African CFA franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "35"
+ ]
+ },
+ "capital": [
+ "N'Djamena"
+ ],
+ "altSpellings": [
+ "TD",
+ "Tchad",
+ "Republic of Chad",
+ "R\u00e9publique du Tchad"
+ ],
+ "region": "Africa",
+ "subregion": "Middle Africa",
+ "languages": {
+ "ara": "Arabic",
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u062a\u0634\u0627\u062f",
+ "common": "\u062a\u0634\u0627\u062f"
+ },
+ "bre": {
+ "official": "Republik Tchad",
+ "common": "Tchad"
+ },
+ "ces": {
+ "official": "\u010cadsk\u00e1 republika",
+ "common": "\u010cad"
+ },
+ "deu": {
+ "official": "Republik Tschad",
+ "common": "Tschad"
+ },
+ "est": {
+ "official": "T\u0161aadi Vabariik",
+ "common": "T\u0161aad"
+ },
+ "fin": {
+ "official": "T\u0161adin tasavalta",
+ "common": "T\u0161ad"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Tchad",
+ "common": "Tchad"
+ },
+ "hrv": {
+ "official": "\u010cadu",
+ "common": "\u010cad"
+ },
+ "hun": {
+ "official": "Cs\u00e1d K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Cs\u00e1d"
+ },
+ "ita": {
+ "official": "Repubblica del Ciad",
+ "common": "Ciad"
+ },
+ "jpn": {
+ "official": "\u30c1\u30e3\u30c9\u5171\u548c\u56fd",
+ "common": "\u30c1\u30e3\u30c9"
+ },
+ "kor": {
+ "official": "\ucc28\ub4dc \uacf5\ud654\uad6d",
+ "common": "\ucc28\ub4dc"
+ },
+ "nld": {
+ "official": "Republiek Tsjaad",
+ "common": "Tsjaad"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0686\u0627\u062f",
+ "common": "\u0686\u0627\u062f"
+ },
+ "pol": {
+ "official": "Republika Czadu",
+ "common": "Czad"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Chade",
+ "common": "Chade"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0427\u0430\u0434",
+ "common": "\u0427\u0430\u0434"
+ },
+ "slk": {
+ "official": "\u010cadsk\u00e1 republika",
+ "common": "\u010cad"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Chad",
+ "common": "Chad"
+ },
+ "srp": {
+ "official": "Republika \u010cad",
+ "common": "\u010cad"
+ },
+ "swe": {
+ "official": "Republiken Tchad",
+ "common": "Tchad"
+ },
+ "tur": {
+ "official": "\u00e7ad Cumhuriyeti",
+ "common": "\u00e7ad"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0686\u0627\u0688",
+ "common": "\u0686\u0627\u0688"
+ },
+ "zho": {
+ "official": "\u4e4d\u5f97\u5171\u548c\u56fd",
+ "common": "\u4e4d\u5f97"
+ }
+ },
+ "latlng": [
+ 15,
+ 19
+ ],
+ "landlocked": true,
+ "borders": [
+ "CMR",
+ "CAF",
+ "LBY",
+ "NER",
+ "NGA",
+ "SDN"
+ ],
+ "area": 1284000,
+ "flag": "\ud83c\uddf9\ud83c\udde9",
+ "demonyms": {
+ "eng": {
+ "f": "Chadian",
+ "m": "Chadian"
+ },
+ "fra": {
+ "f": "Tchadienne",
+ "m": "Tchadien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Togo",
+ "official": "Togolese Republic",
+ "native": {
+ "fra": {
+ "official": "R\u00e9publique togolaise",
+ "common": "Togo"
+ }
+ }
+ },
+ "tld": [
+ ".tg"
+ ],
+ "cca2": "TG",
+ "ccn3": "768",
+ "cca3": "TGO",
+ "cioc": "TOG",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "XOF": {
+ "name": "West African CFA franc",
+ "symbol": "Fr"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "28"
+ ]
+ },
+ "capital": [
+ "Lom\u00e9"
+ ],
+ "altSpellings": [
+ "TG",
+ "Togolese",
+ "Togolese Republic",
+ "R\u00e9publique Togolaise"
+ ],
+ "region": "Africa",
+ "subregion": "Western Africa",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u062a\u0648\u063a\u0648",
+ "common": "\u062a\u0648\u063a\u0648"
+ },
+ "bre": {
+ "official": "Republik Togoat",
+ "common": "Togo"
+ },
+ "ces": {
+ "official": "Republika Togo",
+ "common": "Togo"
+ },
+ "deu": {
+ "official": "Republik Togo",
+ "common": "Togo"
+ },
+ "est": {
+ "official": "Togo Vabariik",
+ "common": "Togo"
+ },
+ "fin": {
+ "official": "Togon tasavalta",
+ "common": "Togo"
+ },
+ "fra": {
+ "official": "R\u00e9publique togolaise",
+ "common": "Togo"
+ },
+ "hrv": {
+ "official": "Togolese Republika",
+ "common": "Togo"
+ },
+ "hun": {
+ "official": "Tog\u00f3i K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Togo"
+ },
+ "ita": {
+ "official": "Repubblica del Togo",
+ "common": "Togo"
+ },
+ "jpn": {
+ "official": "\u30c8\u30fc\u30b4\u5171\u548c\u56fd",
+ "common": "\u30c8\u30fc\u30b4"
+ },
+ "kor": {
+ "official": "\ud1a0\uace0 \uacf5\ud654\uad6d",
+ "common": "\ud1a0\uace0"
+ },
+ "nld": {
+ "official": "Republiek Togo",
+ "common": "Togo"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062a\u0648\u06af\u0648",
+ "common": "\u062a\u0648\u06af\u0648"
+ },
+ "pol": {
+ "official": "Republika Togijska",
+ "common": "Togo"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Togo",
+ "common": "Togo"
+ },
+ "rus": {
+ "official": "\u0422\u043e\u0433\u043e \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0422\u043e\u0433\u043e"
+ },
+ "slk": {
+ "official": "Togsk\u00e1 republika",
+ "common": "Togo"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Togo",
+ "common": "Togo"
+ },
+ "srp": {
+ "official": "Republika Togo",
+ "common": "Togo"
+ },
+ "swe": {
+ "official": "Republiken Togo",
+ "common": "Togo"
+ },
+ "tur": {
+ "official": "Togo Cumhuriyeti",
+ "common": "Togo"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0679\u0648\u06af\u0648",
+ "common": "\u0679\u0648\u06af\u0648"
+ },
+ "zho": {
+ "official": "\u591a\u54e5\u5171\u548c\u56fd",
+ "common": "\u591a\u54e5"
+ }
+ },
+ "latlng": [
+ 8,
+ 1.16666666
+ ],
+ "landlocked": false,
+ "borders": [
+ "BEN",
+ "BFA",
+ "GHA"
+ ],
+ "area": 56785,
+ "flag": "\ud83c\uddf9\ud83c\uddec",
+ "demonyms": {
+ "eng": {
+ "f": "Togolese",
+ "m": "Togolese"
+ },
+ "fra": {
+ "f": "Togolaise",
+ "m": "Togolais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Thailand",
+ "official": "Kingdom of Thailand",
+ "native": {
+ "tha": {
+ "official": "\u0e23\u0e32\u0e0a\u0e2d\u0e32\u0e13\u0e32\u0e08\u0e31\u0e01\u0e23\u0e44\u0e17\u0e22",
+ "common": "\u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22"
+ }
+ }
+ },
+ "tld": [
+ ".th",
+ ".\u0e44\u0e17\u0e22"
+ ],
+ "cca2": "TH",
+ "ccn3": "764",
+ "cca3": "THA",
+ "cioc": "THA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "THB": {
+ "name": "Thai baht",
+ "symbol": "\u0e3f"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "6"
+ ]
+ },
+ "capital": [
+ "Bangkok"
+ ],
+ "altSpellings": [
+ "TH",
+ "Prathet",
+ "Thai",
+ "Kingdom of Thailand",
+ "\u0e23\u0e32\u0e0a\u0e2d\u0e32\u0e13\u0e32\u0e08\u0e31\u0e01\u0e23\u0e44\u0e17\u0e22",
+ "Ratcha Anachak Thai"
+ ],
+ "region": "Asia",
+ "subregion": "South-Eastern Asia",
+ "languages": {
+ "tha": "Thai"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0645\u0644\u0643\u0629 \u062a\u0627\u064a\u0644\u0646\u062f",
+ "common": "\u062a\u0627\u064a\u0644\u0646\u062f"
+ },
+ "bre": {
+ "official": "Rouantelezh Thailand",
+ "common": "Thailand"
+ },
+ "ces": {
+ "official": "Thajsk\u00e9 kr\u00e1lovstv\u00ed",
+ "common": "Thajsko"
+ },
+ "deu": {
+ "official": "K\u00f6nigreich Thailand",
+ "common": "Thailand"
+ },
+ "est": {
+ "official": "Tai Kuningriik",
+ "common": "Tai"
+ },
+ "fin": {
+ "official": "Thaimaan kuningaskunta",
+ "common": "Thaimaa"
+ },
+ "fra": {
+ "official": "Royaume de Tha\u00eflande",
+ "common": "Tha\u00eflande"
+ },
+ "hrv": {
+ "official": "Kraljevina Tajland",
+ "common": "Tajland"
+ },
+ "hun": {
+ "official": "Thaif\u00f6ldi Kir\u00e1lys\u00e1g",
+ "common": "Thaif\u00f6ld"
+ },
+ "ita": {
+ "official": "Regno di Thailandia",
+ "common": "Tailandia"
+ },
+ "jpn": {
+ "official": "\u30bf\u30a4\u738b\u56fd",
+ "common": "\u30bf\u30a4"
+ },
+ "kor": {
+ "official": "\ud0c0\uc774 \uc655\uad6d",
+ "common": "\ud0dc\uad6d"
+ },
+ "nld": {
+ "official": "Koninkrijk Thailand",
+ "common": "Thailand"
+ },
+ "per": {
+ "official": "\u067e\u0627\u062f\u0634\u0627\u0647\u06cc \u062a\u0627\u06cc\u0644\u0646\u062f",
+ "common": "\u062a\u0627\u06cc\u0644\u0646\u062f"
+ },
+ "pol": {
+ "official": "Kr\u00f3lestwo Tajlandii",
+ "common": "Tajlandia"
+ },
+ "por": {
+ "official": "Reino da Tail\u00e2ndia",
+ "common": "Tail\u00e2ndia"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u0440\u043e\u043b\u0435\u0432\u0441\u0442\u0432\u043e \u0422\u0430\u0438\u043b\u0430\u043d\u0434",
+ "common": "\u0422\u0430\u0438\u043b\u0430\u043d\u0434"
+ },
+ "slk": {
+ "official": "Thajsk\u00e9 kr\u00e1\u013eovstvo",
+ "common": "Thajsko"
+ },
+ "spa": {
+ "official": "Reino de Tailandia",
+ "common": "Tailandia"
+ },
+ "srp": {
+ "official": "Kraljevina Tajland",
+ "common": "Tajland"
+ },
+ "swe": {
+ "official": "Konungariket Thailand",
+ "common": "Thailand"
+ },
+ "tur": {
+ "official": "Tayland Krall\u0131\u011f\u0131",
+ "common": "Tayland"
+ },
+ "urd": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a\u0650 \u062a\u06be\u0627\u0626\u06cc \u0644\u06cc\u0646\u0688",
+ "common": "\u062a\u06be\u0627\u0626\u06cc \u0644\u06cc\u0646\u0688"
+ },
+ "zho": {
+ "official": "\u6cf0\u738b\u56fd",
+ "common": "\u6cf0\u56fd"
+ }
+ },
+ "latlng": [
+ 15,
+ 100
+ ],
+ "landlocked": false,
+ "borders": [
+ "MMR",
+ "KHM",
+ "LAO",
+ "MYS"
+ ],
+ "area": 513120,
+ "flag": "\ud83c\uddf9\ud83c\udded",
+ "demonyms": {
+ "eng": {
+ "f": "Thai",
+ "m": "Thai"
+ },
+ "fra": {
+ "f": "Tha\u00eflandaise",
+ "m": "Tha\u00eflandais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Tajikistan",
+ "official": "Republic of Tajikistan",
+ "native": {
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0422\u0430\u0434\u0436\u0438\u043a\u0438\u0441\u0442\u0430\u043d",
+ "common": "\u0422\u0430\u0434\u0436\u0438\u043a\u0438\u0441\u0442\u0430\u043d"
+ },
+ "tgk": {
+ "official": "\u04b6\u0443\u043c\u04b3\u0443\u0440\u0438\u0438 \u0422\u043e\u04b7\u0438\u043a\u0438\u0441\u0442\u043e\u043d",
+ "common": "\u0422\u043e\u04b7\u0438\u043a\u0438\u0441\u0442\u043e\u043d"
+ }
+ }
+ },
+ "tld": [
+ ".tj"
+ ],
+ "cca2": "TJ",
+ "ccn3": "762",
+ "cca3": "TJK",
+ "cioc": "TJK",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "TJS": {
+ "name": "Tajikistani somoni",
+ "symbol": "\u0405\u041c"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "92"
+ ]
+ },
+ "capital": [
+ "Dushanbe"
+ ],
+ "altSpellings": [
+ "TJ",
+ "To\u00e7ikiston",
+ "Republic of Tajikistan",
+ "\u04b6\u0443\u043c\u04b3\u0443\u0440\u0438\u0438 \u0422\u043e\u04b7\u0438\u043a\u0438\u0441\u0442\u043e\u043d",
+ "\u00c7umhuriyi To\u00e7ikiston"
+ ],
+ "region": "Asia",
+ "subregion": "Central Asia",
+ "languages": {
+ "rus": "Russian",
+ "tgk": "Tajik"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0637\u0627\u062c\u064a\u0643\u0633\u062a\u0627\u0646",
+ "common": "\u0637\u0627\u062c\u064a\u0643\u0633\u062a\u0627\u0646"
+ },
+ "bre": {
+ "official": "Republik Tadjikistan",
+ "common": "Tadjikistan"
+ },
+ "ces": {
+ "official": "Republika T\u00e1d\u017eikist\u00e1n",
+ "common": "T\u00e1d\u017eikist\u00e1n"
+ },
+ "deu": {
+ "official": "Republik Tadschikistan",
+ "common": "Tadschikistan"
+ },
+ "est": {
+ "official": "Tad\u017eikistani Vabariik",
+ "common": "Tad\u017eikistan"
+ },
+ "fin": {
+ "official": "Tad\u017eikistanin tasavalta",
+ "common": "Tad\u017eikistan"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Tadjikistan",
+ "common": "Tadjikistan"
+ },
+ "hrv": {
+ "official": "Republika Tad\u017eikistan",
+ "common": "Ta\u0111ikistan"
+ },
+ "hun": {
+ "official": "T\u00e1dzsik K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "T\u00e1dzsikiszt\u00e1n"
+ },
+ "ita": {
+ "official": "Repubblica del Tajikistan",
+ "common": "Tagikistan"
+ },
+ "jpn": {
+ "official": "\u30bf\u30b8\u30ad\u30b9\u30bf\u30f3\u5171\u548c\u56fd",
+ "common": "\u30bf\u30b8\u30ad\u30b9\u30bf\u30f3"
+ },
+ "kor": {
+ "official": "\ud0c0\uc9c0\ud0a4\uc2a4\ud0c4 \uacf5\ud654\uad6d",
+ "common": "\ud0c0\uc9c0\ud0a4\uc2a4\ud0c4"
+ },
+ "nld": {
+ "official": "Tadzjikistan",
+ "common": "Tadzjikistan"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062a\u0627\u062c\u06cc\u06a9\u0633\u062a\u0627\u0646",
+ "common": "\u062a\u0627\u062c\u06cc\u06a9\u0650\u0633\u062a\u0627\u0646"
+ },
+ "pol": {
+ "official": "Republika Tad\u017cykistanu",
+ "common": "Tad\u017cykistan"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Tajiquist\u00e3o",
+ "common": "Tajiquist\u00e3o"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0422\u0430\u0434\u0436\u0438\u043a\u0438\u0441\u0442\u0430\u043d",
+ "common": "\u0422\u0430\u0434\u0436\u0438\u043a\u0438\u0441\u0442\u0430\u043d"
+ },
+ "slk": {
+ "official": "Ta\u01c6ick\u00e1 republika",
+ "common": "Ta\u01c6ikistan"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Tayikist\u00e1n",
+ "common": "Tayikist\u00e1n"
+ },
+ "srp": {
+ "official": "Republika Tad\u017eikistan",
+ "common": "Tad\u017eikistan"
+ },
+ "swe": {
+ "official": "Republiken Tadzjikistan",
+ "common": "Tadzjikistan"
+ },
+ "tur": {
+ "official": "Tacikistan Cumhuriyeti",
+ "common": "Tacikistan"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u062a\u0627\u062c\u06a9\u0633\u062a\u0627\u0646",
+ "common": "\u062a\u0627\u062c\u06a9\u0633\u062a\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u5854\u5409\u514b\u65af\u5766\u5171\u548c\u56fd",
+ "common": "\u5854\u5409\u514b\u65af\u5766"
+ }
+ },
+ "latlng": [
+ 39,
+ 71
+ ],
+ "landlocked": true,
+ "borders": [
+ "AFG",
+ "CHN",
+ "KGZ",
+ "UZB"
+ ],
+ "area": 143100,
+ "flag": "\ud83c\uddf9\ud83c\uddef",
+ "demonyms": {
+ "eng": {
+ "f": "Tadzhik",
+ "m": "Tadzhik"
+ },
+ "fra": {
+ "f": "Tadjike",
+ "m": "Tadjike"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Tokelau",
+ "official": "Tokelau",
+ "native": {
+ "eng": {
+ "official": "Tokelau",
+ "common": "Tokelau"
+ },
+ "smo": {
+ "official": "Tokelau",
+ "common": "Tokelau"
+ },
+ "tkl": {
+ "official": "Tokelau",
+ "common": "Tokelau"
+ }
+ }
+ },
+ "tld": [
+ ".tk"
+ ],
+ "cca2": "TK",
+ "ccn3": "772",
+ "cca3": "TKL",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "NZD": {
+ "name": "New Zealand dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "90"
+ ]
+ },
+ "capital": [
+ "Fakaofo"
+ ],
+ "altSpellings": [
+ "TK"
+ ],
+ "region": "Oceania",
+ "subregion": "Polynesia",
+ "languages": {
+ "eng": "English",
+ "smo": "Samoan",
+ "tkl": "Tokelauan"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062a\u0648\u0643\u064a\u0644\u0627\u0648",
+ "common": "\u062a\u0648\u0643\u064a\u0644\u0627\u0648"
+ },
+ "bre": {
+ "official": "Tokelau",
+ "common": "Tokelau"
+ },
+ "ces": {
+ "official": "Tokelau",
+ "common": "Tokelau"
+ },
+ "deu": {
+ "official": "Tokelau",
+ "common": "Tokelau"
+ },
+ "est": {
+ "official": "Tokelau",
+ "common": "Tokelau"
+ },
+ "fin": {
+ "official": "Tokelau",
+ "common": "Tokelau"
+ },
+ "fra": {
+ "official": "\u00celes Tokelau",
+ "common": "Tokelau"
+ },
+ "hrv": {
+ "official": "Tokelau",
+ "common": "Tokelau"
+ },
+ "hun": {
+ "official": "Tokelau-szigetek",
+ "common": "Tokelau-szigetek"
+ },
+ "ita": {
+ "official": "Tokelau",
+ "common": "Isole Tokelau"
+ },
+ "jpn": {
+ "official": "\u30c8\u30b1\u30e9\u30a6\u8af8\u5cf6",
+ "common": "\u30c8\u30b1\u30e9\u30a6"
+ },
+ "kor": {
+ "official": "\ud1a0\ucf08\ub77c\uc6b0",
+ "common": "\ud1a0\ucf08\ub77c\uc6b0"
+ },
+ "nld": {
+ "official": "Tokelau",
+ "common": "Tokelau"
+ },
+ "per": {
+ "official": "\u062a\u0648\u06a9\u0644\u0627\u0626\u0648",
+ "common": "\u062a\u0648\u06a9\u0644\u0627\u0626\u0648"
+ },
+ "pol": {
+ "official": "Tokelau",
+ "common": "Tokelau"
+ },
+ "por": {
+ "official": "Tokelau",
+ "common": "Tokelau"
+ },
+ "rus": {
+ "official": "\u0422\u043e\u043a\u0435\u043b\u0430\u0443",
+ "common": "\u0422\u043e\u043a\u0435\u043b\u0430\u0443"
+ },
+ "slk": {
+ "official": "Tokelausk\u00e9 ostrovy",
+ "common": "Tokelau"
+ },
+ "spa": {
+ "official": "Tokelau",
+ "common": "Islas Tokelau"
+ },
+ "srp": {
+ "official": "Tokelau",
+ "common": "Tokelau"
+ },
+ "swe": {
+ "official": "Tokelau\u00f6arna",
+ "common": "Tokelau\u00f6arna"
+ },
+ "tur": {
+ "official": "Tokelau",
+ "common": "Tokelau"
+ },
+ "urd": {
+ "official": "\u0679\u0648\u06a9\u06cc\u0644\u0627\u0624",
+ "common": "\u0679\u0648\u06a9\u06cc\u0644\u0627\u0624"
+ },
+ "zho": {
+ "official": "\u6258\u514b\u52b3",
+ "common": "\u6258\u514b\u52b3"
+ }
+ },
+ "latlng": [
+ -9,
+ -172
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 12,
+ "flag": "\ud83c\uddf9\ud83c\uddf0",
+ "demonyms": {
+ "eng": {
+ "f": "Tokelauan",
+ "m": "Tokelauan"
+ },
+ "fra": {
+ "f": "",
+ "m": ""
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Turkmenistan",
+ "official": "Turkmenistan",
+ "native": {
+ "rus": {
+ "official": "\u0422\u0443\u0440\u043a\u043c\u0435\u043d\u0438\u0441\u0442\u0430\u043d",
+ "common": "\u0422\u0443\u0440\u043a\u043c\u0435\u043d\u0438\u044f"
+ },
+ "tuk": {
+ "official": "T\u00fcrkmenistan",
+ "common": "T\u00fcrkmenistan"
+ }
+ }
+ },
+ "tld": [
+ ".tm"
+ ],
+ "cca2": "TM",
+ "ccn3": "795",
+ "cca3": "TKM",
+ "cioc": "TKM",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "TMT": {
+ "name": "Turkmenistan manat",
+ "symbol": "m"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "93"
+ ]
+ },
+ "capital": [
+ "Ashgabat"
+ ],
+ "altSpellings": [
+ "TM"
+ ],
+ "region": "Asia",
+ "subregion": "Central Asia",
+ "languages": {
+ "rus": "Russian",
+ "tuk": "Turkmen"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062a\u0631\u0643\u0645\u0627\u0646\u0633\u062a\u0627\u0646",
+ "common": "\u062a\u0631\u0643\u0645\u0627\u0646\u0633\u062a\u0627\u0646"
+ },
+ "bre": {
+ "official": "Republik Turkmenistan",
+ "common": "Turkmenistan"
+ },
+ "ces": {
+ "official": "Turkmenist\u00e1n",
+ "common": "Turkmenist\u00e1n"
+ },
+ "deu": {
+ "official": "Turkmenistan",
+ "common": "Turkmenistan"
+ },
+ "est": {
+ "official": "T\u00fcrkmenistan",
+ "common": "T\u00fcrkmenistan"
+ },
+ "fin": {
+ "official": "Turkmenistan",
+ "common": "Turkmenistan"
+ },
+ "fra": {
+ "official": "Turkm\u00e9nistan",
+ "common": "Turkm\u00e9nistan"
+ },
+ "hrv": {
+ "official": "Turkmenistan",
+ "common": "Turkmenistan"
+ },
+ "hun": {
+ "official": "T\u00fcrkm\u00e9n K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "T\u00fcrkmeniszt\u00e1n"
+ },
+ "ita": {
+ "official": "Turkmenistan",
+ "common": "Turkmenistan"
+ },
+ "jpn": {
+ "official": "\u30c8\u30eb\u30af\u30e1\u30cb\u30b9\u30bf\u30f3",
+ "common": "\u30c8\u30eb\u30af\u30e1\u30cb\u30b9\u30bf\u30f3"
+ },
+ "kor": {
+ "official": "\ud22c\ub974\ud06c\uba54\ub2c8\uc2a4\ud0c4",
+ "common": "\ud22c\ub974\ud06c\uba54\ub2c8\uc2a4\ud0c4"
+ },
+ "nld": {
+ "official": "Turkmenistan",
+ "common": "Turkmenistan"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062e\u0644\u0642 \u062a\u0631\u06a9\u0645\u0646\u0633\u062a\u0627\u0646",
+ "common": "\u062a\u0631\u06a9\u0645\u0646\u0633\u062a\u0627\u0646"
+ },
+ "pol": {
+ "official": "Republika Turkmenistanu",
+ "common": "Turkmenistan"
+ },
+ "por": {
+ "official": "Turcomenist\u00e3o",
+ "common": "Turquemenist\u00e3o"
+ },
+ "rus": {
+ "official": "\u0422\u0443\u0440\u043a\u043c\u0435\u043d\u0438\u0441\u0442\u0430\u043d",
+ "common": "\u0422\u0443\u0440\u043a\u043c\u0435\u043d\u0438\u044f"
+ },
+ "slk": {
+ "official": "Turkm\u00e9nsko",
+ "common": "Turkm\u00e9nsko"
+ },
+ "spa": {
+ "official": "Turkmenist\u00e1n",
+ "common": "Turkmenist\u00e1n"
+ },
+ "srp": {
+ "official": "Turkmenistan",
+ "common": "Turkmenistan"
+ },
+ "swe": {
+ "official": "Turkmenistan",
+ "common": "Turkmenistan"
+ },
+ "tur": {
+ "official": "T\u00fcrkmenistan",
+ "common": "T\u00fcrkmenistan"
+ },
+ "urd": {
+ "official": "\u062a\u0631\u06a9\u0645\u0627\u0646\u0633\u062a\u0627\u0646",
+ "common": "\u062a\u0631\u06a9\u0645\u0627\u0646\u0633\u062a\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u571f\u5e93\u66fc\u65af\u5766",
+ "common": "\u571f\u5e93\u66fc\u65af\u5766"
+ }
+ },
+ "latlng": [
+ 40,
+ 60
+ ],
+ "landlocked": true,
+ "borders": [
+ "AFG",
+ "IRN",
+ "KAZ",
+ "UZB"
+ ],
+ "area": 488100,
+ "flag": "\ud83c\uddf9\ud83c\uddf2",
+ "demonyms": {
+ "eng": {
+ "f": "Turkmen",
+ "m": "Turkmen"
+ },
+ "fra": {
+ "f": "Turkm\u00e8ne",
+ "m": "Turkm\u00e8ne"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Timor-Leste",
+ "official": "Democratic Republic of Timor-Leste",
+ "native": {
+ "por": {
+ "official": "Rep\u00fablica Democr\u00e1tica de Timor-Leste",
+ "common": "Timor-Leste"
+ },
+ "tet": {
+ "official": "Rep\u00fablika Demokr\u00e1tika Tim\u00f3r-Leste",
+ "common": "Tim\u00f3r-Leste"
+ }
+ }
+ },
+ "tld": [
+ ".tl"
+ ],
+ "cca2": "TL",
+ "ccn3": "626",
+ "cca3": "TLS",
+ "cioc": "TLS",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "70"
+ ]
+ },
+ "capital": [
+ "Dili"
+ ],
+ "altSpellings": [
+ "TL",
+ "East Timor",
+ "Timor",
+ "Democratic Republic of Timor-Leste",
+ "Rep\u00fablica Democr\u00e1tica de Timor-Leste",
+ "Rep\u00fablika Demokr\u00e1tika Tim\u00f3r-Leste",
+ "Tim\u00f3r Lorosa'e",
+ "Timor Lorosae"
+ ],
+ "region": "Asia",
+ "subregion": "South-Eastern Asia",
+ "languages": {
+ "por": "Portuguese",
+ "tet": "Tetum"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u062a\u064a\u0645\u0648\u0631 \u0627\u0644\u0634\u0631\u0642\u064a\u0629 \u0627\u0644\u062f\u064a\u0645\u0642\u0631\u0627\u0637\u064a\u0629",
+ "common": "\u062a\u064a\u0645\u0648\u0631 \u0627\u0644\u0634\u0631\u0642\u064a\u0629"
+ },
+ "bre": {
+ "official": "Republik demakratel Timor ar Reter",
+ "common": "Timor ar Reter"
+ },
+ "ces": {
+ "official": "Demokratick\u00e1 republika V\u00fdchodn\u00ed Timor",
+ "common": "V\u00fdchodn\u00ed Timor"
+ },
+ "deu": {
+ "official": "Demokratische Republik Timor-Leste",
+ "common": "Osttimor"
+ },
+ "est": {
+ "official": "Timor-Leste Demokraatlik Vabariik",
+ "common": "Ida-Timor"
+ },
+ "fin": {
+ "official": "It\u00e4-Timorin demokraattinen tasavalta",
+ "common": "It\u00e4-Timor"
+ },
+ "fra": {
+ "official": "R\u00e9publique d\u00e9mocratique du Timor oriental",
+ "common": "Timor oriental"
+ },
+ "hrv": {
+ "official": "Demokratska Republika Timor-Leste",
+ "common": "Isto\u010dni Timor"
+ },
+ "hun": {
+ "official": "Kelet-timori Demokratikus K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Kelet-Timor"
+ },
+ "ita": {
+ "official": "Repubblica Democratica di Timor Est",
+ "common": "Timor Est"
+ },
+ "jpn": {
+ "official": "\u6771\u30c6\u30a3\u30e2\u30fc\u30eb\u6c11\u4e3b\u5171\u548c\u56fd",
+ "common": "\u6771\u30c6\u30a3\u30e2\u30fc\u30eb"
+ },
+ "kor": {
+ "official": "\ub3d9\ud2f0\ubaa8\ub974 \ubbfc\uc8fc \uacf5\ud654\uad6d",
+ "common": "\ub3d9\ud2f0\ubaa8\ub974"
+ },
+ "nld": {
+ "official": "Democratische Republiek Oost-Timor",
+ "common": "Oost-Timor"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062f\u0645\u0648\u06a9\u0631\u0627\u062a\u06cc\u06a9 \u062a\u06cc\u0645\u0648\u0631 \u0634\u0631\u0642\u06cc",
+ "common": "\u062a\u06cc\u0645\u0648\u0631 \u0634\u0631\u0642\u06cc"
+ },
+ "pol": {
+ "official": "Demokratyczna Republika Timoru Wschodniego",
+ "common": "Timor Wschodni"
+ },
+ "por": {
+ "official": "Rep\u00fablica Democr\u00e1tica de Timor-Leste",
+ "common": "Timor-Leste"
+ },
+ "rus": {
+ "official": "\u0414\u0435\u043c\u043e\u043a\u0440\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0422\u0438\u043c\u043e\u0440 -\u041b\u0435\u0448\u0442\u0438",
+ "common": "\u0412\u043e\u0441\u0442\u043e\u0447\u043d\u044b\u0439 \u0422\u0438\u043c\u043e\u0440"
+ },
+ "slk": {
+ "official": "V\u00fdchodotimorsk\u00e1 demokratick\u00e1 republika",
+ "common": "V\u00fdchodn\u00fd Timor"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Democr\u00e1tica de Timor-Leste",
+ "common": "Timor Oriental"
+ },
+ "srp": {
+ "official": "Demokratska Republika Isto\u010dni Timor",
+ "common": "Isto\u010dni Timor"
+ },
+ "swe": {
+ "official": "Demokratiska republiken \u00d6sttimor",
+ "common": "\u00d6sttimor"
+ },
+ "tur": {
+ "official": "Do\u011fu Timor Demokratik Cumhuriyeti",
+ "common": "Do\u011fu Timor"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0645\u0634\u0631\u0642\u06cc \u062a\u06cc\u0645\u0648\u0631",
+ "common": "\u0645\u0634\u0631\u0642\u06cc \u062a\u06cc\u0645\u0648\u0631"
+ },
+ "zho": {
+ "official": "\u4e1c\u5e1d\u6c76\u6c11\u4e3b\u5171\u548c\u56fd",
+ "common": "\u4e1c\u5e1d\u6c76"
+ }
+ },
+ "latlng": [
+ -8.83333333,
+ 125.91666666
+ ],
+ "landlocked": false,
+ "borders": [
+ "IDN"
+ ],
+ "area": 14874,
+ "flag": "\ud83c\uddf9\ud83c\uddf1",
+ "demonyms": {
+ "eng": {
+ "f": "East Timorese",
+ "m": "East Timorese"
+ },
+ "fra": {
+ "f": "Est-timoraise",
+ "m": "Est-timorais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Tonga",
+ "official": "Kingdom of Tonga",
+ "native": {
+ "eng": {
+ "official": "Kingdom of Tonga",
+ "common": "Tonga"
+ },
+ "ton": {
+ "official": "Kingdom of Tonga",
+ "common": "Tonga"
+ }
+ }
+ },
+ "tld": [
+ ".to"
+ ],
+ "cca2": "TO",
+ "ccn3": "776",
+ "cca3": "TON",
+ "cioc": "TGA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "TOP": {
+ "name": "Tongan pa\u02bbanga",
+ "symbol": "T$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "76"
+ ]
+ },
+ "capital": [
+ "Nuku'alofa"
+ ],
+ "altSpellings": [
+ "TO"
+ ],
+ "region": "Oceania",
+ "subregion": "Polynesia",
+ "languages": {
+ "eng": "English",
+ "ton": "Tongan"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0645\u0645\u0644\u0643\u0629 \u062a\u0648\u0646\u063a\u0627",
+ "common": "\u062a\u0648\u0646\u063a\u0627"
+ },
+ "bre": {
+ "official": "Rouantelezh Tonga",
+ "common": "Tonga"
+ },
+ "ces": {
+ "official": "Kr\u00e1lovstv\u00ed Tonga",
+ "common": "Tonga"
+ },
+ "deu": {
+ "official": "K\u00f6nigreich Tonga",
+ "common": "Tonga"
+ },
+ "est": {
+ "official": "Tonga Kuningriik",
+ "common": "Tonga"
+ },
+ "fin": {
+ "official": "Tongan kuningaskunta",
+ "common": "Tonga"
+ },
+ "fra": {
+ "official": "Royaume des Tonga",
+ "common": "Tonga"
+ },
+ "hrv": {
+ "official": "Kraljevina Tonga",
+ "common": "Tonga"
+ },
+ "hun": {
+ "official": "Tongai Kir\u00e1lys\u00e1g",
+ "common": "Tonga"
+ },
+ "ita": {
+ "official": "Regno di Tonga",
+ "common": "Tonga"
+ },
+ "jpn": {
+ "official": "\u30c8\u30f3\u30ac\u738b\u56fd",
+ "common": "\u30c8\u30f3\u30ac"
+ },
+ "kor": {
+ "official": "\ud1b5\uac00 \uc655\uad6d",
+ "common": "\ud1b5\uac00"
+ },
+ "nld": {
+ "official": "Koninkrijk Tonga",
+ "common": "Tonga"
+ },
+ "per": {
+ "official": "\u067e\u0627\u062f\u0634\u0627\u0647\u06cc \u062a\u0648\u0646\u06af\u0627",
+ "common": "\u062a\u0648\u0646\u06af\u0627"
+ },
+ "pol": {
+ "official": "Kr\u00f3lestwo Tonga",
+ "common": "Tonga"
+ },
+ "por": {
+ "official": "Reino de Tonga",
+ "common": "Tonga"
+ },
+ "rus": {
+ "official": "\u041a\u043e\u0440\u043e\u043b\u0435\u0432\u0441\u0442\u0432\u043e \u0422\u043e\u043d\u0433\u0430",
+ "common": "\u0422\u043e\u043d\u0433\u0430"
+ },
+ "slk": {
+ "official": "Tongsk\u00e9 kr\u00e1\u013eovstvo",
+ "common": "Tonga"
+ },
+ "spa": {
+ "official": "Reino de Tonga",
+ "common": "Tonga"
+ },
+ "srp": {
+ "official": "Kraljevina Tonga",
+ "common": "Tonga"
+ },
+ "swe": {
+ "official": "Konungariket Tonga",
+ "common": "Tonga"
+ },
+ "tur": {
+ "official": "Tonga Krall\u0131\u011f\u0131",
+ "common": "Tonga"
+ },
+ "urd": {
+ "official": "\u0645\u0645\u0644\u06a9\u062a\u0650 \u0679\u0648\u0646\u06af\u0627",
+ "common": "\u0679\u0648\u0646\u06af\u0627"
+ },
+ "zho": {
+ "official": "\u6c64\u52a0\u738b\u56fd",
+ "common": "\u6c64\u52a0"
+ }
+ },
+ "latlng": [
+ -20,
+ -175
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 747,
+ "flag": "\ud83c\uddf9\ud83c\uddf4",
+ "demonyms": {
+ "eng": {
+ "f": "Tongan",
+ "m": "Tongan"
+ },
+ "fra": {
+ "f": "Tonguienne",
+ "m": "Tonguien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Trinidad and Tobago",
+ "official": "Republic of Trinidad and Tobago",
+ "native": {
+ "eng": {
+ "official": "Republic of Trinidad and Tobago",
+ "common": "Trinidad and Tobago"
+ }
+ }
+ },
+ "tld": [
+ ".tt"
+ ],
+ "cca2": "TT",
+ "ccn3": "780",
+ "cca3": "TTO",
+ "cioc": "TTO",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "TTD": {
+ "name": "Trinidad and Tobago dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "868"
+ ]
+ },
+ "capital": [
+ "Port of Spain"
+ ],
+ "altSpellings": [
+ "TT",
+ "Republic of Trinidad and Tobago"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u062a\u0631\u064a\u0646\u064a\u062f\u0627\u062f \u0648\u062a\u0648\u0628\u0627\u063a\u0648",
+ "common": "\u062a\u0631\u064a\u0646\u064a\u062f\u0627\u062f \u0648\u062a\u0648\u0628\u0627\u063a\u0648"
+ },
+ "bre": {
+ "official": "Republik Trinidad ha Tobago",
+ "common": "Trinidad ha Tobago"
+ },
+ "ces": {
+ "official": "Republika Trinidad a Tobago",
+ "common": "Trinidad a Tobago"
+ },
+ "deu": {
+ "official": "Republik Trinidad und Tobago",
+ "common": "Trinidad und Tobago"
+ },
+ "est": {
+ "official": "Trinidadi ja Tobago Vabariik",
+ "common": "Trinidad ja Tobago"
+ },
+ "fin": {
+ "official": "Trinidadin ja Tobagon tasavalta",
+ "common": "Trinidad ja Tobago"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Trinit\u00e9-et-Tobago",
+ "common": "Trinit\u00e9-et-Tobago"
+ },
+ "hrv": {
+ "official": "Republika Trinidad i Tobago",
+ "common": "Trinidad i Tobago"
+ },
+ "hun": {
+ "official": "Trinidad \u00e9s Tobago K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Trinidad \u00e9s Tobago"
+ },
+ "ita": {
+ "official": "Repubblica di Trinidad e Tobago",
+ "common": "Trinidad e Tobago"
+ },
+ "jpn": {
+ "official": "\u30c8\u30ea\u30cb\u30c0\u30fc\u30c9\u30fb\u30c8\u30d0\u30b4\u5171\u548c\u56fd",
+ "common": "\u30c8\u30ea\u30cb\u30c0\u30fc\u30c9\u30fb\u30c8\u30d0\u30b4"
+ },
+ "kor": {
+ "official": "\ud2b8\ub9ac\ub2c8\ub2e4\ub4dc \ud1a0\ubc14\uace0 \uacf5\ud654\uad6d",
+ "common": "\ud2b8\ub9ac\ub2c8\ub2e4\ub4dc \ud1a0\ubc14\uace0"
+ },
+ "nld": {
+ "official": "Republiek Trinidad en Tobago",
+ "common": "Trinidad en Tobago"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062a\u0631\u06cc\u0646\u06cc\u062f\u0627\u062f \u0648 \u062a\u0648\u0628\u0627\u06af\u0648",
+ "common": "\u062a\u0631\u06cc\u0646\u06cc\u062f\u0627\u062f \u0648 \u062a\u0648\u0628\u0627\u06af\u0648"
+ },
+ "pol": {
+ "official": "Trynidad i Tobago",
+ "common": "Trynidad i Tobago"
+ },
+ "por": {
+ "official": "Rep\u00fablica de Trinidad e Tobago",
+ "common": "Trinidade e Tobago"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0422\u0440\u0438\u043d\u0438\u0434\u0430\u0434 \u0438 \u0422\u043e\u0431\u0430\u0433\u043e",
+ "common": "\u0422\u0440\u0438\u043d\u0438\u0434\u0430\u0434 \u0438 \u0422\u043e\u0431\u0430\u0433\u043e"
+ },
+ "slk": {
+ "official": "Republika Trinidad a Tobaga",
+ "common": "Trinidad a Tobago"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Trinidad y Tobago",
+ "common": "Trinidad y Tobago"
+ },
+ "srp": {
+ "official": "Republika Trinidad i Tobago",
+ "common": "Trinidad i Tobago"
+ },
+ "swe": {
+ "official": "Republiken Trinidad och Tobago",
+ "common": "Trinidad och Tobago"
+ },
+ "tur": {
+ "official": "Trinidad ve Tobago Cumhuriyeti",
+ "common": "Trinidad ve Tobago"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0679\u0631\u06cc\u0646\u06cc\u0688\u0627\u0688 \u0648 \u0679\u0648\u0628\u0627\u06af\u0648",
+ "common": "\u0679\u0631\u06cc\u0646\u06cc\u0688\u0627\u0688 \u0648 \u0679\u0648\u0628\u0627\u06af\u0648"
+ },
+ "zho": {
+ "official": "\u7279\u7acb\u5c3c\u8fbe\u548c\u591a\u5df4\u54e5\u5171\u548c\u56fd",
+ "common": "\u7279\u7acb\u5c3c\u8fbe\u548c\u591a\u5df4\u54e5"
+ }
+ },
+ "latlng": [
+ 11,
+ -61
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 5130,
+ "flag": "\ud83c\uddf9\ud83c\uddf9",
+ "demonyms": {
+ "eng": {
+ "f": "Trinidadian",
+ "m": "Trinidadian"
+ },
+ "fra": {
+ "f": "Trinidadienne",
+ "m": "Trinidadien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Tunisia",
+ "official": "Tunisian Republic",
+ "native": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u062a\u0648\u0646\u0633\u064a\u0629",
+ "common": "\u062a\u0648\u0646\u0633"
+ }
+ }
+ },
+ "tld": [
+ ".tn"
+ ],
+ "cca2": "TN",
+ "ccn3": "788",
+ "cca3": "TUN",
+ "cioc": "TUN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "TND": {
+ "name": "Tunisian dinar",
+ "symbol": "\u062f.\u062a"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "16"
+ ]
+ },
+ "capital": [
+ "Tunis"
+ ],
+ "altSpellings": [
+ "TN",
+ "Republic of Tunisia",
+ "al-Jumh\u016briyyah at-T\u016bnisiyyah"
+ ],
+ "region": "Africa",
+ "subregion": "Northern Africa",
+ "languages": {
+ "ara": "Arabic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u062a\u0648\u0646\u0633\u064a\u0629",
+ "common": "\u062a\u0648\u0646\u0633"
+ },
+ "bre": {
+ "official": "Republik Tunizian",
+ "common": "Tunizia"
+ },
+ "ces": {
+ "official": "Tunisk\u00e1 republika",
+ "common": "Tunisko"
+ },
+ "deu": {
+ "official": "Tunesische Republik",
+ "common": "Tunesien"
+ },
+ "est": {
+ "official": "Tuneesia Vabariik",
+ "common": "Tuneesia"
+ },
+ "fin": {
+ "official": "Tunisian tasavalta",
+ "common": "Tunisia"
+ },
+ "fra": {
+ "official": "R\u00e9publique tunisienne",
+ "common": "Tunisie"
+ },
+ "hrv": {
+ "official": "Tuniski Republika",
+ "common": "Tunis"
+ },
+ "hun": {
+ "official": "Tun\u00e9ziai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Tun\u00e9zia"
+ },
+ "ita": {
+ "official": "Repubblica tunisina",
+ "common": "Tunisia"
+ },
+ "jpn": {
+ "official": "\u30c1\u30e5\u30cb\u30b8\u30a2\u5171\u548c\u56fd",
+ "common": "\u30c1\u30e5\u30cb\u30b8\u30a2"
+ },
+ "kor": {
+ "official": "\ud280\ub2c8\uc9c0 \uacf5\ud654\uad6d",
+ "common": "\ud280\ub2c8\uc9c0"
+ },
+ "nld": {
+ "official": "Republiek Tunesi\u00eb",
+ "common": "Tunesi\u00eb"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062a\u0648\u0646\u0633",
+ "common": "\u062a\u0648\u0646\u0633"
+ },
+ "pol": {
+ "official": "Republika Tunezyjska",
+ "common": "Tunezja"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Tun\u00edsia",
+ "common": "Tun\u00edsia"
+ },
+ "rus": {
+ "official": "\u0422\u0443\u043d\u0438\u0441\u0441\u043a\u043e\u0439 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0438",
+ "common": "\u0422\u0443\u043d\u0438\u0441"
+ },
+ "slk": {
+ "official": "Tunisk\u00e1 republika",
+ "common": "Tunisko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de T\u00fanez",
+ "common": "T\u00fanez"
+ },
+ "srp": {
+ "official": "Republika Tunis",
+ "common": "Tunis"
+ },
+ "swe": {
+ "official": "Republiken Tunisien",
+ "common": "Tunisien"
+ },
+ "tur": {
+ "official": "Tunus Cumhuriyeti",
+ "common": "Tunus"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u062a\u0648\u0646\u0633",
+ "common": "\u062a\u0648\u0646\u0633"
+ },
+ "zho": {
+ "official": "\u7a81\u5c3c\u65af\u5171\u548c\u56fd",
+ "common": "\u7a81\u5c3c\u65af"
+ }
+ },
+ "latlng": [
+ 34,
+ 9
+ ],
+ "landlocked": false,
+ "borders": [
+ "DZA",
+ "LBY"
+ ],
+ "area": 163610,
+ "flag": "\ud83c\uddf9\ud83c\uddf3",
+ "demonyms": {
+ "eng": {
+ "f": "Tunisian",
+ "m": "Tunisian"
+ },
+ "fra": {
+ "f": "Tunisienne",
+ "m": "Tunisien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "T\u00fcrkiye",
+ "official": "Republic of T\u00fcrkiye",
+ "native": {
+ "tur": {
+ "official": "T\u00fcrkiye Cumhuriyeti",
+ "common": "T\u00fcrkiye"
+ }
+ }
+ },
+ "tld": [
+ ".tr"
+ ],
+ "cca2": "TR",
+ "ccn3": "792",
+ "cca3": "TUR",
+ "cioc": "TUR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "TRY": {
+ "name": "Turkish lira",
+ "symbol": "\u20ba"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "0"
+ ]
+ },
+ "capital": [
+ "Ankara"
+ ],
+ "altSpellings": [
+ "TR",
+ "Turkiye",
+ "Republic of Turkey",
+ "T\u00fcrkiye Cumhuriyeti"
+ ],
+ "region": "Asia",
+ "subregion": "Western Asia",
+ "languages": {
+ "tur": "Turkish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u062a\u0631\u0643\u064a\u0629",
+ "common": "\u062a\u0631\u0643\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Turkia",
+ "common": "Turkia"
+ },
+ "ces": {
+ "official": "Tureck\u00e1 republika",
+ "common": "Turecko"
+ },
+ "deu": {
+ "official": "Republik T\u00fcrkei",
+ "common": "T\u00fcrkei"
+ },
+ "est": {
+ "official": "T\u00fcrgi Vabariik",
+ "common": "T\u00fcrgi"
+ },
+ "fin": {
+ "official": "Turkin tasavalta",
+ "common": "Turkki"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Turquie",
+ "common": "Turquie"
+ },
+ "hrv": {
+ "official": "Republika Turska",
+ "common": "Turska"
+ },
+ "hun": {
+ "official": "T\u00f6r\u00f6k K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "T\u00f6r\u00f6korsz\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica di Turchia",
+ "common": "Turchia"
+ },
+ "jpn": {
+ "official": "\u30c8\u30eb\u30b3\u5171\u548c\u56fd",
+ "common": "\u30c8\u30eb\u30b3"
+ },
+ "kor": {
+ "official": "\ud130\ud0a4 \uacf5\ud654\uad6d",
+ "common": "\ud130\ud0a4"
+ },
+ "nld": {
+ "official": "Republiek Turkije",
+ "common": "Turkije"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u062a\u0631\u06a9\u06cc\u0647",
+ "common": "\u062a\u0631\u06a9\u06cc\u0647"
+ },
+ "pol": {
+ "official": "Republika Turcji",
+ "common": "Turcja"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Turquia",
+ "common": "Turquia"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0422\u0443\u0440\u0446\u0438\u0438",
+ "common": "\u0422\u0443\u0440\u0446\u0438\u044f"
+ },
+ "slk": {
+ "official": "Tureck\u00e1 republika",
+ "common": "Turecko"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Turqu\u00eda",
+ "common": "Turqu\u00eda"
+ },
+ "srp": {
+ "official": "Republika Turska",
+ "common": "Turska"
+ },
+ "swe": {
+ "official": "Republiken Turkiet",
+ "common": "Turkiet"
+ },
+ "tur": {
+ "official": "T\u00fcrkiye Cumhuriyeti",
+ "common": "T\u00fcrkiye"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u062a\u0631\u06a9\u06cc",
+ "common": "\u062a\u0631\u06a9\u06cc"
+ },
+ "zho": {
+ "official": "\u571f\u8033\u5176\u5171\u548c\u56fd",
+ "common": "\u571f\u8033\u5176"
+ }
+ },
+ "latlng": [
+ 39,
+ 35
+ ],
+ "landlocked": false,
+ "borders": [
+ "ARM",
+ "AZE",
+ "BGR",
+ "GEO",
+ "GRC",
+ "IRN",
+ "IRQ",
+ "SYR"
+ ],
+ "area": 783562,
+ "flag": "\ud83c\uddf9\ud83c\uddf7",
+ "demonyms": {
+ "eng": {
+ "f": "Turkish",
+ "m": "Turkish"
+ },
+ "fra": {
+ "f": "Turque",
+ "m": "Turc"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Tuvalu",
+ "official": "Tuvalu",
+ "native": {
+ "eng": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "tvl": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ }
+ }
+ },
+ "tld": [
+ ".tv"
+ ],
+ "cca2": "TV",
+ "ccn3": "798",
+ "cca3": "TUV",
+ "cioc": "TUV",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "AUD": {
+ "name": "Australian dollar",
+ "symbol": "$"
+ },
+ "TVD": {
+ "name": "Tuvaluan dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "88"
+ ]
+ },
+ "capital": [
+ "Funafuti"
+ ],
+ "altSpellings": [
+ "TV"
+ ],
+ "region": "Oceania",
+ "subregion": "Polynesia",
+ "languages": {
+ "eng": "English",
+ "tvl": "Tuvaluan"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062a\u0648\u0641\u0627\u0644\u0648",
+ "common": "\u062a\u0648\u0641\u0627\u0644\u0648"
+ },
+ "bre": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "ces": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "deu": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "est": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "fin": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "fra": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "hrv": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "hun": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "ita": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "jpn": {
+ "official": "\u30c4\u30d0\u30eb",
+ "common": "\u30c4\u30d0\u30eb"
+ },
+ "kor": {
+ "official": "\ud22c\ubc1c\ub8e8",
+ "common": "\ud22c\ubc1c\ub8e8"
+ },
+ "nld": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "per": {
+ "official": "\u062a\u0648\u0648\u0627\u0644\u0648",
+ "common": "\u062a\u0648\u0648\u0627\u0644\u0648"
+ },
+ "pol": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "por": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "rus": {
+ "official": "\u0422\u0443\u0432\u0430\u043b\u0443",
+ "common": "\u0422\u0443\u0432\u0430\u043b\u0443"
+ },
+ "slk": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "spa": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "srp": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "swe": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "tur": {
+ "official": "Tuvalu",
+ "common": "Tuvalu"
+ },
+ "urd": {
+ "official": "\u062a\u0648\u0648\u0627\u0644\u0648",
+ "common": "\u062a\u0648\u0648\u0627\u0644\u0648"
+ },
+ "zho": {
+ "official": "\u56fe\u74e6\u5362",
+ "common": "\u56fe\u74e6\u5362"
+ }
+ },
+ "latlng": [
+ -8,
+ 178
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 26,
+ "flag": "\ud83c\uddf9\ud83c\uddfb",
+ "demonyms": {
+ "eng": {
+ "f": "Tuvaluan",
+ "m": "Tuvaluan"
+ },
+ "fra": {
+ "f": "Tuvaluane",
+ "m": "Tuvaluan"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Taiwan",
+ "official": "Republic of China (Taiwan)",
+ "native": {
+ "zho": {
+ "official": "\u4e2d\u83ef\u6c11\u570b",
+ "common": "\u53f0\u7063"
+ }
+ }
+ },
+ "tld": [
+ ".tw",
+ ".\u53f0\u7063",
+ ".\u53f0\u6e7e"
+ ],
+ "cca2": "TW",
+ "ccn3": "158",
+ "cca3": "TWN",
+ "cioc": "TPE",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "TWD": {
+ "name": "New Taiwan dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+8",
+ "suffixes": [
+ "86"
+ ]
+ },
+ "capital": [
+ "Taipei"
+ ],
+ "altSpellings": [
+ "TW",
+ "T\u00e1iw\u0101n",
+ "Republic of China",
+ "\u4e2d\u83ef\u6c11\u570b",
+ "Zh\u014dnghu\u00e1 M\u00edngu\u00f3",
+ "Chinese Taipei"
+ ],
+ "region": "Asia",
+ "subregion": "Eastern Asia",
+ "languages": {
+ "zho": "Chinese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0635\u064a\u0646 (\u062a\u0627\u064a\u0648\u0627\u0646)",
+ "common": "\u062a\u0627\u064a\u0648\u0627\u0646"
+ },
+ "bre": {
+ "official": "Republik Sina (Taiwan)",
+ "common": "Taiwan"
+ },
+ "ces": {
+ "official": "\u010c\u00ednsk\u00e1 republika",
+ "common": "Tchaj-wan"
+ },
+ "deu": {
+ "official": "Republik China (Taiwan)",
+ "common": "Taiwan"
+ },
+ "est": {
+ "official": "Taiwani",
+ "common": "Taiwan"
+ },
+ "fin": {
+ "official": "Kiinan tasavalta",
+ "common": "Taiwan"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Chine (Ta\u00efwan)",
+ "common": "Ta\u00efwan"
+ },
+ "hrv": {
+ "official": "Republika Kina",
+ "common": "Tajvan"
+ },
+ "hun": {
+ "official": "K\u00ednai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Tajvan"
+ },
+ "ita": {
+ "official": "Repubblica cinese (Taiwan)",
+ "common": "Taiwan"
+ },
+ "jpn": {
+ "official": "\u53f0\u6e7e",
+ "common": "\u4e2d\u83ef\u6c11\u56fd"
+ },
+ "kor": {
+ "official": "\uc911\ud654\ubbfc\uad6d",
+ "common": "\ub300\ub9cc"
+ },
+ "nld": {
+ "official": "Republiek China (Taiwan)",
+ "common": "Taiwan"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0686\u06cc\u0646",
+ "common": "\u062a\u0627\u06cc\u0648\u0627\u0646"
+ },
+ "pol": {
+ "official": "Republika Chi\u0144ska (Tajwan)",
+ "common": "Tajwan"
+ },
+ "por": {
+ "official": "Rep\u00fablica da China",
+ "common": "Ilha Formosa"
+ },
+ "rus": {
+ "official": "\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0422\u0430\u0439\u0432\u0430\u043d\u044c"
+ },
+ "slk": {
+ "official": "\u010c\u00ednska republika",
+ "common": "Taiwan"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de China en Taiw\u00e1n",
+ "common": "Taiw\u00e1n"
+ },
+ "srp": {
+ "official": "Republika Kina (Tajvan)",
+ "common": "Tajvan"
+ },
+ "swe": {
+ "official": "Republiken Kina",
+ "common": "Taiwan"
+ },
+ "tur": {
+ "official": "\u00e7in Cumhuriyeti (Tayvan)",
+ "common": "Tayvan"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0686\u06cc\u0646 (\u062a\u0627\u0626\u06cc\u0648\u0627\u0646)",
+ "common": "\u062a\u0627\u0626\u06cc\u0648\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u4e2d\u83ef\u6c11\u570b",
+ "common": "\u53f0\u7063"
+ }
+ },
+ "latlng": [
+ 23.5,
+ 121
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 36193,
+ "flag": "\ud83c\uddf9\ud83c\uddfc",
+ "demonyms": {
+ "eng": {
+ "f": "Taiwanese",
+ "m": "Taiwanese"
+ },
+ "fra": {
+ "f": "Ta\u00efwanaise",
+ "m": "Ta\u00efwanais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Tanzania",
+ "official": "United Republic of Tanzania",
+ "native": {
+ "eng": {
+ "official": "United Republic of Tanzania",
+ "common": "Tanzania"
+ },
+ "swa": {
+ "official": "Jamhuri ya Muungano wa Tanzania",
+ "common": "Tanzania"
+ }
+ }
+ },
+ "tld": [
+ ".tz"
+ ],
+ "cca2": "TZ",
+ "ccn3": "834",
+ "cca3": "TZA",
+ "cioc": "TAN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "TZS": {
+ "name": "Tanzanian shilling",
+ "symbol": "Sh"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "55"
+ ]
+ },
+ "capital": [
+ "Dodoma"
+ ],
+ "altSpellings": [
+ "TZ",
+ "Tanzania, United Republic of",
+ "United Republic of Tanzania",
+ "Jamhuri ya Muungano wa Tanzania"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "eng": "English",
+ "swa": "Swahili"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u062a\u0646\u0632\u0627\u0646\u064a\u0627 \u0627\u0644\u0627\u062a\u062d\u0627\u062f\u064a\u0629",
+ "common": "\u062a\u0646\u0632\u0627\u0646\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Unanet Tanzania",
+ "common": "Tanzania"
+ },
+ "ces": {
+ "official": "Sjednocen\u00e1 tanzansk\u00e1 republika",
+ "common": "Tanzanie"
+ },
+ "deu": {
+ "official": "Vereinigte Republik Tansania",
+ "common": "Tansania"
+ },
+ "est": {
+ "official": "Tansaania \u00dchendvabariik",
+ "common": "Tansaania"
+ },
+ "fin": {
+ "official": "Tansanian yhdistynyt tasavalta",
+ "common": "Tansania"
+ },
+ "fra": {
+ "official": "R\u00e9publique -Unie de Tanzanie",
+ "common": "Tanzanie"
+ },
+ "hrv": {
+ "official": "Ujedinjena Republika Tanzanija",
+ "common": "Tanzanija"
+ },
+ "hun": {
+ "official": "T\u00e1dzsik K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "T\u00e1dzsikiszt\u00e1n"
+ },
+ "ita": {
+ "official": "Repubblica Unita di Tanzania",
+ "common": "Tanzania"
+ },
+ "jpn": {
+ "official": "\u30bf\u30f3\u30b6\u30cb\u30a2\u9023\u5408\u5171\u548c\u56fd",
+ "common": "\u30bf\u30f3\u30b6\u30cb\u30a2"
+ },
+ "kor": {
+ "official": "\ud0c4\uc790\ub2c8\uc544 \uc5f0\ud569 \uacf5\ud654\uad6d",
+ "common": "\ud0c4\uc790\ub2c8\uc544"
+ },
+ "nld": {
+ "official": "Verenigde Republiek Tanzania",
+ "common": "Tanzania"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0645\u062a\u062d\u062f \u062a\u0627\u0646\u0632\u0627\u0646\u06cc\u0627",
+ "common": "\u062a\u0627\u0646\u0632\u0627\u0646\u06cc\u0627"
+ },
+ "pol": {
+ "official": "Zjednoczona Republika Tanzanii",
+ "common": "Tanzania"
+ },
+ "por": {
+ "official": "Rep\u00fablica Unida da Tanz\u00e2nia",
+ "common": "Tanz\u00e2nia"
+ },
+ "rus": {
+ "official": "\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u0435\u043d\u043d\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0422\u0430\u043d\u0437\u0430\u043d\u0438\u044f",
+ "common": "\u0422\u0430\u043d\u0437\u0430\u043d\u0438\u044f"
+ },
+ "slk": {
+ "official": "Tanz\u00e1nijsk\u00e1 zjednoten\u00e1 republika",
+ "common": "Tanz\u00e1nia"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Unida de Tanzania",
+ "common": "Tanzania"
+ },
+ "srp": {
+ "official": "Ujedinjena Republika Tanzanija",
+ "common": "Tanzanija"
+ },
+ "swe": {
+ "official": "F\u00f6renade republiken Tanzania",
+ "common": "Tanzania"
+ },
+ "tur": {
+ "official": "Tanzanya Birle\u015fik Cumhuriyeti",
+ "common": "Tanzanya"
+ },
+ "urd": {
+ "official": "\u0645\u062a\u062d\u062f\u06c1 \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u062a\u0646\u0632\u0627\u0646\u06cc\u06c1",
+ "common": "\u062a\u0646\u0632\u0627\u0646\u06cc\u06c1"
+ },
+ "zho": {
+ "official": "\u5766\u6851\u5c3c\u4e9a\u8054\u5408\u5171\u548c\u56fd",
+ "common": "\u5766\u6851\u5c3c\u4e9a"
+ }
+ },
+ "latlng": [
+ -6,
+ 35
+ ],
+ "landlocked": false,
+ "borders": [
+ "BDI",
+ "COD",
+ "KEN",
+ "MWI",
+ "MOZ",
+ "RWA",
+ "UGA",
+ "ZMB"
+ ],
+ "area": 945087,
+ "flag": "\ud83c\uddf9\ud83c\uddff",
+ "demonyms": {
+ "eng": {
+ "f": "Tanzanian",
+ "m": "Tanzanian"
+ },
+ "fra": {
+ "f": "Tanzanienne",
+ "m": "Tanzanien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Uganda",
+ "official": "Republic of Uganda",
+ "native": {
+ "eng": {
+ "official": "Republic of Uganda",
+ "common": "Uganda"
+ },
+ "swa": {
+ "official": "Republic of Uganda",
+ "common": "Uganda"
+ }
+ }
+ },
+ "tld": [
+ ".ug"
+ ],
+ "cca2": "UG",
+ "ccn3": "800",
+ "cca3": "UGA",
+ "cioc": "UGA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "UGX": {
+ "name": "Ugandan shilling",
+ "symbol": "Sh"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "56"
+ ]
+ },
+ "capital": [
+ "Kampala"
+ ],
+ "altSpellings": [
+ "UG",
+ "Republic of Uganda",
+ "Jamhuri ya Uganda"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "eng": "English",
+ "swa": "Swahili"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0623\u0648\u063a\u0646\u062f\u0627",
+ "common": "\u0623\u0648\u063a\u0646\u062f\u0627"
+ },
+ "bre": {
+ "official": "Republik Ouganda",
+ "common": "Ouganda"
+ },
+ "ces": {
+ "official": "Ugandsk\u00e1 republika",
+ "common": "Uganda"
+ },
+ "deu": {
+ "official": "Republik Uganda",
+ "common": "Uganda"
+ },
+ "est": {
+ "official": "Uganda Vabariik",
+ "common": "Uganda"
+ },
+ "fin": {
+ "official": "Ugandan tasavalta",
+ "common": "Uganda"
+ },
+ "fra": {
+ "official": "R\u00e9publique de l'Ouganda",
+ "common": "Ouganda"
+ },
+ "hrv": {
+ "official": "Republika Uganda",
+ "common": "Uganda"
+ },
+ "hun": {
+ "official": "Ugandai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Uganda"
+ },
+ "ita": {
+ "official": "Repubblica di Uganda",
+ "common": "Uganda"
+ },
+ "jpn": {
+ "official": "\u30a6\u30ac\u30f3\u30c0\u5171\u548c\u56fd",
+ "common": "\u30a6\u30ac\u30f3\u30c0"
+ },
+ "kor": {
+ "official": "\uc6b0\uac04\ub2e4 \uacf5\ud654\uad6d",
+ "common": "\uc6b0\uac04\ub2e4"
+ },
+ "nld": {
+ "official": "Republiek Uganda",
+ "common": "Oeganda"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0648\u06af\u0627\u0646\u062f\u0627",
+ "common": "\u0627\u0648\u06af\u0627\u0646\u062f\u0627"
+ },
+ "pol": {
+ "official": "Republika Ugandy",
+ "common": "Uganda"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Uganda",
+ "common": "Uganda"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0423\u0433\u0430\u043d\u0434\u0430",
+ "common": "\u0423\u0433\u0430\u043d\u0434\u0430"
+ },
+ "slk": {
+ "official": "Ugandsk\u00e1 republika",
+ "common": "Uganda"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Uganda",
+ "common": "Uganda"
+ },
+ "srp": {
+ "official": "Republika Uganda",
+ "common": "Uganda"
+ },
+ "swe": {
+ "official": "Republiken Uganda",
+ "common": "Uganda"
+ },
+ "tur": {
+ "official": "Uganda Cumhuriyeti",
+ "common": "Uganda"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06cc\u0648\u06af\u0646\u0688\u0627",
+ "common": "\u06cc\u0648\u06af\u0646\u0688\u0627"
+ },
+ "zho": {
+ "official": "\u4e4c\u5e72\u8fbe\u5171\u548c\u56fd",
+ "common": "\u4e4c\u5e72\u8fbe"
+ }
+ },
+ "latlng": [
+ 1,
+ 32
+ ],
+ "landlocked": true,
+ "borders": [
+ "COD",
+ "KEN",
+ "RWA",
+ "SSD",
+ "TZA"
+ ],
+ "area": 241550,
+ "flag": "\ud83c\uddfa\ud83c\uddec",
+ "demonyms": {
+ "eng": {
+ "f": "Ugandan",
+ "m": "Ugandan"
+ },
+ "fra": {
+ "f": "Ougandaise",
+ "m": "Ougandais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Ukraine",
+ "official": "Ukraine",
+ "native": {
+ "ukr": {
+ "official": "\u0423\u043a\u0440\u0430\u0457\u043d\u0430",
+ "common": "\u0423\u043a\u0440\u0430\u0457\u043d\u0430"
+ }
+ }
+ },
+ "tld": [
+ ".ua",
+ ".\u0443\u043a\u0440"
+ ],
+ "cca2": "UA",
+ "ccn3": "804",
+ "cca3": "UKR",
+ "cioc": "UKR",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Eastern European Group",
+ "currencies": {
+ "UAH": {
+ "name": "Ukrainian hryvnia",
+ "symbol": "\u20b4"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "80"
+ ]
+ },
+ "capital": [
+ "Kyiv"
+ ],
+ "altSpellings": [
+ "UA",
+ "Ukrayina"
+ ],
+ "region": "Europe",
+ "subregion": "Eastern Europe",
+ "languages": {
+ "ukr": "Ukrainian"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0623\u0648\u0643\u0631\u0627\u0646\u064a\u0627",
+ "common": "\u0623\u0648\u0643\u0631\u0627\u0646\u064a\u0627"
+ },
+ "bre": {
+ "official": "Ukraina",
+ "common": "Ukraina"
+ },
+ "ces": {
+ "official": "Ukrajina",
+ "common": "Ukrajina"
+ },
+ "deu": {
+ "official": "Ukraine",
+ "common": "Ukraine"
+ },
+ "est": {
+ "official": "Ukraina",
+ "common": "Ukraina"
+ },
+ "fin": {
+ "official": "Ukraina",
+ "common": "Ukraina"
+ },
+ "fra": {
+ "official": "Ukraine",
+ "common": "Ukraine"
+ },
+ "hrv": {
+ "official": "Ukrajina",
+ "common": "Ukrajina"
+ },
+ "hun": {
+ "official": "Ukrajna",
+ "common": "Ukrajna"
+ },
+ "ita": {
+ "official": "Ucraina",
+ "common": "Ucraina"
+ },
+ "jpn": {
+ "official": "\u30a6\u30af\u30e9\u30a4\u30ca",
+ "common": "\u30a6\u30af\u30e9\u30a4\u30ca"
+ },
+ "kor": {
+ "official": "\uc6b0\ud06c\ub77c\uc774\ub098",
+ "common": "\uc6b0\ud06c\ub77c\uc774\ub098"
+ },
+ "nld": {
+ "official": "Oekra\u00efne",
+ "common": "Oekra\u00efne"
+ },
+ "per": {
+ "official": "\u0627\u0648\u06a9\u0631\u0627\u06cc\u0646",
+ "common": "\u0627\u0648\u06a9\u0631\u0627\u06cc\u0646"
+ },
+ "pol": {
+ "official": "Ukraina",
+ "common": "Ukraina"
+ },
+ "por": {
+ "official": "Ucr\u00e2nia",
+ "common": "Ucr\u00e2nia"
+ },
+ "rus": {
+ "official": "\u0423\u043a\u0440\u0430\u0438\u043d\u0430",
+ "common": "\u0423\u043a\u0440\u0430\u0438\u043d\u0430"
+ },
+ "slk": {
+ "official": "Ukrajina",
+ "common": "Ukrajina"
+ },
+ "spa": {
+ "official": "Ucrania",
+ "common": "Ucrania"
+ },
+ "srp": {
+ "official": "Ukrajina",
+ "common": "Ukrajina"
+ },
+ "swe": {
+ "official": "Ukraina",
+ "common": "Ukraina"
+ },
+ "tur": {
+ "official": "Ukrayna",
+ "common": "Ukrayna"
+ },
+ "urd": {
+ "official": "\u06cc\u0648\u06a9\u0631\u06cc\u0646",
+ "common": "\u06cc\u0648\u06a9\u0631\u06cc\u0646"
+ },
+ "zho": {
+ "official": "\u4e4c\u514b\u5170",
+ "common": "\u4e4c\u514b\u5170"
+ }
+ },
+ "latlng": [
+ 49,
+ 32
+ ],
+ "landlocked": false,
+ "borders": [
+ "BLR",
+ "HUN",
+ "MDA",
+ "POL",
+ "ROU",
+ "RUS",
+ "SVK"
+ ],
+ "area": 603500,
+ "flag": "\ud83c\uddfa\ud83c\udde6",
+ "demonyms": {
+ "eng": {
+ "f": "Ukrainian",
+ "m": "Ukrainian"
+ },
+ "fra": {
+ "f": "Ukrainienne",
+ "m": "Ukrainien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "United States Minor Outlying Islands",
+ "official": "United States Minor Outlying Islands",
+ "native": {
+ "eng": {
+ "official": "United States Minor Outlying Islands",
+ "common": "United States Minor Outlying Islands"
+ }
+ }
+ },
+ "tld": [
+ ".us"
+ ],
+ "cca2": "UM",
+ "ccn3": "581",
+ "cca3": "UMI",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "68"
+ ]
+ },
+ "capital": [],
+ "altSpellings": [
+ "UM"
+ ],
+ "region": "Americas",
+ "subregion": "North America",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0632\u0631 \u0627\u0644\u0648\u0644\u0627\u064a\u0627\u062a \u0627\u0644\u0645\u062a\u062d\u062f\u0629 \u0627\u0644\u0635\u063a\u064a\u0631\u0629 \u0627\u0644\u0646\u0627\u0626\u064a\u0629",
+ "common": "\u062c\u0632\u0631 \u0627\u0644\u0648\u0644\u0627\u064a\u0627\u062a \u0627\u0644\u0645\u062a\u062d\u062f\u0629 \u0627\u0644\u0635\u063a\u064a\u0631\u0629 \u0627\u0644\u0646\u0627\u0626\u064a\u0629"
+ },
+ "bre": {
+ "official": "Inizi Minor A-bell Stado\u00f9-Unanet",
+ "common": "Inizi Minor A-bell Stado\u00f9-Unanet"
+ },
+ "ces": {
+ "official": "Men\u0161\u00ed odlehl\u00e9 ostrovy Spojen\u00fdch st\u00e1t\u016f americk\u00fdch",
+ "common": "Men\u0161\u00ed odlehl\u00e9 ostrovy USA"
+ },
+ "deu": {
+ "official": "USA, kleinere ausgelagerte Inseln",
+ "common": "Kleinere Inselbesitzungen der Vereinigten Staaten"
+ },
+ "est": {
+ "official": "\u00dchendriikide v\u00e4ikesed hajasaared",
+ "common": "\u00dchendriikide hajasaared"
+ },
+ "fin": {
+ "official": "Yhdysvaltain asumattomat saaret",
+ "common": "Yhdysvaltain asumattomat saaret"
+ },
+ "fra": {
+ "official": "\u00celes mineures \u00e9loign\u00e9es des \u00c9tats-Unis",
+ "common": "\u00celes mineures \u00e9loign\u00e9es des \u00c9tats-Unis"
+ },
+ "hrv": {
+ "official": "Mali udaljeni otoci SAD-a",
+ "common": "Mali udaljeni otoci SAD-a"
+ },
+ "hun": {
+ "official": "Az Amerikai Egyes\u00fclt \u00c1llamok lakatlan k\u00fclbirtokai",
+ "common": "Az Amerikai Egyes\u00fclt \u00c1llamok lakatlan k\u00fclbirtokai"
+ },
+ "ita": {
+ "official": "Stati Uniti Isole Minori",
+ "common": "Isole minori esterne degli Stati Uniti d'America"
+ },
+ "jpn": {
+ "official": "\u7c73\u9818\u5c0f\u96e2\u5cf6",
+ "common": "\u5408\u8846\u56fd\u9818\u6709\u5c0f\u96e2\u5cf6"
+ },
+ "kor": {
+ "official": "\ubbf8\uad6d\ub839 \uad70\uc18c \uc81c\ub3c4",
+ "common": "\ubbf8\uad6d\ub839 \uad70\uc18c \uc81c\ub3c4"
+ },
+ "nld": {
+ "official": "Kleine afgelegen eilanden van de Verenigde Staten",
+ "common": "Kleine afgelegen eilanden van de Verenigde Staten"
+ },
+ "per": {
+ "official": "\u062c\u0632\u0627\u06cc\u0631 \u06a9\u0648\u0686\u06a9 \u062d\u0627\u0634\u06cc\u0647\u200c\u0627\u06cc \u0627\u06cc\u0627\u0644\u0627\u062a \u0645\u062a\u062d\u062f\u0647 \u0622\u0645\u0631\u06cc\u06a9\u0627",
+ "common": "\u062c\u0632\u0627\u06cc\u0631 \u06a9\u0648\u0686\u06a9 \u062d\u0627\u0634\u06cc\u0647\u200c\u0627\u06cc \u0627\u06cc\u0627\u0644\u0627\u062a \u0645\u062a\u062d\u062f\u0647 \u0622\u0645\u0631\u06cc\u06a9\u0627"
+ },
+ "pol": {
+ "official": "Dalekie Wyspy Mniejsze Stan\u00f3w Zjednoczonych",
+ "common": "Dalekie Wyspy Mniejsze Stan\u00f3w Zjednoczonych"
+ },
+ "por": {
+ "official": "Estados Unidos Ilhas Menores Distantes",
+ "common": "Ilhas Menores Distantes dos Estados Unidos"
+ },
+ "rus": {
+ "official": "\u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u043c\u0430\u043b\u044b\u0435 \u043e\u0441\u0442\u0440\u043e\u0432\u0430 \u0421\u0428\u0410",
+ "common": "\u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u043c\u0430\u043b\u044b\u0435 \u043e\u0441\u0442\u0440\u043e\u0432\u0430 \u0421\u0428\u0410"
+ },
+ "slk": {
+ "official": "Men\u0161ie od\u013eahl\u00e9 ostrovy Spjoen\u00fdch \u0161t\u00e1tov",
+ "common": "Men\u0161ie od\u013eahl\u00e9 ostrovy USA"
+ },
+ "spa": {
+ "official": "Estados Unidos Islas menores alejadas de",
+ "common": "Islas Ultramarinas Menores de Estados Unidos"
+ },
+ "srp": {
+ "official": "Mala udaljena ostrva Sjedinjenih Ameri\u010dkih Dr\u017eava",
+ "common": "Mala udaljena ostrva SAD-a"
+ },
+ "swe": {
+ "official": "F\u00f6renta staternas mindre \u00f6ar i Oceanien och V\u00e4stindien",
+ "common": "F\u00f6renta staternas mindre \u00f6ar i Oceanien och V\u00e4stindien"
+ },
+ "tur": {
+ "official": "Amerika Birle\u015fik Devletleri K\u00fc\u00e7\u00fck D\u0131\u015f Adalar\u0131",
+ "common": "Amerika Birle\u015fik Devletleri K\u00fc\u00e7\u00fck D\u0131\u015f Adalar\u0131"
+ },
+ "urd": {
+ "official": "\u0627\u0645\u0631\u06cc\u06a9\u06cc \u0686\u06be\u0648\u0679\u06d2 \u0628\u06cc\u0631\u0648\u0646\u06cc \u062c\u0632\u0627\u0626\u0631",
+ "common": "\u0627\u0645\u0631\u06cc\u06a9\u06cc \u0686\u06be\u0648\u0679\u06d2 \u0628\u06cc\u0631\u0648\u0646\u06cc \u062c\u0632\u0627\u0626\u0631"
+ },
+ "zho": {
+ "official": "\u7f8e\u56fd\u672c\u571f\u5916\u5c0f\u5c9b\u5c7f",
+ "common": "\u7f8e\u56fd\u672c\u571f\u5916\u5c0f\u5c9b\u5c7f"
+ }
+ },
+ "latlng": [
+ 19.3,
+ 166.633333
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 34.2,
+ "flag": "\ud83c\uddfa\ud83c\uddf2",
+ "demonyms": {
+ "eng": {
+ "f": "American Islander",
+ "m": "American Islander"
+ },
+ "fra": {
+ "f": "",
+ "m": ""
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Uruguay",
+ "official": "Oriental Republic of Uruguay",
+ "native": {
+ "spa": {
+ "official": "Rep\u00fablica Oriental del Uruguay",
+ "common": "Uruguay"
+ }
+ }
+ },
+ "tld": [
+ ".uy"
+ ],
+ "cca2": "UY",
+ "ccn3": "858",
+ "cca3": "URY",
+ "cioc": "URU",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "UYU": {
+ "name": "Uruguayan peso",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "98"
+ ]
+ },
+ "capital": [
+ "Montevideo"
+ ],
+ "altSpellings": [
+ "UY",
+ "Oriental Republic of Uruguay",
+ "Rep\u00fablica Oriental del Uruguay"
+ ],
+ "region": "Americas",
+ "subregion": "South America",
+ "languages": {
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0623\u0648\u0631\u0648\u063a\u0648\u0627\u064a \u0627\u0644\u0634\u0631\u0642\u064a\u0629",
+ "common": "\u0627\u0644\u0623\u0648\u0631\u0648\u063a\u0648\u0627\u064a"
+ },
+ "bre": {
+ "official": "Republik Reter Uruguay",
+ "common": "Uruguay"
+ },
+ "ces": {
+ "official": "Uruguaysk\u00e1 v\u00fdchodn\u00ed republika",
+ "common": "Uruguay"
+ },
+ "deu": {
+ "official": "Republik \u00d6stlich des Uruguay",
+ "common": "Uruguay"
+ },
+ "est": {
+ "official": "Uruguay Idavabariik",
+ "common": "Uruguay"
+ },
+ "fin": {
+ "official": "Uruguayn it\u00e4inen tasavalta",
+ "common": "Uruguay"
+ },
+ "fra": {
+ "official": "R\u00e9publique orientale de l'Uruguay",
+ "common": "Uruguay"
+ },
+ "hrv": {
+ "official": "Orijentalna Republika Urugvaj",
+ "common": "Urugvaj"
+ },
+ "hun": {
+ "official": "Uruguayi Keleti K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Uruguay"
+ },
+ "ita": {
+ "official": "Repubblica Orientale dell'Uruguay",
+ "common": "Uruguay"
+ },
+ "jpn": {
+ "official": "\u30a6\u30eb\u30b0\u30a2\u30a4\u6771\u65b9\u5171\u548c\u56fd",
+ "common": "\u30a6\u30eb\u30b0\u30a2\u30a4"
+ },
+ "kor": {
+ "official": "\uc6b0\ub8e8\uacfc\uc774 \ub3d9\ubc29 \uacf5\ud654\uad6d",
+ "common": "\uc6b0\ub8e8\uacfc\uc774"
+ },
+ "nld": {
+ "official": "Oosterse Republiek Uruguay",
+ "common": "Uruguay"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0631\u0648\u06af\u0648\u0626\u0647",
+ "common": "\u0627\u0631\u0648\u06af\u0648\u0626\u0647"
+ },
+ "pol": {
+ "official": "Wschodnia Republika Urugwaju",
+ "common": "Urugwaj"
+ },
+ "por": {
+ "official": "Rep\u00fablica Oriental do Uruguai",
+ "common": "Uruguai"
+ },
+ "rus": {
+ "official": "\u0412\u043e\u0441\u0442\u043e\u0447\u043d\u043e\u0439 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0438 \u0423\u0440\u0443\u0433\u0432\u0430\u0439",
+ "common": "\u0423\u0440\u0443\u0433\u0432\u0430\u0439"
+ },
+ "slk": {
+ "official": "Uruguajsk\u00e1 v\u00fdchodn\u00e1 republika",
+ "common": "Uruguaj"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Oriental del Uruguay",
+ "common": "Uruguay"
+ },
+ "srp": {
+ "official": "Isto\u010dna Republika Urugvaj",
+ "common": "Urugvaj"
+ },
+ "swe": {
+ "official": "Republiken Uruguay",
+ "common": "Uruguay"
+ },
+ "tur": {
+ "official": "Uruguay Do\u011fu Cumhuriyeti",
+ "common": "Uruguay"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0634\u0631\u0642\u06cc\u06c1 \u06cc\u0648\u0631\u0627\u06af\u0648\u0626\u06d2",
+ "common": "\u06cc\u0648\u0631\u0627\u06af\u0648\u0626\u06d2"
+ },
+ "zho": {
+ "official": "\u4e4c\u62c9\u572d\u4e1c\u5cb8\u5171\u548c\u56fd",
+ "common": "\u4e4c\u62c9\u572d"
+ }
+ },
+ "latlng": [
+ -33,
+ -56
+ ],
+ "landlocked": false,
+ "borders": [
+ "ARG",
+ "BRA"
+ ],
+ "area": 181034,
+ "flag": "\ud83c\uddfa\ud83c\uddfe",
+ "demonyms": {
+ "eng": {
+ "f": "Uruguayan",
+ "m": "Uruguayan"
+ },
+ "fra": {
+ "f": "Uruguayenne",
+ "m": "Uruguayen"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "United States",
+ "official": "United States of America",
+ "native": {
+ "eng": {
+ "official": "United States of America",
+ "common": "United States"
+ }
+ }
+ },
+ "tld": [
+ ".us"
+ ],
+ "cca2": "US",
+ "ccn3": "840",
+ "cca3": "USA",
+ "cioc": "USA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Western European and Others Group",
+ "currencies": {
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "201",
+ "202",
+ "203",
+ "205",
+ "206",
+ "207",
+ "208",
+ "209",
+ "210",
+ "212",
+ "213",
+ "214",
+ "215",
+ "216",
+ "217",
+ "218",
+ "219",
+ "220",
+ "223",
+ "224",
+ "225",
+ "227",
+ "228",
+ "229",
+ "231",
+ "234",
+ "239",
+ "240",
+ "248",
+ "251",
+ "252",
+ "253",
+ "254",
+ "256",
+ "260",
+ "262",
+ "267",
+ "269",
+ "270",
+ "272",
+ "274",
+ "276",
+ "279",
+ "281",
+ "283",
+ "301",
+ "302",
+ "303",
+ "304",
+ "305",
+ "307",
+ "308",
+ "309",
+ "310",
+ "312",
+ "313",
+ "314",
+ "315",
+ "316",
+ "317",
+ "318",
+ "319",
+ "320",
+ "321",
+ "323",
+ "325",
+ "326",
+ "327",
+ "330",
+ "331",
+ "332",
+ "334",
+ "336",
+ "337",
+ "339",
+ "341",
+ "346",
+ "347",
+ "351",
+ "352",
+ "360",
+ "361",
+ "364",
+ "380",
+ "385",
+ "386",
+ "401",
+ "402",
+ "404",
+ "405",
+ "406",
+ "407",
+ "408",
+ "409",
+ "410",
+ "412",
+ "413",
+ "414",
+ "415",
+ "417",
+ "419",
+ "423",
+ "424",
+ "425",
+ "430",
+ "432",
+ "434",
+ "435",
+ "440",
+ "442",
+ "443",
+ "445",
+ "447",
+ "448",
+ "458",
+ "463",
+ "464",
+ "469",
+ "470",
+ "475",
+ "478",
+ "479",
+ "480",
+ "484",
+ "500",
+ "501",
+ "502",
+ "503",
+ "504",
+ "505",
+ "507",
+ "508",
+ "509",
+ "510",
+ "512",
+ "513",
+ "515",
+ "516",
+ "517",
+ "518",
+ "520",
+ "521",
+ "522",
+ "523",
+ "524",
+ "525",
+ "526",
+ "527",
+ "528",
+ "529",
+ "530",
+ "531",
+ "532",
+ "533",
+ "534",
+ "535",
+ "538",
+ "539",
+ "540",
+ "541",
+ "542",
+ "543",
+ "544",
+ "545",
+ "546",
+ "547",
+ "549",
+ "550",
+ "551",
+ "552",
+ "553",
+ "554",
+ "556",
+ "557",
+ "558",
+ "559",
+ "561",
+ "562",
+ "563",
+ "564",
+ "566",
+ "567",
+ "569",
+ "570",
+ "571",
+ "572",
+ "573",
+ "574",
+ "575",
+ "577",
+ "578",
+ "580",
+ "582",
+ "585",
+ "586",
+ "588",
+ "589",
+ "601",
+ "602",
+ "603",
+ "605",
+ "606",
+ "607",
+ "608",
+ "609",
+ "610",
+ "612",
+ "614",
+ "615",
+ "616",
+ "617",
+ "618",
+ "619",
+ "620",
+ "623",
+ "626",
+ "628",
+ "629",
+ "630",
+ "631",
+ "636",
+ "640",
+ "641",
+ "646",
+ "650",
+ "651",
+ "656",
+ "657",
+ "659",
+ "660",
+ "661",
+ "662",
+ "667",
+ "669",
+ "678",
+ "679",
+ "680",
+ "681",
+ "682",
+ "689",
+ "700",
+ "701",
+ "702",
+ "703",
+ "704",
+ "706",
+ "707",
+ "708",
+ "710",
+ "712",
+ "713",
+ "714",
+ "715",
+ "716",
+ "717",
+ "718",
+ "719",
+ "720",
+ "724",
+ "725",
+ "726",
+ "727",
+ "730",
+ "731",
+ "732",
+ "734",
+ "737",
+ "740",
+ "743",
+ "747",
+ "754",
+ "757",
+ "760",
+ "762",
+ "763",
+ "765",
+ "769",
+ "770",
+ "771",
+ "772",
+ "773",
+ "774",
+ "775",
+ "779",
+ "781",
+ "785",
+ "786",
+ "801",
+ "802",
+ "803",
+ "804",
+ "805",
+ "806",
+ "808",
+ "810",
+ "812",
+ "813",
+ "814",
+ "815",
+ "816",
+ "817",
+ "818",
+ "820",
+ "826",
+ "828",
+ "830",
+ "831",
+ "832",
+ "838",
+ "839",
+ "840",
+ "843",
+ "845",
+ "847",
+ "848",
+ "850",
+ "854",
+ "856",
+ "857",
+ "858",
+ "859",
+ "860",
+ "862",
+ "863",
+ "864",
+ "865",
+ "870",
+ "872",
+ "878",
+ "901",
+ "903",
+ "904",
+ "906",
+ "907",
+ "908",
+ "909",
+ "910",
+ "912",
+ "913",
+ "914",
+ "915",
+ "916",
+ "917",
+ "918",
+ "919",
+ "920",
+ "925",
+ "928",
+ "929",
+ "930",
+ "931",
+ "934",
+ "936",
+ "937",
+ "938",
+ "940",
+ "941",
+ "943",
+ "945",
+ "947",
+ "948",
+ "949",
+ "951",
+ "952",
+ "954",
+ "956",
+ "959",
+ "970",
+ "971",
+ "972",
+ "973",
+ "975",
+ "978",
+ "979",
+ "980",
+ "983",
+ "984",
+ "985",
+ "986",
+ "989"
+ ]
+ },
+ "capital": [
+ "Washington D.C."
+ ],
+ "altSpellings": [
+ "US",
+ "USA",
+ "United States of America"
+ ],
+ "region": "Americas",
+ "subregion": "North America",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u0648\u0644\u0627\u064a\u0627\u062a \u0627\u0644\u0645\u062a\u062d\u062f\u0629 \u0627\u0644\u0627\u0645\u0631\u064a\u0643\u064a\u0629",
+ "common": "\u0627\u0644\u0648\u0644\u0627\u064a\u0627\u062a \u0627\u0644\u0645\u062a\u062d\u062f\u0629"
+ },
+ "bre": {
+ "official": "Stado\u00f9-Unanet Amerika",
+ "common": "Stado\u00f9-Unanet"
+ },
+ "ces": {
+ "official": "Spojen\u00e9 st\u00e1ty americk\u00e9",
+ "common": "Spojen\u00e9 st\u00e1ty"
+ },
+ "deu": {
+ "official": "Vereinigte Staaten von Amerika",
+ "common": "Vereinigte Staaten"
+ },
+ "est": {
+ "official": "Ameerika \u00dchendriigid",
+ "common": "Ameerika \u00dchendriigid"
+ },
+ "fin": {
+ "official": "Amerikan yhdysvallat",
+ "common": "Yhdysvallat"
+ },
+ "fra": {
+ "official": "Les \u00e9tats-unis d'Am\u00e9rique",
+ "common": "\u00c9tats-Unis"
+ },
+ "hrv": {
+ "official": "Sjedinjene Dr\u017eave Amerike",
+ "common": "Sjedinjene Ameri\u010dke Dr\u017eave"
+ },
+ "hun": {
+ "official": "Amerikai Egyes\u00fclt \u00c1llamok",
+ "common": "Amerikai Egyes\u00fclt \u00c1llamok"
+ },
+ "ita": {
+ "official": "Stati Uniti d'America",
+ "common": "Stati Uniti d'America"
+ },
+ "jpn": {
+ "official": "\u30a2\u30e1\u30ea\u30ab\u5408\u8846\u56fd",
+ "common": "\u30a2\u30e1\u30ea\u30ab"
+ },
+ "kor": {
+ "official": "\uc544\uba54\ub9ac\uce74 \ud569\uc911\uad6d",
+ "common": "\ubbf8\uad6d"
+ },
+ "nld": {
+ "official": "Verenigde Staten van Amerika",
+ "common": "Verenigde Staten"
+ },
+ "per": {
+ "official": "\u0627\u06cc\u0627\u0644\u0627\u062a \u0645\u062a\u062d\u062f\u0647 \u0622\u0645\u0631\u06cc\u06a9\u0627",
+ "common": "\u0627\u06cc\u0627\u0644\u0627\u062a \u0645\u062a\u062d\u062f\u0647 \u0622\u0645\u0631\u06cc\u06a9\u0627"
+ },
+ "pol": {
+ "official": "Stany Zjednoczone Ameryki",
+ "common": "Stany Zjednoczone"
+ },
+ "por": {
+ "official": "Estados Unidos da Am\u00e9rica",
+ "common": "Estados Unidos"
+ },
+ "rus": {
+ "official": "\u0421\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u043d\u044b\u0435 \u0428\u0442\u0430\u0442\u044b \u0410\u043c\u0435\u0440\u0438\u043a\u0438",
+ "common": "\u0421\u043e\u0435\u0434\u0438\u043d\u0451\u043d\u043d\u044b\u0435 \u0428\u0442\u0430\u0442\u044b \u0410\u043c\u0435\u0440\u0438\u043a\u0438"
+ },
+ "slk": {
+ "official": "Spojen\u00e9 \u0161t\u00e1ty Americk\u00e9",
+ "common": "Spojen\u00e9 \u0161t\u00e1ty americk\u00e9"
+ },
+ "spa": {
+ "official": "Estados Unidos de Am\u00e9rica",
+ "common": "Estados Unidos"
+ },
+ "srp": {
+ "official": "Sjedinjene Ameri\u010dke Dr\u017eave",
+ "common": "SAD"
+ },
+ "swe": {
+ "official": "Amerikas f\u00f6renta stater",
+ "common": "USA"
+ },
+ "tur": {
+ "official": "Amerika Birle\u015fik Devletleri",
+ "common": "Amerika Birle\u015fik Devletleri"
+ },
+ "urd": {
+ "official": "\u0631\u06cc\u0627\u0633\u062a\u06c1\u0627\u0626\u06d2 \u0645\u062a\u062d\u062f\u06c1 \u0627\u0645\u0631\u06cc\u06a9\u0627",
+ "common": "\u0631\u06cc\u0627\u0633\u062a\u06c1\u0627\u0626\u06d2 \u0645\u062a\u062d\u062f\u06c1"
+ },
+ "zho": {
+ "official": "\u7f8e\u5229\u575a\u5408\u4f17\u56fd",
+ "common": "\u7f8e\u56fd"
+ }
+ },
+ "latlng": [
+ 38,
+ -97
+ ],
+ "landlocked": false,
+ "borders": [
+ "CAN",
+ "MEX"
+ ],
+ "area": 9372610,
+ "flag": "\ud83c\uddfa\ud83c\uddf8",
+ "demonyms": {
+ "eng": {
+ "f": "American",
+ "m": "American"
+ },
+ "fra": {
+ "f": "Am\u00e9ricaine",
+ "m": "Am\u00e9ricain"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Uzbekistan",
+ "official": "Republic of Uzbekistan",
+ "native": {
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0423\u0437\u0431\u0435\u043a\u0438\u0441\u0442\u0430\u043d",
+ "common": "\u0423\u0437\u0431\u0435\u043a\u0438\u0441\u0442\u0430\u043d"
+ },
+ "uzb": {
+ "official": "O'zbekiston Respublikasi",
+ "common": "O\u2018zbekiston"
+ }
+ }
+ },
+ "tld": [
+ ".uz"
+ ],
+ "cca2": "UZ",
+ "ccn3": "860",
+ "cca3": "UZB",
+ "cioc": "UZB",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "UZS": {
+ "name": "Uzbekistani so\u02bbm",
+ "symbol": "so'm"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "98"
+ ]
+ },
+ "capital": [
+ "Tashkent"
+ ],
+ "altSpellings": [
+ "UZ",
+ "Republic of Uzbekistan",
+ "O\u2018zbekiston Respublikasi",
+ "\u040e\u0437\u0431\u0435\u043a\u0438\u0441\u0442\u043e\u043d \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0441\u0438"
+ ],
+ "region": "Asia",
+ "subregion": "Central Asia",
+ "languages": {
+ "rus": "Russian",
+ "uzb": "Uzbek"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0623\u0648\u0632\u0628\u0627\u0643\u0633\u062a\u0627\u0646",
+ "common": "\u0623\u0648\u0632\u0628\u0627\u0643\u0633\u062a\u0627\u0646"
+ },
+ "bre": {
+ "official": "Republik Ouzbekistan",
+ "common": "Ouzbekistan"
+ },
+ "ces": {
+ "official": "Republika Uzbekist\u00e1n",
+ "common": "Uzbekist\u00e1n"
+ },
+ "deu": {
+ "official": "Republik Usbekistan",
+ "common": "Usbekistan"
+ },
+ "est": {
+ "official": "Usbekistani Vabariik",
+ "common": "Usbekistan"
+ },
+ "fin": {
+ "official": "Uzbekistanin tasavalta",
+ "common": "Uzbekistan"
+ },
+ "fra": {
+ "official": "R\u00e9publique d'Ouzb\u00e9kistan",
+ "common": "Ouzb\u00e9kistan"
+ },
+ "hrv": {
+ "official": "Republika Uzbekistan",
+ "common": "Uzbekistan"
+ },
+ "hun": {
+ "official": "\u00dczb\u00e9g K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "\u00dczbegiszt\u00e1n"
+ },
+ "ita": {
+ "official": "Repubblica di Uzbekistan",
+ "common": "Uzbekistan"
+ },
+ "jpn": {
+ "official": "\u30a6\u30ba\u30d9\u30ad\u30b9\u30bf\u30f3\u5171\u548c\u56fd",
+ "common": "\u30a6\u30ba\u30d9\u30ad\u30b9\u30bf\u30f3"
+ },
+ "kor": {
+ "official": "\uc6b0\uc988\ubca0\ud0a4\uc2a4\ud0c4 \uacf5\ud654\uad6d",
+ "common": "\uc6b0\uc988\ubca0\ud0a4\uc2a4\ud0c4"
+ },
+ "nld": {
+ "official": "Republiek Oezbekistan",
+ "common": "Oezbekistan"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0627\u0632\u0628\u06a9\u0633\u062a\u0627\u0646",
+ "common": "\u0627\u0632\u0628\u06a9\u0633\u062a\u0627\u0646"
+ },
+ "pol": {
+ "official": "Republika Uzbekistanu",
+ "common": "Uzbekistan"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Usbequist\u00e3o",
+ "common": "Uzbequist\u00e3o"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0423\u0437\u0431\u0435\u043a\u0438\u0441\u0442\u0430\u043d",
+ "common": "\u0423\u0437\u0431\u0435\u043a\u0438\u0441\u0442\u0430\u043d"
+ },
+ "slk": {
+ "official": "Uzbeck\u00e1 republika",
+ "common": "Uzbekistan"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Uzbekist\u00e1n",
+ "common": "Uzbekist\u00e1n"
+ },
+ "srp": {
+ "official": "Republika Uzbekistan",
+ "common": "Uzbekistan"
+ },
+ "swe": {
+ "official": "Republiken Uzbekistan",
+ "common": "Uzbekistan"
+ },
+ "tur": {
+ "official": "\u00f6zbekistan Cumhuriyeti",
+ "common": "\u00f6zbekistan"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0627\u0632\u0628\u06a9\u0633\u062a\u0627\u0646",
+ "common": "\u0627\u0632\u0628\u06a9\u0633\u062a\u0627\u0646"
+ },
+ "zho": {
+ "official": "\u4e4c\u5179\u522b\u514b\u65af\u5766\u5171\u548c\u56fd",
+ "common": "\u4e4c\u5179\u522b\u514b\u65af\u5766"
+ }
+ },
+ "latlng": [
+ 41,
+ 64
+ ],
+ "landlocked": true,
+ "borders": [
+ "AFG",
+ "KAZ",
+ "KGZ",
+ "TJK",
+ "TKM"
+ ],
+ "area": 447400,
+ "flag": "\ud83c\uddfa\ud83c\uddff",
+ "demonyms": {
+ "eng": {
+ "f": "Uzbekistani",
+ "m": "Uzbekistani"
+ },
+ "fra": {
+ "f": "Ouzb\u00e8ke",
+ "m": "Ouzb\u00e8ke"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Vatican City",
+ "official": "Vatican City State",
+ "native": {
+ "ita": {
+ "official": "Stato della Citt\u00e0 del Vaticano",
+ "common": "Vaticano"
+ },
+ "lat": {
+ "official": "Status Civitatis Vatican\u00e6",
+ "common": "Vatican\u00e6"
+ }
+ }
+ },
+ "tld": [
+ ".va"
+ ],
+ "cca2": "VA",
+ "ccn3": "336",
+ "cca3": "VAT",
+ "cioc": "",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "",
+ "currencies": {
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ }
+ },
+ "idd": {
+ "root": "+3",
+ "suffixes": [
+ "906698",
+ "79"
+ ]
+ },
+ "capital": [
+ "Vatican City"
+ ],
+ "altSpellings": [
+ "VA",
+ "Holy See (Vatican City State)",
+ "Vatican City State",
+ "Vatican",
+ "Stato della Citt\u00e0 del Vaticano"
+ ],
+ "region": "Europe",
+ "subregion": "Southern Europe",
+ "languages": {
+ "ita": "Italian",
+ "lat": "Latin"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062f\u0648\u0644\u0629 \u0645\u062f\u064a\u0646\u0629 \u0627\u0644\u0641\u0627\u062a\u064a\u0643\u0627\u0646",
+ "common": "\u0645\u062f\u064a\u0646\u0629 \u0627\u0644\u0641\u0627\u062a\u064a\u0643\u0627\u0646"
+ },
+ "bre": {
+ "official": "Riez Keoded ar Vatikan",
+ "common": "Vatikan"
+ },
+ "ces": {
+ "official": "M\u011bstsk\u00fd st\u00e1t Vatik\u00e1n",
+ "common": "Vatik\u00e1n"
+ },
+ "deu": {
+ "official": "Staat Vatikanstadt",
+ "common": "Vatikanstadt"
+ },
+ "est": {
+ "official": "Vatikani Linnriik",
+ "common": "Vatikan"
+ },
+ "fin": {
+ "official": "Vatikaanin kaupunkivaltio",
+ "common": "Vatikaani"
+ },
+ "fra": {
+ "official": "Cit\u00e9 du Vatican",
+ "common": "Cit\u00e9 du Vatican"
+ },
+ "hrv": {
+ "official": "Vatikan",
+ "common": "Vatikan"
+ },
+ "hun": {
+ "official": "Vatik\u00e1n \u00c1llam",
+ "common": "Vatik\u00e1n"
+ },
+ "ita": {
+ "official": "Citt\u00e0 del Vaticano",
+ "common": "Citt\u00e0 del Vaticano"
+ },
+ "jpn": {
+ "official": "\u30d0\u30c1\u30ab\u30f3\u5e02\u56fd",
+ "common": "\u30d0\u30c1\u30ab\u30f3"
+ },
+ "kor": {
+ "official": "\ubc14\ud2f0\uce78 \uc2dc\uad6d",
+ "common": "\ubc14\ud2f0\uce78"
+ },
+ "nld": {
+ "official": "Vaticaanstad",
+ "common": "Vaticaanstad"
+ },
+ "per": {
+ "official": "\u062f\u0648\u0644\u062a\u200c\u0634\u0647\u0631 \u0648\u0627\u062a\u06cc\u06a9\u0627\u0646",
+ "common": "\u0648\u0627\u062a\u06cc\u06a9\u0627\u0646"
+ },
+ "pol": {
+ "official": "Pa\u0144stwo Watyka\u0144skie",
+ "common": "Watykan"
+ },
+ "por": {
+ "official": "Cidade do Vaticano",
+ "common": "Cidade do Vaticano"
+ },
+ "rus": {
+ "official": "\u0413\u043e\u0440\u043e\u0434-\u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u043e \u0412\u0430\u0442\u0438\u043a\u0430\u043d",
+ "common": "\u0412\u0430\u0442\u0438\u043a\u0430\u043d"
+ },
+ "slk": {
+ "official": "Sv\u00e4t\u00e1 stolica (Vatik\u00e1nsky mestsk\u00fd \u0161t\u00e1t",
+ "common": "Vatik\u00e1n"
+ },
+ "spa": {
+ "official": "Ciudad del Vaticano",
+ "common": "Ciudad del Vaticano"
+ },
+ "srp": {
+ "official": "Sveta Stolica",
+ "common": "Vatikan"
+ },
+ "swe": {
+ "official": "Vatikanstaten",
+ "common": "Vatikanstaten"
+ },
+ "tur": {
+ "official": "Vatikan \u015fehir Devleti",
+ "common": "Vatikan"
+ },
+ "urd": {
+ "official": "\u0648\u06cc\u0679\u06cc\u06a9\u0646 \u0633\u0679\u06cc",
+ "common": "\u0648\u06cc\u0679\u06cc\u06a9\u0646 \u0633\u0679\u06cc"
+ },
+ "zho": {
+ "official": "\u68b5\u8482\u5188\u57ce\u56fd",
+ "common": "\u68b5\u8482\u5188"
+ }
+ },
+ "latlng": [
+ 41.9,
+ 12.45
+ ],
+ "landlocked": true,
+ "borders": [
+ "ITA"
+ ],
+ "area": 0.44,
+ "flag": "\ud83c\uddfb\ud83c\udde6",
+ "demonyms": {
+ "eng": {
+ "f": "Vatican",
+ "m": "Vatican"
+ },
+ "fra": {
+ "f": "Vaticane",
+ "m": "Vatican"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Saint Vincent and the Grenadines",
+ "official": "Saint Vincent and the Grenadines",
+ "native": {
+ "eng": {
+ "official": "Saint Vincent and the Grenadines",
+ "common": "Saint Vincent and the Grenadines"
+ }
+ }
+ },
+ "tld": [
+ ".vc"
+ ],
+ "cca2": "VC",
+ "ccn3": "670",
+ "cca3": "VCT",
+ "cioc": "VIN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "XCD": {
+ "name": "Eastern Caribbean dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "784"
+ ]
+ },
+ "capital": [
+ "Kingstown"
+ ],
+ "altSpellings": [
+ "VC"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0633\u0627\u0646\u062a \u0641\u064a\u0646\u0633\u0646\u062a \u0648\u0627\u0644\u063a\u0631\u064a\u0646\u0627\u062f\u064a\u0646",
+ "common": "\u0633\u0627\u0646\u062a \u0641\u064a\u0646\u0633\u0646\u062a \u0648\u0627\u0644\u063a\u0631\u064a\u0646\u0627\u062f\u064a\u0646"
+ },
+ "bre": {
+ "official": "Sant-Visant hag ar Grenadinez",
+ "common": "Sant-Visant hag ar Grenadinez"
+ },
+ "ces": {
+ "official": "Svat\u00fd Vincenc a Grenadiny",
+ "common": "Svat\u00fd Vincenc a Grenadiny"
+ },
+ "deu": {
+ "official": "St. Vincent und die Grenadinen",
+ "common": "St. Vincent und die Grenadinen"
+ },
+ "est": {
+ "official": "Saint Vincent ja Grenadiinid",
+ "common": "Saint Vincent"
+ },
+ "fin": {
+ "official": "Saint Vincent ja Grenadiinit",
+ "common": "Saint Vincent ja Grenadiinit"
+ },
+ "fra": {
+ "official": "Saint-Vincent-et-les Grenadines",
+ "common": "Saint-Vincent-et-les-Grenadines"
+ },
+ "hrv": {
+ "official": "Sveti Vincent i Grenadini",
+ "common": "Sveti Vincent i Grenadini"
+ },
+ "hun": {
+ "official": "Saint Vincent \u00e9s a Grenadine-szigetek",
+ "common": "Saint Vincent \u00e9s a Grenadine-szigetek"
+ },
+ "ita": {
+ "official": "Saint Vincent e Grenadine",
+ "common": "Saint Vincent e Grenadine"
+ },
+ "jpn": {
+ "official": "\u30bb\u30f3\u30c8\u30d3\u30f3\u30bb\u30f3\u30c8\u30fb\u30b0\u30ec\u30ca\u30c7\u30a3\u30fc\u30f3\u8af8\u5cf6",
+ "common": "\u30bb\u30f3\u30c8\u30d3\u30f3\u30bb\u30f3\u30c8\u30fb\u30b0\u30ec\u30ca\u30c7\u30a3\u30fc\u30f3"
+ },
+ "kor": {
+ "official": "\uc138\uc778\ud2b8\ube48\uc13c\ud2b8 \uadf8\ub808\ub098\ub518",
+ "common": "\uc138\uc778\ud2b8\ube48\uc13c\ud2b8 \uadf8\ub808\ub098\ub518"
+ },
+ "nld": {
+ "official": "Saint Vincent en de Grenadines",
+ "common": "Saint Vincent en de Grenadines"
+ },
+ "per": {
+ "official": "\u0633\u0646\u062a \u0648\u06cc\u0646\u0633\u0646\u062a \u0648 \u06af\u0631\u0646\u0627\u062f\u06cc\u0646\u200c\u0647\u0627",
+ "common": "\u0633\u0646\u062a \u0648\u06cc\u0646\u0633\u0646\u062a \u0648 \u06af\u0631\u0646\u0627\u062f\u06cc\u0646\u200c\u0647\u0627"
+ },
+ "pol": {
+ "official": "Saint Vincent i Grenadyny",
+ "common": "Saint Vincent i Grenadyny"
+ },
+ "por": {
+ "official": "S\u00e3o Vicente e Granadinas",
+ "common": "S\u00e3o Vincente e Granadinas"
+ },
+ "rus": {
+ "official": "\u0421\u0435\u043d\u0442-\u0412\u0438\u043d\u0441\u0435\u043d\u0442 \u0438 \u0413\u0440\u0435\u043d\u0430\u0434\u0438\u043d\u044b",
+ "common": "\u0421\u0435\u043d\u0442-\u0412\u0438\u043d\u0441\u0435\u043d\u0442 \u0438 \u0413\u0440\u0435\u043d\u0430\u0434\u0438\u043d\u044b"
+ },
+ "slk": {
+ "official": "Sv\u00e4t\u00fd Vincent a Grenad\u00edny",
+ "common": "Sv\u00e4t\u00fd Vincent a Grenad\u00edny"
+ },
+ "spa": {
+ "official": "San Vicente y las Granadinas",
+ "common": "San Vicente y Granadinas"
+ },
+ "srp": {
+ "official": "Sent Vinsent i Grenadini",
+ "common": "Sveti Vinsent i Grenadini"
+ },
+ "swe": {
+ "official": "Saint Vincent och Grenadinerna",
+ "common": "Saint Vincent och Grenadinerna"
+ },
+ "tur": {
+ "official": "Saint Vincent ve Grenadinler",
+ "common": "Saint Vincent ve Grenadinler"
+ },
+ "urd": {
+ "official": "\u0633\u06cc\u0646\u0679 \u0648\u06cc\u0646\u0633\u06cc\u0646\u0679 \u0648 \u06af\u0631\u06cc\u0646\u0627\u0688\u0627\u0626\u0646\u0632",
+ "common": "\u0633\u06cc\u0646\u0679 \u0648\u06cc\u0646\u0633\u06cc\u0646\u0679 \u0648 \u06af\u0631\u06cc\u0646\u0627\u0688\u0627\u0626\u0646\u0632"
+ },
+ "zho": {
+ "official": "\u5723\u6587\u68ee\u7279\u548c\u683c\u6797\u7eb3\u4e01\u65af",
+ "common": "\u5723\u6587\u68ee\u7279\u548c\u683c\u6797\u7eb3\u4e01\u65af"
+ }
+ },
+ "latlng": [
+ 13.25,
+ -61.2
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 389,
+ "flag": "\ud83c\uddfb\ud83c\udde8",
+ "demonyms": {
+ "eng": {
+ "f": "Saint Vincentian",
+ "m": "Saint Vincentian"
+ },
+ "fra": {
+ "f": "Vincentaise",
+ "m": "Vincentais"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Venezuela",
+ "official": "Bolivarian Republic of Venezuela",
+ "native": {
+ "spa": {
+ "official": "Rep\u00fablica Bolivariana de Venezuela",
+ "common": "Venezuela"
+ }
+ }
+ },
+ "tld": [
+ ".ve"
+ ],
+ "cca2": "VE",
+ "ccn3": "862",
+ "cca3": "VEN",
+ "cioc": "VEN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Latin American and Caribbean Group",
+ "currencies": {
+ "VES": {
+ "name": "Venezuelan bol\u00edvar soberano",
+ "symbol": "Bs.S."
+ }
+ },
+ "idd": {
+ "root": "+5",
+ "suffixes": [
+ "8"
+ ]
+ },
+ "capital": [
+ "Caracas"
+ ],
+ "altSpellings": [
+ "VE",
+ "Bolivarian Republic of Venezuela",
+ "Venezuela, Bolivarian Republic of",
+ "Rep\u00fablica Bolivariana de Venezuela"
+ ],
+ "region": "Americas",
+ "subregion": "South America",
+ "languages": {
+ "spa": "Spanish"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0641\u0646\u0632\u0648\u064a\u0644\u0627 \u0627\u0644\u0628\u0648\u0644\u064a\u0641\u0627\u0631\u064a\u0629",
+ "common": "\u0641\u0646\u0632\u0648\u064a\u0644\u0627"
+ },
+ "bre": {
+ "official": "Republik Volivarian Venezuela",
+ "common": "Venezuela"
+ },
+ "ces": {
+ "official": "Bol\u00edvarsk\u00e1 republika Venezuela",
+ "common": "Venezuela"
+ },
+ "deu": {
+ "official": "Bolivarische Republik Venezuela",
+ "common": "Venezuela"
+ },
+ "est": {
+ "official": "Venezuela Bol\u00edvari Vabariik",
+ "common": "Venezuela"
+ },
+ "fin": {
+ "official": "Venezuelan bolivariaainen tasavalta",
+ "common": "Venezuela"
+ },
+ "fra": {
+ "official": "R\u00e9publique bolivarienne du Venezuela",
+ "common": "Venezuela"
+ },
+ "hrv": {
+ "official": "BOLIVARIJANSKA Republika Venezuela",
+ "common": "Venezuela"
+ },
+ "hun": {
+ "official": "Venezuelai Boliv\u00e1ri K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Venezuela"
+ },
+ "ita": {
+ "official": "Repubblica Bolivariana del Venezuela",
+ "common": "Venezuela"
+ },
+ "jpn": {
+ "official": "\u30d9\u30cd\u30ba\u30a8\u30e9\u30fb\u30dc\u30ea\u30d0\u30eb\u5171\u548c\u56fd",
+ "common": "\u30d9\u30cd\u30ba\u30a8\u30e9"
+ },
+ "kor": {
+ "official": "\ubca0\ub124\uc218\uc5d8\ub77c \ubcfc\ub9ac\ubc14\ub974 \uacf5\ud654\uad6d",
+ "common": "\ubca0\ub124\uc218\uc5d8\ub77c"
+ },
+ "nld": {
+ "official": "Bolivariaanse Republiek Venezuela",
+ "common": "Venezuela"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0628\u0648\u0644\u06cc\u0648\u0627\u0631\u06cc \u0648\u0646\u0632\u0648\u0626\u0644\u0627",
+ "common": "\u0648\u0646\u0632\u0648\u0626\u0644\u0627"
+ },
+ "pol": {
+ "official": "Boliwaria\u0144ska Republika Wenezueli",
+ "common": "Wenezuela"
+ },
+ "por": {
+ "official": "Rep\u00fablica Bolivariana da Venezuela",
+ "common": "Venezuela"
+ },
+ "rus": {
+ "official": "\u0411\u043e\u043b\u0438\u0432\u0430\u0440\u0438\u0430\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0412\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u0430",
+ "common": "\u0412\u0435\u043d\u0435\u0441\u0443\u044d\u043b\u0430"
+ },
+ "slk": {
+ "official": "Venezuelsk\u00e1 bol\u00edvarovsk\u00e1 republika",
+ "common": "Venezuela"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Bolivariana de Venezuela",
+ "common": "Venezuela"
+ },
+ "srp": {
+ "official": "Bolivarska Republika Venecuela",
+ "common": "Venecuela"
+ },
+ "swe": {
+ "official": "Bolivarianska republiken Venezuela",
+ "common": "Venezuela"
+ },
+ "tur": {
+ "official": "Bolivarc\u0131 Venezuela Cumhuriyeti",
+ "common": "Venezuela"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0648\u06cc\u0646\u06cc\u0632\u0648\u06cc\u0644\u0627",
+ "common": "\u0648\u06cc\u0646\u06cc\u0632\u0648\u06cc\u0644\u0627"
+ },
+ "zho": {
+ "official": "\u59d4\u5185\u745e\u62c9\u73bb\u5229\u74e6\u5c14\u5171\u548c\u56fd",
+ "common": "\u59d4\u5185\u745e\u62c9"
+ }
+ },
+ "latlng": [
+ 8,
+ -66
+ ],
+ "landlocked": false,
+ "borders": [
+ "BRA",
+ "COL",
+ "GUY"
+ ],
+ "area": 916445,
+ "flag": "\ud83c\uddfb\ud83c\uddea",
+ "demonyms": {
+ "eng": {
+ "f": "Venezuelan",
+ "m": "Venezuelan"
+ },
+ "fra": {
+ "f": "V\u00e9n\u00e9zu\u00e9lienne",
+ "m": "V\u00e9n\u00e9zu\u00e9lien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "British Virgin Islands",
+ "official": "Virgin Islands",
+ "native": {
+ "eng": {
+ "official": "Virgin Islands",
+ "common": "British Virgin Islands"
+ }
+ }
+ },
+ "tld": [
+ ".vg"
+ ],
+ "cca2": "VG",
+ "ccn3": "092",
+ "cca3": "VGB",
+ "cioc": "IVB",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "284"
+ ]
+ },
+ "capital": [
+ "Road Town"
+ ],
+ "altSpellings": [
+ "VG",
+ "Virgin Islands, British"
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0632\u0631 \u0627\u0644\u0639\u0630\u0631\u0627\u0621 \u0627\u0644\u0628\u0631\u064a\u0637\u0627\u0646\u064a\u0629",
+ "common": "\u062c\u0632\u0631 \u0627\u0644\u0639\u0630\u0631\u0627\u0621"
+ },
+ "bre": {
+ "official": "Inizi Gwerc'h Breizhveurat",
+ "common": "Inizi Gwerc'h Breizhveurat"
+ },
+ "ces": {
+ "official": "Britsk\u00e9 Panensk\u00e9 ostrovy",
+ "common": "Britsk\u00e9 Panensk\u00e9 ostrovy"
+ },
+ "deu": {
+ "official": "Jungferninseln",
+ "common": "Britische Jungferninseln"
+ },
+ "est": {
+ "official": "Neitsisaared",
+ "common": "Briti Neitsisaared"
+ },
+ "fin": {
+ "official": "Brittil\u00e4iset Neitsytsaaret",
+ "common": "Neitsytsaaret"
+ },
+ "fra": {
+ "official": "\u00eeles Vierges",
+ "common": "\u00celes Vierges britanniques"
+ },
+ "hrv": {
+ "official": "Djevi\u010danski Otoci",
+ "common": "Britanski Djevi\u010danski Otoci"
+ },
+ "hun": {
+ "official": "Brit Virgin-szigetek",
+ "common": "Brit Virgin-szigetek"
+ },
+ "ita": {
+ "official": "Isole Vergini",
+ "common": "Isole Vergini Britanniche"
+ },
+ "jpn": {
+ "official": "\u82f1\u9818\u30f4\u30a1\u30fc\u30b8\u30f3\u8af8\u5cf6",
+ "common": "\u30a4\u30ae\u30ea\u30b9\u9818\u30f4\u30a1\u30fc\u30b8\u30f3\u8af8\u5cf6"
+ },
+ "kor": {
+ "official": "\uc601\uad6d\ub839 \ubc84\uc9c4\uc544\uc77c\ub79c\ub4dc",
+ "common": "\uc601\uad6d\ub839 \ubc84\uc9c4\uc544\uc77c\ub79c\ub4dc"
+ },
+ "nld": {
+ "official": "Maagdeneilanden",
+ "common": "Britse Maagdeneilanden"
+ },
+ "per": {
+ "official": "\u062c\u0632\u0627\u06cc\u0631 \u0648\u06cc\u0631\u062c\u06cc\u0646 \u0628\u0631\u06cc\u062a\u0627\u0646\u06cc\u0627",
+ "common": "\u062c\u0632\u0627\u06cc\u0631 \u0648\u06cc\u0631\u062c\u06cc\u0646 \u0628\u0631\u06cc\u062a\u0627\u0646\u06cc\u0627"
+ },
+ "pol": {
+ "official": "Brytyjskie Wyspy Dziewicze",
+ "common": "Brytyjskie Wyspy Dziewicze"
+ },
+ "por": {
+ "official": "Ilhas Virgens",
+ "common": "Ilhas Virgens"
+ },
+ "rus": {
+ "official": "\u0412\u0438\u0440\u0433\u0438\u043d\u0441\u043a\u0438\u0435 \u043e\u0441\u0442\u0440\u043e\u0432\u0430",
+ "common": "\u0411\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0438\u0435 \u0412\u0438\u0440\u0433\u0438\u043d\u0441\u043a\u0438\u0435 \u043e\u0441\u0442\u0440\u043e\u0432\u0430"
+ },
+ "slk": {
+ "official": "Panensk\u00e9 ostrovy",
+ "common": "Panensk\u00e9 ostrovy"
+ },
+ "spa": {
+ "official": "Islas V\u00edrgenes",
+ "common": "Islas V\u00edrgenes del Reino Unido"
+ },
+ "srp": {
+ "official": "Devi\u010danska Ostrva",
+ "common": "Britanska Devi\u010danska Ostrva"
+ },
+ "swe": {
+ "official": "Brittiska Jungfru\u00f6arna",
+ "common": "Brittiska Jungfru\u00f6arna"
+ },
+ "tur": {
+ "official": "Virjin Adalar\u0131",
+ "common": "Virjin Adalar\u0131"
+ },
+ "urd": {
+ "official": "\u0628\u0631\u0637\u0627\u0646\u0648\u06cc \u062c\u0632\u0627\u0626\u0631 \u0648\u0631\u062c\u0646",
+ "common": "\u0628\u0631\u0637\u0627\u0646\u0648\u06cc \u062c\u0632\u0627\u0626\u0631 \u0648\u0631\u062c\u0646"
+ },
+ "zho": {
+ "official": "\u82f1\u5c5e\u7ef4\u5c14\u4eac\u7fa4\u5c9b",
+ "common": "\u82f1\u5c5e\u7ef4\u5c14\u4eac\u7fa4\u5c9b"
+ }
+ },
+ "latlng": [
+ 18.431383,
+ -64.62305
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 151,
+ "flag": "\ud83c\uddfb\ud83c\uddec",
+ "demonyms": {
+ "eng": {
+ "f": "Virgin Islander",
+ "m": "Virgin Islander"
+ },
+ "fra": {
+ "f": "",
+ "m": ""
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "United States Virgin Islands",
+ "official": "Virgin Islands of the United States",
+ "native": {
+ "eng": {
+ "official": "Virgin Islands of the United States",
+ "common": "United States Virgin Islands"
+ }
+ }
+ },
+ "tld": [
+ ".vi"
+ ],
+ "cca2": "VI",
+ "ccn3": "850",
+ "cca3": "VIR",
+ "cioc": "ISV",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+1",
+ "suffixes": [
+ "340"
+ ]
+ },
+ "capital": [
+ "Charlotte Amalie"
+ ],
+ "altSpellings": [
+ "VI",
+ "Virgin Islands, U.S."
+ ],
+ "region": "Americas",
+ "subregion": "Caribbean",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0632\u0631 \u0627\u0644\u0639\u0630\u0631\u0627\u0621 \u0627\u0644\u0627\u0645\u0631\u064a\u0643\u064a\u0629",
+ "common": "\u062c\u0632\u0631 \u0627\u0644\u0639\u0630\u0631\u0627\u0621 \u0627\u0644\u0627\u0645\u0631\u064a\u0643\u064a\u0629"
+ },
+ "bre": {
+ "official": "Inizi Gwerc'h ar Stado\u00f9-Unanet",
+ "common": "Inizi Gwerc'h ar Stado\u00f9-Unanet"
+ },
+ "ces": {
+ "official": "Americk\u00e9 Panensk\u00e9 ostrovy",
+ "common": "Americk\u00e9 Panensk\u00e9 ostrovy"
+ },
+ "deu": {
+ "official": "Amerikanische Jungferninseln",
+ "common": "Amerikanische Jungferninseln"
+ },
+ "est": {
+ "official": "\u00dchendriikide Neitsisaared",
+ "common": "Neitsisaared, USA"
+ },
+ "fin": {
+ "official": "Yhdysvaltain Neitsytsaaret",
+ "common": "Neitsytsaaret"
+ },
+ "fra": {
+ "official": "\u00celes Vierges des \u00c9tats-Unis",
+ "common": "\u00celes Vierges des \u00c9tats-Unis"
+ },
+ "hrv": {
+ "official": "Djevi\u010danski Otoci SAD",
+ "common": "Ameri\u010dki Djevi\u010danski Otoci"
+ },
+ "hun": {
+ "official": "Amerikai Virgin-szigetek",
+ "common": "Amerikai Virgin-szigetek"
+ },
+ "ita": {
+ "official": "Isole Vergini degli Stati Uniti",
+ "common": "Isole Vergini americane"
+ },
+ "jpn": {
+ "official": "\u7c73\u9818\u30f4\u30a1\u30fc\u30b8\u30f3\u8af8\u5cf6",
+ "common": "\u30a2\u30e1\u30ea\u30ab\u9818\u30f4\u30a1\u30fc\u30b8\u30f3\u8af8\u5cf6"
+ },
+ "kor": {
+ "official": "\ubbf8\uad6d\ub839 \ubc84\uc9c4\uc544\uc77c\ub79c\ub4dc",
+ "common": "\ubbf8\uad6d\ub839 \ubc84\uc9c4\uc544\uc77c\ub79c\ub4dc"
+ },
+ "nld": {
+ "official": "Maagdeneilanden van de Verenigde Staten",
+ "common": "Amerikaanse Maagdeneilanden"
+ },
+ "per": {
+ "official": "\u062c\u0632\u0627\u06cc\u0631 \u0648\u06cc\u0631\u062c\u06cc\u0646 \u0627\u06cc\u0627\u0644\u0627\u062a \u0645\u062a\u062d\u062f\u0647 \u0622\u0645\u0631\u06cc\u06a9\u0627",
+ "common": "\u062c\u0632\u0627\u06cc\u0631 \u0648\u06cc\u0631\u062c\u06cc\u0646 \u0627\u06cc\u0627\u0644\u0627\u062a \u0645\u062a\u062d\u062f\u0647 \u0622\u0645\u0631\u06cc\u06a9\u0627"
+ },
+ "pol": {
+ "official": "Wyspy Dziewicze Stan\u00f3w Zjednoczonych",
+ "common": "Wyspy Dziewicze Stan\u00f3w Zjednoczonych"
+ },
+ "por": {
+ "official": "Ilhas Virgens dos Estados Unidos",
+ "common": "Ilhas Virgens dos Estados Unidos"
+ },
+ "rus": {
+ "official": "\u0412\u0438\u0440\u0433\u0438\u043d\u0441\u043a\u0438\u0435 \u043e\u0441\u0442\u0440\u043e\u0432\u0430 \u0421\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u043d\u044b\u0445 \u0428\u0442\u0430\u0442\u043e\u0432",
+ "common": "\u0412\u0438\u0440\u0433\u0438\u043d\u0441\u043a\u0438\u0435 \u041e\u0441\u0442\u0440\u043e\u0432\u0430"
+ },
+ "slk": {
+ "official": "Americk\u00e9 Panensk\u00e9 ostrovy",
+ "common": "Americk\u00e9 Panensk\u00e9 ostrovy"
+ },
+ "spa": {
+ "official": "Islas V\u00edrgenes de los Estados Unidos",
+ "common": "Islas V\u00edrgenes de los Estados Unidos"
+ },
+ "srp": {
+ "official": "Devi\u010danska Ostrva Amerike",
+ "common": "Ameri\u010dka Devi\u010danska Ostrva"
+ },
+ "swe": {
+ "official": "Amerikanska Jungfru\u00f6arna",
+ "common": "Amerikanska Jungfru\u00f6arna"
+ },
+ "tur": {
+ "official": "Amerika Birle\u015fik Devletleri Virjin Adalar\u0131",
+ "common": "ABD Virjin Adalar\u0131"
+ },
+ "urd": {
+ "official": "\u0627\u0645\u0631\u06cc\u06a9\u06cc \u062c\u0632\u0627\u0626\u0631 \u0648\u0631\u062c\u0646",
+ "common": "\u0627\u0645\u0631\u06cc\u06a9\u06cc \u062c\u0632\u0627\u0626\u0631 \u0648\u0631\u062c\u0646"
+ },
+ "zho": {
+ "official": "\u7f8e\u5c5e\u7ef4\u5c14\u4eac\u7fa4\u5c9b",
+ "common": "\u7f8e\u5c5e\u7ef4\u5c14\u4eac\u7fa4\u5c9b"
+ }
+ },
+ "latlng": [
+ 18.35,
+ -64.933333
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 347,
+ "flag": "\ud83c\uddfb\ud83c\uddee",
+ "demonyms": {
+ "eng": {
+ "f": "Virgin Islander",
+ "m": "Virgin Islander"
+ },
+ "fra": {
+ "f": "",
+ "m": ""
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Vietnam",
+ "official": "Socialist Republic of Vietnam",
+ "native": {
+ "vie": {
+ "official": "C\u1ed9ng h\u00f2a x\u00e3 h\u1ed9i ch\u1ee7 ngh\u0129a Vi\u1ec7t Nam",
+ "common": "Vi\u1ec7t Nam"
+ }
+ }
+ },
+ "tld": [
+ ".vn"
+ ],
+ "cca2": "VN",
+ "ccn3": "704",
+ "cca3": "VNM",
+ "cioc": "VIE",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "VND": {
+ "name": "Vietnamese \u0111\u1ed3ng",
+ "symbol": "\u20ab"
+ }
+ },
+ "idd": {
+ "root": "+8",
+ "suffixes": [
+ "4"
+ ]
+ },
+ "capital": [
+ "Hanoi"
+ ],
+ "altSpellings": [
+ "VN",
+ "Socialist Republic of Vietnam",
+ "C\u1ed9ng h\u00f2a X\u00e3 h\u1ed9i ch\u1ee7 ngh\u0129a Vi\u1ec7t Nam",
+ "Viet Nam"
+ ],
+ "region": "Asia",
+ "subregion": "South-Eastern Asia",
+ "languages": {
+ "vie": "Vietnamese"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0641\u064a\u062a\u0646\u0627\u0645 \u0627\u0644\u0627\u0634\u062a\u0631\u0627\u0643\u064a\u0629",
+ "common": "\u0641\u064a\u062a\u0646\u0627\u0645"
+ },
+ "bre": {
+ "official": "Republik Sokialour Vi\u00eat Nam",
+ "common": "Vi\u00eat Nam"
+ },
+ "ces": {
+ "official": "Vietnamsk\u00e1 socialistick\u00e1 republika",
+ "common": "Vietnam"
+ },
+ "deu": {
+ "official": "Sozialistische Republik Vietnam",
+ "common": "Vietnam"
+ },
+ "est": {
+ "official": "Vietnami Sotsialistlik Vabariik",
+ "common": "Vietnam"
+ },
+ "fin": {
+ "official": "Vietnamin sosialistinen tasavalta",
+ "common": "Vietnam"
+ },
+ "fra": {
+ "official": "R\u00e9publique socialiste du Vi\u00eat Nam",
+ "common": "Vi\u00eat Nam"
+ },
+ "hrv": {
+ "official": "Socijalisti\u010dka Republika Vijetnam",
+ "common": "Vijetnam"
+ },
+ "hun": {
+ "official": "Vietn\u00e1mi Szocialista K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Vietn\u00e1m"
+ },
+ "ita": {
+ "official": "Repubblica socialista del Vietnam",
+ "common": "Vietnam"
+ },
+ "jpn": {
+ "official": "\u30d9\u30c8\u30ca\u30e0\u793e\u4f1a\u4e3b\u7fa9\u5171\u548c\u56fd",
+ "common": "\u30d9\u30c8\u30ca\u30e0"
+ },
+ "kor": {
+ "official": "\ubca0\ud2b8\ub0a8 \uc0ac\ud68c\uc8fc\uc758 \uacf5\ud654\uad6d",
+ "common": "\ubca0\ud2b8\ub0a8"
+ },
+ "nld": {
+ "official": "Socialistische Republiek Vietnam",
+ "common": "Vietnam"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0633\u0648\u0633\u06cc\u0627\u0644\u06cc\u0633\u062a\u06cc \u0648\u06cc\u062a\u0646\u0627\u0645",
+ "common": "\u0648\u06cc\u062a\u0646\u0627\u0645"
+ },
+ "pol": {
+ "official": "Socjalistyczna Republika Wietnamu",
+ "common": "Wietnam"
+ },
+ "por": {
+ "official": "Rep\u00fablica Socialista do Vietname",
+ "common": "Vietname"
+ },
+ "rus": {
+ "official": "\u0421\u043e\u0446\u0438\u0430\u043b\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0412\u044c\u0435\u0442\u043d\u0430\u043c",
+ "common": "\u0412\u044c\u0435\u0442\u043d\u0430\u043c"
+ },
+ "slk": {
+ "official": "Vietnamsk\u00e1 socialistick\u00e1 republika",
+ "common": "Vietnam"
+ },
+ "spa": {
+ "official": "Rep\u00fablica Socialista de Vietnam",
+ "common": "Vietnam"
+ },
+ "srp": {
+ "official": "Socijalisti\u010dka Republika Vijetnam",
+ "common": "Vijetnam"
+ },
+ "swe": {
+ "official": "Socialistiska republiken Vietnam",
+ "common": "Vietnam"
+ },
+ "tur": {
+ "official": "Vietnam Sosyalist Cumhuriyeti",
+ "common": "Vietnam"
+ },
+ "urd": {
+ "official": "\u0627\u0634\u062a\u0631\u0627\u06a9\u06cc \u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0648\u06cc\u062a\u0646\u0627\u0645",
+ "common": "\u0648\u06cc\u062a\u0646\u0627\u0645"
+ },
+ "zho": {
+ "official": "\u8d8a\u5357\u793e\u4f1a\u4e3b\u4e49\u5171\u548c\u56fd",
+ "common": "\u8d8a\u5357"
+ }
+ },
+ "latlng": [
+ 16.16666666,
+ 107.83333333
+ ],
+ "landlocked": false,
+ "borders": [
+ "KHM",
+ "CHN",
+ "LAO"
+ ],
+ "area": 331212,
+ "flag": "\ud83c\uddfb\ud83c\uddf3",
+ "demonyms": {
+ "eng": {
+ "f": "Vietnamese",
+ "m": "Vietnamese"
+ },
+ "fra": {
+ "f": "Vietnamienne",
+ "m": "Vietnamien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Vanuatu",
+ "official": "Republic of Vanuatu",
+ "native": {
+ "bis": {
+ "official": "Ripablik blong Vanuatu",
+ "common": "Vanuatu"
+ },
+ "eng": {
+ "official": "Republic of Vanuatu",
+ "common": "Vanuatu"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Vanuatu",
+ "common": "Vanuatu"
+ }
+ }
+ },
+ "tld": [
+ ".vu"
+ ],
+ "cca2": "VU",
+ "ccn3": "548",
+ "cca3": "VUT",
+ "cioc": "VAN",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "VUV": {
+ "name": "Vanuatu vatu",
+ "symbol": "Vt"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "78"
+ ]
+ },
+ "capital": [
+ "Port Vila"
+ ],
+ "altSpellings": [
+ "VU",
+ "Republic of Vanuatu",
+ "Ripablik blong Vanuatu",
+ "R\u00e9publique de Vanuatu"
+ ],
+ "region": "Oceania",
+ "subregion": "Melanesia",
+ "languages": {
+ "bis": "Bislama",
+ "eng": "English",
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0641\u0627\u0646\u0648\u0627\u062a\u0648",
+ "common": "\u0641\u0627\u0646\u0648\u0627\u062a\u0648"
+ },
+ "bre": {
+ "official": "Republik Vanuatu",
+ "common": "Vanuatu"
+ },
+ "ces": {
+ "official": "Republika Vanuatu",
+ "common": "Vanuatu"
+ },
+ "deu": {
+ "official": "Vanuatu",
+ "common": "Vanuatu"
+ },
+ "est": {
+ "official": "Vanuatu Vabariik",
+ "common": "Vanuatu"
+ },
+ "fin": {
+ "official": "Vanuatun tasavalta",
+ "common": "Vanuatu"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Vanuatu",
+ "common": "Vanuatu"
+ },
+ "hrv": {
+ "official": "Republika Vanuatu",
+ "common": "Vanuatu"
+ },
+ "hun": {
+ "official": "Vanuatui K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Vanuatu"
+ },
+ "ita": {
+ "official": "Repubblica di Vanuatu",
+ "common": "Vanuatu"
+ },
+ "jpn": {
+ "official": "\u30d0\u30cc\u30a2\u30c4\u5171\u548c\u56fd",
+ "common": "\u30d0\u30cc\u30a2\u30c4"
+ },
+ "kor": {
+ "official": "\ubc14\ub204\uc544\ud22c \uacf5\ud654\uad6d",
+ "common": "\ubc14\ub204\uc544\ud22c"
+ },
+ "nld": {
+ "official": "Republiek Vanuatu",
+ "common": "Vanuatu"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0648\u0627\u0646\u0648\u0627\u062a\u0648",
+ "common": "\u0648\u0627\u0646\u0648\u0627\u062a\u0648"
+ },
+ "pol": {
+ "official": "Republika Vanuatu",
+ "common": "Vanuatu"
+ },
+ "por": {
+ "official": "Rep\u00fablica de Vanuatu",
+ "common": "Vanuatu"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0412\u0430\u043d\u0443\u0430\u0442\u0443",
+ "common": "\u0412\u0430\u043d\u0443\u0430\u0442\u0443"
+ },
+ "slk": {
+ "official": "Vanuatsk\u00e1 republika",
+ "common": "Vanuatu"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Vanuatu",
+ "common": "Vanuatu"
+ },
+ "srp": {
+ "official": "Republika Vanuatu",
+ "common": "Vanuatu"
+ },
+ "swe": {
+ "official": "Republiken Vanuatu",
+ "common": "Vanuatu"
+ },
+ "tur": {
+ "official": "Vanuatu Cumhuriyeti",
+ "common": "Vanuatu"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0648\u0627\u0646\u0648\u0627\u062a\u0648",
+ "common": "\u0648\u0627\u0646\u0648\u0627\u062a\u0648"
+ },
+ "zho": {
+ "official": "\u74e6\u52aa\u963f\u56fe\u5171\u548c\u56fd",
+ "common": "\u74e6\u52aa\u963f\u56fe"
+ }
+ },
+ "latlng": [
+ -16,
+ 167
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 12189,
+ "flag": "\ud83c\uddfb\ud83c\uddfa",
+ "demonyms": {
+ "eng": {
+ "f": "Ni-Vanuatu",
+ "m": "Ni-Vanuatu"
+ },
+ "fra": {
+ "f": "Vanuatuane",
+ "m": "Vanuatuan"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Wallis and Futuna",
+ "official": "Territory of the Wallis and Futuna Islands",
+ "native": {
+ "fra": {
+ "official": "Territoire des \u00eeles Wallis et Futuna",
+ "common": "Wallis et Futuna"
+ }
+ }
+ },
+ "tld": [
+ ".wf"
+ ],
+ "cca2": "WF",
+ "ccn3": "876",
+ "cca3": "WLF",
+ "cioc": "",
+ "independent": false,
+ "status": "officially-assigned",
+ "unMember": false,
+ "unRegionalGroup": "",
+ "currencies": {
+ "XPF": {
+ "name": "CFP franc",
+ "symbol": "\u20a3"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "81"
+ ]
+ },
+ "capital": [
+ "Mata-Utu"
+ ],
+ "altSpellings": [
+ "WF",
+ "Territory of the Wallis and Futuna Islands",
+ "Territoire des \u00eeles Wallis et Futuna"
+ ],
+ "region": "Oceania",
+ "subregion": "Polynesia",
+ "languages": {
+ "fra": "French"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0625\u0642\u0644\u064a\u0645 \u062c\u0632\u0631 \u0648\u0627\u0644\u064a\u0633 \u0648\u0641\u0648\u062a\u0648\u0646\u0627",
+ "common": "\u0648\u0627\u0644\u064a\u0633 \u0648\u0641\u0648\u062a\u0648\u0646\u0627"
+ },
+ "bre": {
+ "official": "Tiriad Inizi Wallis ha Futuna",
+ "common": "Wallis ha Futuna"
+ },
+ "ces": {
+ "official": "Teritorium ostrov\u016f Wallis a Futuna",
+ "common": "Wallis a Futuna"
+ },
+ "deu": {
+ "official": "Gebiet der Wallis und Futuna",
+ "common": "Wallis und Futuna"
+ },
+ "est": {
+ "official": "Wallise ja Futuna ala",
+ "common": "Wallis ja Futuna"
+ },
+ "fin": {
+ "official": "Wallisin ja Futunan yhteis\u00f6",
+ "common": "Wallis ja Futuna"
+ },
+ "fra": {
+ "official": "Territoire des \u00eeles Wallis et Futuna",
+ "common": "Wallis-et-Futuna"
+ },
+ "hrv": {
+ "official": "Teritoriju Wallis i Futuna",
+ "common": "Wallis i Fortuna"
+ },
+ "hun": {
+ "official": "Wallis \u00e9s Futuna",
+ "common": "Wallis \u00e9s Futuna"
+ },
+ "ita": {
+ "official": "Territorio delle Isole Wallis e Futuna",
+ "common": "Wallis e Futuna"
+ },
+ "jpn": {
+ "official": "\u30ef\u30ea\u30b9\u30fb\u30d5\u30c6\u30e5\u30ca\u8af8\u5cf6",
+ "common": "\u30a6\u30a9\u30ea\u30b9\u30fb\u30d5\u30c4\u30ca"
+ },
+ "kor": {
+ "official": "\uc648\ub9ac\uc2a4 \ud4cc\ud280\ub098",
+ "common": "\uc648\ub9ac\uc2a4 \ud4cc\ud280\ub098"
+ },
+ "nld": {
+ "official": "Grondgebied van de Wallis en Futuna",
+ "common": "Wallis en Futuna"
+ },
+ "per": {
+ "official": "\u062c\u0632\u0627\u06cc\u0631 \u0648\u0627\u0644\u06cc\u0633 \u0648 \u0641\u0648\u062a\u0648\u0646\u0627",
+ "common": "\u0648\u0627\u0644\u06cc\u0633 \u0648 \u0641\u0648\u062a\u0648\u0646\u0627"
+ },
+ "pol": {
+ "official": "Terytorium Wysp Wallis i Futuna",
+ "common": "Wallis i Futuna"
+ },
+ "por": {
+ "official": "Territ\u00f3rio das Ilhas Wallis e Futuna",
+ "common": "Wallis e Futuna"
+ },
+ "rus": {
+ "official": "\u0422\u0435\u0440\u0440\u0438\u0442\u043e\u0440\u0438\u044f \u0423\u043e\u043b\u043b\u0438\u0441 \u0438 \u0424\u0443\u0442\u0443\u043d\u0430 \u043e\u0441\u0442\u0440\u043e\u0432\u0430",
+ "common": "\u0423\u043e\u043b\u043b\u0438\u0441 \u0438 \u0424\u0443\u0442\u0443\u043d\u0430"
+ },
+ "slk": {
+ "official": "Terit\u00f3rium ostrovov Wallis a Futuna",
+ "common": "Wallis a Futuna"
+ },
+ "spa": {
+ "official": "Territorio de las Islas Wallis y Futuna",
+ "common": "Wallis y Futuna"
+ },
+ "srp": {
+ "official": "Teritorija ostrva Valis i Futuna",
+ "common": "Valis i Futuna ostrva"
+ },
+ "swe": {
+ "official": "Territoriet Wallis- och Futuna\u00f6arna",
+ "common": "Wallis- och Futuna\u00f6arna"
+ },
+ "tur": {
+ "official": "Wallis ve Futuna Adalar\u0131 B\u00f6lgesi",
+ "common": "Wallis ve Futuna Adalar\u0131 B\u00f6lgesi"
+ },
+ "urd": {
+ "official": "\u0633\u0631 \u0632\u0645\u06cc\u0646\u0650 \u0648\u0627\u0644\u0633 \u0648 \u0641\u062a\u0648\u0646\u06c1 \u062c\u0632\u0627\u0626\u0631",
+ "common": "\u0648\u0627\u0644\u0633 \u0648 \u0641\u062a\u0648\u0646\u06c1"
+ },
+ "zho": {
+ "official": "\u74e6\u5229\u65af\u548c\u5bcc\u56fe\u7eb3\u7fa4\u5c9b",
+ "common": "\u74e6\u5229\u65af\u548c\u5bcc\u56fe\u7eb3\u7fa4\u5c9b"
+ }
+ },
+ "latlng": [
+ -13.3,
+ -176.2
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 142,
+ "flag": "\ud83c\uddfc\ud83c\uddeb",
+ "demonyms": {
+ "eng": {
+ "f": "Wallis and Futuna Islander",
+ "m": "Wallis and Futuna Islander"
+ },
+ "fra": {
+ "f": "",
+ "m": ""
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Samoa",
+ "official": "Independent State of Samoa",
+ "native": {
+ "eng": {
+ "official": "Independent State of Samoa",
+ "common": "Samoa"
+ },
+ "smo": {
+ "official": "Malo Sa\u02bboloto Tuto\u02bbatasi o S\u0101moa",
+ "common": "S\u0101moa"
+ }
+ }
+ },
+ "tld": [
+ ".ws"
+ ],
+ "cca2": "WS",
+ "ccn3": "882",
+ "cca3": "WSM",
+ "cioc": "SAM",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "WST": {
+ "name": "Samoan t\u0101l\u0101",
+ "symbol": "T"
+ }
+ },
+ "idd": {
+ "root": "+6",
+ "suffixes": [
+ "85"
+ ]
+ },
+ "capital": [
+ "Apia"
+ ],
+ "altSpellings": [
+ "WS",
+ "Independent State of Samoa",
+ "Malo Sa\u02bboloto Tuto\u02bbatasi o S\u0101moa"
+ ],
+ "region": "Oceania",
+ "subregion": "Polynesia",
+ "languages": {
+ "eng": "English",
+ "smo": "Samoan"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062f\u0648\u0644\u0629 \u0633\u0627\u0645\u0648\u0627 \u0627\u0644\u0645\u0633\u062a\u0642\u0644\u0629",
+ "common": "\u0633\u0627\u0645\u0648\u0627"
+ },
+ "bre": {
+ "official": "Stad Dizalc'h Samoa",
+ "common": "Samoa"
+ },
+ "ces": {
+ "official": "Nez\u00e1visl\u00fd st\u00e1t Samoa",
+ "common": "Samoa"
+ },
+ "deu": {
+ "official": "Unabh\u00e4ngige Staat Samoa",
+ "common": "Samoa"
+ },
+ "est": {
+ "official": "Samoa Iseseisvusriik",
+ "common": "Samoa"
+ },
+ "fin": {
+ "official": "Samoan itsen\u00e4inen valtio",
+ "common": "Samoa"
+ },
+ "fra": {
+ "official": "Samoa",
+ "common": "Samoa"
+ },
+ "hrv": {
+ "official": "Nezavisna Dr\u017eava Samoa",
+ "common": "Samoa"
+ },
+ "hun": {
+ "official": "Szamoai F\u00fcggetlen \u00c1llam",
+ "common": "Szamoa"
+ },
+ "ita": {
+ "official": "Stato indipendente di Samoa",
+ "common": "Samoa"
+ },
+ "jpn": {
+ "official": "\u30b5\u30e2\u30a2\u72ec\u7acb\u56fd",
+ "common": "\u30b5\u30e2\u30a2"
+ },
+ "kor": {
+ "official": "\uc0ac\ubaa8\uc544 \ub3c5\ub9bd\uad6d",
+ "common": "\uc0ac\ubaa8\uc544"
+ },
+ "nld": {
+ "official": "Onafhankelijke Staat Samoa",
+ "common": "Samoa"
+ },
+ "per": {
+ "official": "\u0627\u06cc\u0627\u0644\u062a \u0645\u0633\u062a\u0642\u0644 \u0633\u0627\u0645\u0648\u0622",
+ "common": "\u0633\u0627\u0645\u0648\u0622"
+ },
+ "pol": {
+ "official": "Niezale\u017cne Pa\u0144stwo Samoa",
+ "common": "Samoa"
+ },
+ "por": {
+ "official": "Estado Independente de Samoa",
+ "common": "Samoa"
+ },
+ "rus": {
+ "official": "\u041d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0435 \u0413\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u043e \u0421\u0430\u043c\u043e\u0430",
+ "common": "\u0421\u0430\u043c\u043e\u0430"
+ },
+ "slk": {
+ "official": "Nez\u00e1visl\u00fd \u0161t\u00e1tSamoa",
+ "common": "Samoa"
+ },
+ "spa": {
+ "official": "Estado Independiente de Samoa",
+ "common": "Samoa"
+ },
+ "srp": {
+ "official": "Nezavisna Dr\u017eava Samoa",
+ "common": "Samoa"
+ },
+ "swe": {
+ "official": "Sj\u00e4lvst\u00e4ndiga staten Samoa",
+ "common": "Samoa"
+ },
+ "tur": {
+ "official": "Ba\u011f\u0131ms\u0131z Samoa Devleti",
+ "common": "Ba\u011f\u0131ms\u0131z Samoa Devleti"
+ },
+ "urd": {
+ "official": "\u0622\u0632\u0627\u062f \u0633\u0644\u0637\u0646\u062a\u0650 \u0633\u0627\u0645\u0648\u0627",
+ "common": "\u0633\u0627\u0645\u0648\u0648\u0627"
+ },
+ "zho": {
+ "official": "\u8428\u6469\u4e9a\u72ec\u7acb\u56fd",
+ "common": "\u8428\u6469\u4e9a"
+ }
+ },
+ "latlng": [
+ -13.58333333,
+ -172.33333333
+ ],
+ "landlocked": false,
+ "borders": [],
+ "area": 2842,
+ "flag": "\ud83c\uddfc\ud83c\uddf8",
+ "demonyms": {
+ "eng": {
+ "f": "Samoan",
+ "m": "Samoan"
+ },
+ "fra": {
+ "f": "Samoane",
+ "m": "Samoan"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Yemen",
+ "official": "Republic of Yemen",
+ "native": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u064a\u0645\u0646\u064a\u0629",
+ "common": "\u0627\u0644\u064a\u0645\u0646"
+ }
+ }
+ },
+ "tld": [
+ ".ye"
+ ],
+ "cca2": "YE",
+ "ccn3": "887",
+ "cca3": "YEM",
+ "cioc": "YEM",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "Asia and the Pacific Group",
+ "currencies": {
+ "YER": {
+ "name": "Yemeni rial",
+ "symbol": "\ufdfc"
+ }
+ },
+ "idd": {
+ "root": "+9",
+ "suffixes": [
+ "67"
+ ]
+ },
+ "capital": [
+ "Sana'a"
+ ],
+ "altSpellings": [
+ "YE",
+ "Yemeni Republic",
+ "al-Jumh\u016briyyah al-Yamaniyyah"
+ ],
+ "region": "Asia",
+ "subregion": "Western Asia",
+ "languages": {
+ "ara": "Arabic"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u0627\u0644\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u064a\u0645\u0646\u064a\u0629",
+ "common": "\u0627\u0644\u064a\u0645\u0646"
+ },
+ "bre": {
+ "official": "Republik Yemen",
+ "common": "Yemen"
+ },
+ "ces": {
+ "official": "Jemensk\u00e1 republika",
+ "common": "Jemen"
+ },
+ "deu": {
+ "official": "Republik Jemen",
+ "common": "Jemen"
+ },
+ "est": {
+ "official": "Jeemeni Vabariik",
+ "common": "Jeemen"
+ },
+ "fin": {
+ "official": "Jemenin tasavalta",
+ "common": "Jemen"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Y\u00e9men",
+ "common": "Y\u00e9men"
+ },
+ "hrv": {
+ "official": "Republika Jemen",
+ "common": "Jemen"
+ },
+ "hun": {
+ "official": "Jemeni K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Jemen"
+ },
+ "ita": {
+ "official": "Repubblica dello Yemen",
+ "common": "Yemen"
+ },
+ "jpn": {
+ "official": "\u30a4\u30a8\u30e1\u30f3\u5171\u548c\u56fd",
+ "common": "\u30a4\u30a8\u30e1\u30f3"
+ },
+ "kor": {
+ "official": "\uc608\uba58 \uacf5\ud654\uad6d",
+ "common": "\uc608\uba58"
+ },
+ "nld": {
+ "official": "Republiek Jemen",
+ "common": "Jemen"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u06cc\u0645\u0646",
+ "common": "\u06cc\u0645\u0646"
+ },
+ "pol": {
+ "official": "Republika Jeme\u0144ska",
+ "common": "Jemen"
+ },
+ "por": {
+ "official": "Rep\u00fablica do I\u00eamen",
+ "common": "I\u00e9men"
+ },
+ "rus": {
+ "official": "\u0419\u0435\u043c\u0435\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u0419\u0435\u043c\u0435\u043d"
+ },
+ "slk": {
+ "official": "Jemensk\u00e1 republika",
+ "common": "Jemen"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Yemen",
+ "common": "Yemen"
+ },
+ "srp": {
+ "official": "Republika Jemen",
+ "common": "Jemen"
+ },
+ "swe": {
+ "official": "Republiken Jemen",
+ "common": "Jemen"
+ },
+ "tur": {
+ "official": "Yemen Cumhuriyeti",
+ "common": "Yemen"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u06cc\u0645\u0646",
+ "common": "\u06cc\u0645\u0646"
+ },
+ "zho": {
+ "official": "\u4e5f\u95e8\u5171\u548c\u56fd",
+ "common": "\u4e5f\u95e8"
+ }
+ },
+ "latlng": [
+ 15,
+ 48
+ ],
+ "landlocked": false,
+ "borders": [
+ "OMN",
+ "SAU"
+ ],
+ "area": 527968,
+ "flag": "\ud83c\uddfe\ud83c\uddea",
+ "demonyms": {
+ "eng": {
+ "f": "Yemeni",
+ "m": "Yemeni"
+ },
+ "fra": {
+ "f": "Y\u00e9m\u00e9nite",
+ "m": "Y\u00e9m\u00e9nite"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "South Africa",
+ "official": "Republic of South Africa",
+ "native": {
+ "afr": {
+ "official": "Republiek van Suid-Afrika",
+ "common": "South Africa"
+ },
+ "eng": {
+ "official": "Republic of South Africa",
+ "common": "South Africa"
+ },
+ "nbl": {
+ "official": "IRiphabliki yeSewula Afrika",
+ "common": "Sewula Afrika"
+ },
+ "nso": {
+ "official": "Rephaboliki ya Afrika-Borwa ",
+ "common": "Afrika-Borwa"
+ },
+ "sot": {
+ "official": "Rephaboliki ya Afrika Borwa",
+ "common": "Afrika Borwa"
+ },
+ "ssw": {
+ "official": "IRiphabhulikhi yeNingizimu Afrika",
+ "common": "Ningizimu Afrika"
+ },
+ "tsn": {
+ "official": "Rephaboliki ya Aforika Borwa",
+ "common": "Aforika Borwa"
+ },
+ "tso": {
+ "official": "Riphabliki ra Afrika Dzonga",
+ "common": "Afrika Dzonga"
+ },
+ "ven": {
+ "official": "Riphabu\u1e3diki ya Afurika Tshipembe",
+ "common": "Afurika Tshipembe"
+ },
+ "xho": {
+ "official": "IRiphabliki yaseMzantsi Afrika",
+ "common": "Mzantsi Afrika"
+ },
+ "zul": {
+ "official": "IRiphabliki yaseNingizimu Afrika",
+ "common": "Ningizimu Afrika"
+ }
+ }
+ },
+ "tld": [
+ ".za"
+ ],
+ "cca2": "ZA",
+ "ccn3": "710",
+ "cca3": "ZAF",
+ "cioc": "RSA",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "ZAR": {
+ "name": "South African rand",
+ "symbol": "R"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "7"
+ ]
+ },
+ "capital": [
+ "Pretoria",
+ "Bloemfontein",
+ "Cape Town"
+ ],
+ "altSpellings": [
+ "ZA",
+ "RSA",
+ "Suid-Afrika",
+ "Republic of South Africa"
+ ],
+ "region": "Africa",
+ "subregion": "Southern Africa",
+ "languages": {
+ "afr": "Afrikaans",
+ "eng": "English",
+ "nbl": "Southern Ndebele",
+ "nso": "Northern Sotho",
+ "sot": "Southern Sotho",
+ "ssw": "Swazi",
+ "tsn": "Tswana",
+ "tso": "Tsonga",
+ "ven": "Venda",
+ "xho": "Xhosa",
+ "zul": "Zulu"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u062c\u0646\u0648\u0628 \u0623\u0641\u0631\u064a\u0642\u064a\u0627",
+ "common": "\u062c\u0646\u0648\u0628 \u0623\u0641\u0631\u064a\u0642\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Suafrika",
+ "common": "Suafrika"
+ },
+ "ces": {
+ "official": "Jihoafrick\u00e1 republika",
+ "common": "Jihoafrick\u00e1 republika"
+ },
+ "deu": {
+ "official": "Republik S\u00fcdafrika",
+ "common": "S\u00fcdafrika"
+ },
+ "est": {
+ "official": "L\u00f5una-Aafrika Vabariik",
+ "common": "L\u00f5una-Aafrika Vabariik"
+ },
+ "fin": {
+ "official": "Etel\u00e4-Afrikan tasavalta",
+ "common": "Etel\u00e4-Afrikka"
+ },
+ "fra": {
+ "official": "R\u00e9publique d'Afrique du Sud",
+ "common": "Afrique du Sud"
+ },
+ "hrv": {
+ "official": "Ju\u017enoafri\u010dka Republika",
+ "common": "Ju\u017enoafri\u010dka Republika"
+ },
+ "hun": {
+ "official": "D\u00e9l-afrikai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "D\u00e9l-afrikai K\u00f6zt\u00e1rsas\u00e1g"
+ },
+ "ita": {
+ "official": "Repubblica del Sud Africa",
+ "common": "Sud Africa"
+ },
+ "jpn": {
+ "official": "\u5357\u30a2\u30d5\u30ea\u30ab\u5171\u548c\u56fd",
+ "common": "\u5357\u30a2\u30d5\u30ea\u30ab"
+ },
+ "kor": {
+ "official": "\ub0a8\uc544\ud504\ub9ac\uce74 \uacf5\ud654\uad6d",
+ "common": "\ub0a8\uc544\ud504\ub9ac\uce74"
+ },
+ "nld": {
+ "official": "Republiek Zuid-Afrika",
+ "common": "Zuid-Afrika"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0622\u0641\u0631\u06cc\u0642\u0627\u06cc \u062c\u0646\u0648\u0628\u06cc",
+ "common": "\u0622\u0641\u0631\u06cc\u0642\u0627\u06cc \u062c\u0646\u0648\u0628\u06cc"
+ },
+ "pol": {
+ "official": "Republika Po\u0142udniowej Afryki",
+ "common": "Po\u0142udniowa Afryka"
+ },
+ "por": {
+ "official": "Rep\u00fablica da \u00c1frica do Sul",
+ "common": "\u00c1frica do Sul"
+ },
+ "rus": {
+ "official": "\u042e\u0436\u043d\u043e-\u0410\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430",
+ "common": "\u042e\u0436\u043d\u043e-\u0410\u0444\u0440\u0438\u043a\u0430\u043d\u0441\u043a\u0430\u044f \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430"
+ },
+ "slk": {
+ "official": "Juhoafrick\u00e1 republika",
+ "common": "Juhoafrick\u00e1 republika"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Sud\u00e1frica",
+ "common": "Sud\u00e1frica"
+ },
+ "srp": {
+ "official": "Republika Ju\u017ena Afrika",
+ "common": "Ju\u017enoafri\u010dka Republika"
+ },
+ "swe": {
+ "official": "Republiken Sydafrika",
+ "common": "Sydafrika"
+ },
+ "tur": {
+ "official": "G\u00fcney Afrika Cumhuriyeti",
+ "common": "G\u00fcney Afrika"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u062c\u0646\u0648\u0628\u06cc \u0627\u0641\u0631\u06cc\u0642\u0627",
+ "common": "\u062c\u0646\u0648\u0628\u06cc \u0627\u0641\u0631\u06cc\u0642\u0627"
+ },
+ "zho": {
+ "official": "\u5357\u975e\u5171\u548c\u56fd",
+ "common": "\u5357\u975e"
+ }
+ },
+ "latlng": [
+ -29,
+ 24
+ ],
+ "landlocked": false,
+ "borders": [
+ "BWA",
+ "LSO",
+ "MOZ",
+ "NAM",
+ "SWZ",
+ "ZWE"
+ ],
+ "area": 1221037,
+ "flag": "\ud83c\uddff\ud83c\udde6",
+ "demonyms": {
+ "eng": {
+ "f": "South African",
+ "m": "South African"
+ },
+ "fra": {
+ "f": "Sud-africaine",
+ "m": "Sud-africain"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Zambia",
+ "official": "Republic of Zambia",
+ "native": {
+ "eng": {
+ "official": "Republic of Zambia",
+ "common": "Zambia"
+ }
+ }
+ },
+ "tld": [
+ ".zm"
+ ],
+ "cca2": "ZM",
+ "ccn3": "894",
+ "cca3": "ZMB",
+ "cioc": "ZAM",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "ZMW": {
+ "name": "Zambian kwacha",
+ "symbol": "ZK"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "60"
+ ]
+ },
+ "capital": [
+ "Lusaka"
+ ],
+ "altSpellings": [
+ "ZM",
+ "Republic of Zambia"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "eng": "English"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0632\u0627\u0645\u0628\u064a\u0627",
+ "common": "\u0632\u0627\u0645\u0628\u064a\u0627"
+ },
+ "bre": {
+ "official": "Republik Zambia",
+ "common": "Zambia"
+ },
+ "ces": {
+ "official": "Zambijsk\u00e1 republika",
+ "common": "Zambie"
+ },
+ "deu": {
+ "official": "Republik Sambia",
+ "common": "Sambia"
+ },
+ "est": {
+ "official": "Sambia Vabariik",
+ "common": "Sambia"
+ },
+ "fin": {
+ "official": "Sambian tasavalta",
+ "common": "Sambia"
+ },
+ "fra": {
+ "official": "R\u00e9publique de Zambie",
+ "common": "Zambie"
+ },
+ "hrv": {
+ "official": "Republika Zambija",
+ "common": "Zambija"
+ },
+ "hun": {
+ "official": "Zambiai K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Zambia"
+ },
+ "ita": {
+ "official": "Repubblica di Zambia",
+ "common": "Zambia"
+ },
+ "jpn": {
+ "official": "\u30b6\u30f3\u30d3\u30a2\u5171\u548c\u56fd",
+ "common": "\u30b6\u30f3\u30d3\u30a2"
+ },
+ "kor": {
+ "official": "\uc7a0\ube44\uc544 \uacf5\ud654\uad6d",
+ "common": "\uc7a0\ube44\uc544"
+ },
+ "nld": {
+ "official": "Republiek Zambia",
+ "common": "Zambia"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0632\u0627\u0645\u0628\u06cc\u0627",
+ "common": "\u0632\u0627\u0645\u0628\u06cc\u0627"
+ },
+ "pol": {
+ "official": "Republika Zambii",
+ "common": "Zambia"
+ },
+ "por": {
+ "official": "Rep\u00fablica da Z\u00e2mbia",
+ "common": "Z\u00e2mbia"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0417\u0430\u043c\u0431\u0438\u044f",
+ "common": "\u0417\u0430\u043c\u0431\u0438\u044f"
+ },
+ "slk": {
+ "official": "Zambijsk\u00e1 republika",
+ "common": "Zambia"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Zambia",
+ "common": "Zambia"
+ },
+ "srp": {
+ "official": "Republika Zambija",
+ "common": "Zambija"
+ },
+ "swe": {
+ "official": "Republiken Zambia",
+ "common": "Zambia"
+ },
+ "tur": {
+ "official": "Zambiya Cumhuriyeti",
+ "common": "Zambiya"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0632\u06cc\u0645\u0628\u06cc\u0627",
+ "common": "\u0632\u06cc\u0645\u0628\u06cc\u0627"
+ },
+ "zho": {
+ "official": "\u8d5e\u6bd4\u4e9a\u5171\u548c\u56fd",
+ "common": "\u8d5e\u6bd4\u4e9a"
+ }
+ },
+ "latlng": [
+ -15,
+ 30
+ ],
+ "landlocked": true,
+ "borders": [
+ "AGO",
+ "BWA",
+ "COD",
+ "MWI",
+ "MOZ",
+ "NAM",
+ "TZA",
+ "ZWE"
+ ],
+ "area": 752612,
+ "flag": "\ud83c\uddff\ud83c\uddf2",
+ "demonyms": {
+ "eng": {
+ "f": "Zambian",
+ "m": "Zambian"
+ },
+ "fra": {
+ "f": "Zambienne",
+ "m": "Zambien"
+ }
+ }
+ },
+ {
+ "name": {
+ "common": "Zimbabwe",
+ "official": "Republic of Zimbabwe",
+ "native": {
+ "bwg": {
+ "official": "Republic of Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "eng": {
+ "official": "Republic of Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "kck": {
+ "official": "Republic of Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "khi": {
+ "official": "Republic of Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "ndc": {
+ "official": "Republic of Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "nde": {
+ "official": "Republic of Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "nya": {
+ "official": "Republic of Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "sna": {
+ "official": "Republic of Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "sot": {
+ "official": "Republic of Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "toi": {
+ "official": "Republic of Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "tsn": {
+ "official": "Republic of Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "tso": {
+ "official": "Republic of Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "ven": {
+ "official": "Republic of Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "xho": {
+ "official": "Republic of Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "zib": {
+ "official": "Republic of Zimbabwe",
+ "common": "Zimbabwe"
+ }
+ }
+ },
+ "tld": [
+ ".zw"
+ ],
+ "cca2": "ZW",
+ "ccn3": "716",
+ "cca3": "ZWE",
+ "cioc": "ZIM",
+ "independent": true,
+ "status": "officially-assigned",
+ "unMember": true,
+ "unRegionalGroup": "African Group",
+ "currencies": {
+ "BWP": {
+ "name": "Botswana pula",
+ "symbol": "P"
+ },
+ "CNY": {
+ "name": "Chinese yuan",
+ "symbol": "\u00a5"
+ },
+ "EUR": {
+ "name": "Euro",
+ "symbol": "\u20ac"
+ },
+ "GBP": {
+ "name": "British pound",
+ "symbol": "\u00a3"
+ },
+ "INR": {
+ "name": "Indian rupee",
+ "symbol": "\u20b9"
+ },
+ "JPY": {
+ "name": "Japanese yen",
+ "symbol": "\u00a5"
+ },
+ "USD": {
+ "name": "United States dollar",
+ "symbol": "$"
+ },
+ "ZAR": {
+ "name": "South African rand",
+ "symbol": "Rs"
+ },
+ "ZWB": {
+ "name": "Zimbabwean bonds",
+ "symbol": "$"
+ }
+ },
+ "idd": {
+ "root": "+2",
+ "suffixes": [
+ "63"
+ ]
+ },
+ "capital": [
+ "Harare"
+ ],
+ "altSpellings": [
+ "ZW",
+ "Republic of Zimbabwe"
+ ],
+ "region": "Africa",
+ "subregion": "Eastern Africa",
+ "languages": {
+ "bwg": "Chibarwe",
+ "eng": "English",
+ "kck": "Kalanga",
+ "khi": "Khoisan",
+ "ndc": "Ndau",
+ "nde": "Northern Ndebele",
+ "nya": "Chewa",
+ "sna": "Shona",
+ "sot": "Sotho",
+ "toi": "Tonga",
+ "tsn": "Tswana",
+ "tso": "Tsonga",
+ "ven": "Venda",
+ "xho": "Xhosa",
+ "zib": "Zimbabwean Sign Language"
+ },
+ "translations": {
+ "ara": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0632\u064a\u0645\u0628\u0627\u0628\u0648\u064a",
+ "common": "\u0632\u064a\u0645\u0628\u0627\u0628\u0648\u064a"
+ },
+ "bre": {
+ "official": "Republik Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "ces": {
+ "official": "Zimbabwsk\u00e1 republika",
+ "common": "Zimbabwe"
+ },
+ "deu": {
+ "official": "Republik Simbabwe",
+ "common": "Simbabwe"
+ },
+ "est": {
+ "official": "Zimbabwe Vabariik",
+ "common": "Zimbabwe"
+ },
+ "fin": {
+ "official": "Zimbabwen tasavalta",
+ "common": "Zimbabwe"
+ },
+ "fra": {
+ "official": "R\u00e9publique du Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "hrv": {
+ "official": "Republika Zimbabve",
+ "common": "Zimbabve"
+ },
+ "hun": {
+ "official": "Zimbabwei K\u00f6zt\u00e1rsas\u00e1g",
+ "common": "Zimbabwe"
+ },
+ "ita": {
+ "official": "Repubblica dello Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "jpn": {
+ "official": "\u30b8\u30f3\u30d0\u30d6\u30a8\u5171\u548c\u56fd",
+ "common": "\u30b8\u30f3\u30d0\u30d6\u30a8"
+ },
+ "kor": {
+ "official": "\uc9d0\ubc14\ube0c\uc6e8 \uacf5\ud654\uad6d",
+ "common": "\uc9d0\ubc14\ube0c\uc6e8"
+ },
+ "nld": {
+ "official": "Republiek Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "per": {
+ "official": "\u062c\u0645\u0647\u0648\u0631\u06cc \u0632\u06cc\u0645\u0628\u0627\u0628\u0648\u0647",
+ "common": "\u0632\u06cc\u0645\u0628\u0627\u0628\u0648\u0647"
+ },
+ "pol": {
+ "official": "Republika Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "por": {
+ "official": "Rep\u00fablica do Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "rus": {
+ "official": "\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0417\u0438\u043c\u0431\u0430\u0431\u0432\u0435",
+ "common": "\u0417\u0438\u043c\u0431\u0430\u0431\u0432\u0435"
+ },
+ "slk": {
+ "official": "Zimbabwianska republika",
+ "common": "Zimbabwe"
+ },
+ "spa": {
+ "official": "Rep\u00fablica de Zimbabue",
+ "common": "Zimbabue"
+ },
+ "srp": {
+ "official": "Republika Zimbabve",
+ "common": "Zimbabve"
+ },
+ "swe": {
+ "official": "Republiken Zimbabwe",
+ "common": "Zimbabwe"
+ },
+ "tur": {
+ "official": "Zimbabve Cumhuriyeti",
+ "common": "Zimbabve"
+ },
+ "urd": {
+ "official": "\u062c\u0645\u06c1\u0648\u0631\u06cc\u06c1 \u0632\u0645\u0628\u0627\u0628\u0648\u06d2",
+ "common": "\u0632\u0645\u0628\u0627\u0628\u0648\u06d2"
+ },
+ "zho": {
+ "official": "\u6d25\u5df4\u5e03\u97e6\u5171\u548c\u56fd",
+ "common": "\u6d25\u5df4\u5e03\u97e6"
+ }
+ },
+ "latlng": [
+ -20,
+ 30
+ ],
+ "landlocked": true,
+ "borders": [
+ "BWA",
+ "MOZ",
+ "ZAF",
+ "ZMB"
+ ],
+ "area": 390757,
+ "flag": "\ud83c\uddff\ud83c\uddfc",
+ "demonyms": {
+ "eng": {
+ "f": "Zimbabwean",
+ "m": "Zimbabwean"
+ },
+ "fra": {
+ "f": "Zimbabw\u00e9enne",
+ "m": "Zimbabw\u00e9en"
+ }
+ }
+ }
+]
diff --git a/app/revendamais/database/factories/SupplierFactory.php b/app/revendamais/database/factories/SupplierFactory.php
new file mode 100644
index 00000000..32995a9b
--- /dev/null
+++ b/app/revendamais/database/factories/SupplierFactory.php
@@ -0,0 +1,31 @@
+
+ */
+class SupplierFactory extends Factory
+{
+ protected $model = Supplier::class;
+ /**
+ * Define the model's default state.
+ *
+ * @return array
+ */
+ public function definition(): array
+ {
+ $type = fake()->randomElement(['CPF', 'CNPJ']);
+
+ return [
+ 'name' => fake()->company,
+ 'type' => $type,
+ 'email' => fake()->unique()->safeEmail,
+ 'document' => ($type === 'CPF') ? fake('pt_BR')->cpf(false) : fake('pt_BR')->cnpj(false) ,
+ 'phone' => fake()->numerify('###########'),
+ ];
+ }
+}
diff --git a/app/revendamais/database/factories/UserFactory.php b/app/revendamais/database/factories/UserFactory.php
new file mode 100644
index 00000000..e0c9536b
--- /dev/null
+++ b/app/revendamais/database/factories/UserFactory.php
@@ -0,0 +1,44 @@
+
+ */
+class UserFactory extends Factory
+{
+ /**
+ * The current password being used by the factory.
+ */
+ protected static ?string $password;
+
+ /**
+ * Define the model's default state.
+ *
+ * @return array
+ */
+ public function definition(): array
+ {
+ return [
+ 'name' => fake()->name(),
+ 'email' => fake()->unique()->safeEmail(),
+ 'email_verified_at' => now(),
+ 'password' => static::$password ??= Hash::make('password'),
+ 'remember_token' => Str::random(10),
+ ];
+ }
+
+ /**
+ * Indicate that the model's email address should be unverified.
+ */
+ public function unverified(): static
+ {
+ return $this->state(fn (array $attributes) => [
+ 'email_verified_at' => null,
+ ]);
+ }
+}
diff --git a/app/revendamais/database/migrations/0001_01_01_000000_create_users_table.php b/app/revendamais/database/migrations/0001_01_01_000000_create_users_table.php
new file mode 100644
index 00000000..f66b4d21
--- /dev/null
+++ b/app/revendamais/database/migrations/0001_01_01_000000_create_users_table.php
@@ -0,0 +1,48 @@
+id();
+ $table->string('name');
+ $table->string('email')->unique();
+ $table->timestamp('email_verified_at')->nullable();
+ $table->string('password');
+ $table->rememberToken();
+ $table->timestamps();
+ });
+
+ Schema::create('password_reset_tokens', function (Blueprint $table) {
+ $table->string('email')->primary();
+ $table->string('token');
+ $table->timestamp('created_at')->nullable();
+ });
+
+ Schema::create('sessions', function (Blueprint $table) {
+ $table->string('id')->primary();
+ $table->foreignId('user_id')->nullable()->index();
+ $table->string('ip_address', 45)->nullable();
+ $table->text('user_agent')->nullable();
+ $table->longText('payload');
+ $table->integer('last_activity')->index();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ */
+ public function down(): void
+ {
+ Schema::dropIfExists('users');
+ Schema::dropIfExists('password_reset_tokens');
+ Schema::dropIfExists('sessions');
+ }
+};
diff --git a/app/revendamais/database/migrations/0001_01_01_000001_create_cache_table.php b/app/revendamais/database/migrations/0001_01_01_000001_create_cache_table.php
new file mode 100644
index 00000000..66cdb489
--- /dev/null
+++ b/app/revendamais/database/migrations/0001_01_01_000001_create_cache_table.php
@@ -0,0 +1,34 @@
+string('key')->primary();
+ $table->mediumText('value');
+ $table->integer('expiration');
+ });
+
+ Schema::create('cache_locks', function (Blueprint $table) {
+ $table->string('key')->primary();
+ $table->string('owner');
+ $table->integer('expiration');
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ */
+ public function down(): void
+ {
+ Schema::dropIfExists('cache');
+ Schema::dropIfExists('cache_locks');
+ }
+};
diff --git a/app/revendamais/database/migrations/0001_01_01_000002_create_jobs_table.php b/app/revendamais/database/migrations/0001_01_01_000002_create_jobs_table.php
new file mode 100644
index 00000000..ccf3ec16
--- /dev/null
+++ b/app/revendamais/database/migrations/0001_01_01_000002_create_jobs_table.php
@@ -0,0 +1,56 @@
+id();
+ $table->string('queue')->index();
+ $table->longText('payload');
+ $table->unsignedTinyInteger('attempts');
+ $table->unsignedInteger('reserved_at')->nullable();
+ $table->unsignedInteger('available_at');
+ $table->unsignedInteger('created_at');
+ });
+
+ Schema::create('job_batches', function (Blueprint $table) {
+ $table->string('id')->primary();
+ $table->string('name');
+ $table->integer('total_jobs');
+ $table->integer('pending_jobs');
+ $table->integer('failed_jobs');
+ $table->longText('failed_job_ids');
+ $table->mediumText('options')->nullable();
+ $table->integer('cancelled_at')->nullable();
+ $table->integer('created_at');
+ $table->integer('finished_at')->nullable();
+ });
+
+ Schema::create('failed_jobs', function (Blueprint $table) {
+ $table->id();
+ $table->string('uuid')->unique();
+ $table->text('connection');
+ $table->text('queue');
+ $table->longText('payload');
+ $table->longText('exception');
+ $table->timestamp('failed_at')->useCurrent();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ */
+ public function down(): void
+ {
+ Schema::dropIfExists('jobs');
+ Schema::dropIfExists('job_batches');
+ Schema::dropIfExists('failed_jobs');
+ }
+};
diff --git a/app/revendamais/database/migrations/2025_07_03_095324_create_suppliers_table.php b/app/revendamais/database/migrations/2025_07_03_095324_create_suppliers_table.php
new file mode 100644
index 00000000..d89e11d8
--- /dev/null
+++ b/app/revendamais/database/migrations/2025_07_03_095324_create_suppliers_table.php
@@ -0,0 +1,32 @@
+id();
+ $table->string('name');
+ $table->enum('type', ['CPF','CNPJ']);
+ $table->string('document')->unique(); // CNPJ ou CPF
+ $table->string('email')->unique();
+ $table->string('phone');
+ $table->timestamps();
+ $table->softDeletes();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ */
+ public function down(): void
+ {
+ Schema::dropIfExists('suppliers');
+ }
+};
diff --git a/app/revendamais/database/migrations/2025_07_03_225500_create_addresses_table.php b/app/revendamais/database/migrations/2025_07_03_225500_create_addresses_table.php
new file mode 100644
index 00000000..dce1b402
--- /dev/null
+++ b/app/revendamais/database/migrations/2025_07_03_225500_create_addresses_table.php
@@ -0,0 +1,69 @@
+table = config('lecturize.addresses.table', 'addresses');
+ }
+
+ /**
+ * Run the migrations.
+ *
+ * @return void
+ */
+ public function up()
+ {
+ Schema::create($this->table, function (Blueprint $table) {
+ $table->increments('id');
+
+ $table->string('street', 60)->nullable();
+ $table->string('city', 60)->nullable();
+ $table->string('state', 60)->nullable();
+ $table->string('post_code', 10)->nullable();
+
+ $table->integer('country_id')->nullable()->unsigned()->index();
+
+ $table->string('note')->nullable();
+
+ $table->float('lat', 10, 6)->nullable();
+ $table->float('lng', 10, 6)->nullable();
+
+ $table->nullableMorphs('addressable');
+
+ foreach (config('lecturize.addresses.flags', ['public', 'primary', 'billing', 'shipping']) as $flag) {
+ $table->boolean('is_' . $flag)->default(false)->index();
+ }
+
+ $table->timestamps();
+ $table->softDeletes();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::dropIfExists($this->table);
+ }
+}
diff --git a/app/revendamais/database/migrations/2025_07_03_225501_create_contacts_table.php b/app/revendamais/database/migrations/2025_07_03_225501_create_contacts_table.php
new file mode 100644
index 00000000..5492cdad
--- /dev/null
+++ b/app/revendamais/database/migrations/2025_07_03_225501_create_contacts_table.php
@@ -0,0 +1,80 @@
+table = config('lecturize.contacts.table', 'contacts');
+ }
+
+ /**
+ * Run the migrations.
+ *
+ * @return void
+ */
+ public function up()
+ {
+ Schema::create($this->table, function (Blueprint $table) {
+ $table->increments('id');
+
+ $table->string('type', 20)->default('default');
+
+ $table->string('first_name', 20)->nullable();
+ $table->string('middle_name', 20)->nullable();
+ $table->string('last_name', 20)->nullable();
+
+ $table->string('company', 60)->nullable();
+ $table->string('position', 60)->nullable();
+
+ $table->string('phone', 32)->nullable();
+ $table->string('mobile', 32)->nullable();
+ $table->string('fax', 32)->nullable();
+ $table->string('email', 60)->nullable();
+ $table->string('website', 100)->nullable();
+
+ $table->integer('address_id')
+ ->nullable()
+ ->unsigned()
+ ->references('id')
+ ->on(config('lecturize.addresses.table', 'addresses'));
+
+ $table->nullableMorphs('contactable');
+
+ foreach (config('lecturize.contacts.flags', ['public', 'primary']) as $flag) {
+ $table->boolean('is_' . $flag)->default(false)->index();
+ }
+
+ $table->longText('notes')->nullable();
+
+ $table->timestamps();
+ $table->softDeletes();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::dropIfExists($this->table);
+ }
+}
diff --git a/app/revendamais/database/migrations/2025_07_03_225502_add_street_extra_to_addresses_table.php b/app/revendamais/database/migrations/2025_07_03_225502_add_street_extra_to_addresses_table.php
new file mode 100644
index 00000000..516d18f1
--- /dev/null
+++ b/app/revendamais/database/migrations/2025_07_03_225502_add_street_extra_to_addresses_table.php
@@ -0,0 +1,50 @@
+table = config('lecturize.addresses.table', 'addresses');
+ }
+
+ /**
+ * Run the migrations.
+ *
+ * @return void
+ */
+ public function up()
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->string('street_extra', 60)->nullable()->after('street');
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->dropColumn('street_extra');
+ });
+ }
+}
diff --git a/app/revendamais/database/migrations/2025_07_03_225503_add_gender_to_contacts_table.php b/app/revendamais/database/migrations/2025_07_03_225503_add_gender_to_contacts_table.php
new file mode 100644
index 00000000..6c0a5ec0
--- /dev/null
+++ b/app/revendamais/database/migrations/2025_07_03_225503_add_gender_to_contacts_table.php
@@ -0,0 +1,50 @@
+table = config('lecturize.contacts.table', 'contacts');
+ }
+
+ /**
+ * Run the migrations.
+ *
+ * @return void
+ */
+ public function up()
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->string('gender', 1)->nullable()->after('type');
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->dropColumn('gender');
+ });
+ }
+}
diff --git a/app/revendamais/database/migrations/2025_07_03_225504_add_title_to_contacts_table.php b/app/revendamais/database/migrations/2025_07_03_225504_add_title_to_contacts_table.php
new file mode 100644
index 00000000..141f7396
--- /dev/null
+++ b/app/revendamais/database/migrations/2025_07_03_225504_add_title_to_contacts_table.php
@@ -0,0 +1,50 @@
+table = config('lecturize.contacts.table', 'contacts');
+ }
+
+ /**
+ * Run the migrations.
+ *
+ * @return void
+ */
+ public function up()
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->string('title', 20)->nullable()->before('first_name');
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->dropColumn('title');
+ });
+ }
+}
diff --git a/app/revendamais/database/migrations/2025_07_03_225505_add_properties_to_addresses_table.php b/app/revendamais/database/migrations/2025_07_03_225505_add_properties_to_addresses_table.php
new file mode 100644
index 00000000..d8017b46
--- /dev/null
+++ b/app/revendamais/database/migrations/2025_07_03_225505_add_properties_to_addresses_table.php
@@ -0,0 +1,52 @@
+table = config('lecturize.addresses.table', 'addresses');
+ }
+
+ /**
+ * Run the migrations.
+ *
+ * @return void
+ */
+ public function up()
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->renameColumn('note', 'notes');
+ $table->text('properties')->nullable()->after('lng');
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->dropColumn('properties');
+ $table->renameColumn('notes', 'note');
+ });
+ }
+}
diff --git a/app/revendamais/database/migrations/2025_07_03_225506_add_properties_to_contacts_table.php b/app/revendamais/database/migrations/2025_07_03_225506_add_properties_to_contacts_table.php
new file mode 100644
index 00000000..34fe3cf3
--- /dev/null
+++ b/app/revendamais/database/migrations/2025_07_03_225506_add_properties_to_contacts_table.php
@@ -0,0 +1,52 @@
+table = config('lecturize.contacts.table', 'contacts');
+ }
+
+ /**
+ * Run the migrations.
+ *
+ * @return void
+ */
+ public function up()
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->string('extra')->nullable()->after('company');
+ $table->text('properties')->nullable()->after('notes');
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->dropColumn('properties');
+ $table->dropColumn('extra');
+ });
+ }
+}
diff --git a/app/revendamais/database/migrations/2025_07_03_225507_add_user_id_to_addresses_table.php b/app/revendamais/database/migrations/2025_07_03_225507_add_user_id_to_addresses_table.php
new file mode 100644
index 00000000..5f4239b5
--- /dev/null
+++ b/app/revendamais/database/migrations/2025_07_03_225507_add_user_id_to_addresses_table.php
@@ -0,0 +1,57 @@
+table = config('lecturize.addresses.table', 'addresses');
+ $this->table_users = config('lecturize.tables.users.main', 'users');
+ }
+
+ /**
+ * Run the migrations.
+ *
+ * @return void
+ */
+ public function up()
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->integer('user_id')->nullable()->unsigned()->index()->after('addressable_id');
+ $table->foreign('user_id')
+ ->references('id')
+ ->on($this->table_users);
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->dropForeign(['user_id']);
+ $table->dropColumn('user_id');
+ });
+ }
+}
diff --git a/app/revendamais/database/migrations/2025_07_03_225508_add_uuid_to_addresses_and_contacts_table.php b/app/revendamais/database/migrations/2025_07_03_225508_add_uuid_to_addresses_and_contacts_table.php
new file mode 100644
index 00000000..a9da9dc9
--- /dev/null
+++ b/app/revendamais/database/migrations/2025_07_03_225508_add_uuid_to_addresses_and_contacts_table.php
@@ -0,0 +1,61 @@
+table_addresses = config('lecturize.addresses.table', 'addresses');
+ $this->table_contacts = config('lecturize.contacts.table', 'contacts');
+ }
+
+ /**
+ * Run the migrations.
+ *
+ * @return void
+ */
+ public function up()
+ {
+ Schema::table($this->table_addresses, function (Blueprint $table) {
+ $table->uuid('uuid')->nullable()->after('id');
+ });
+
+ Schema::table($this->table_contacts, function (Blueprint $table) {
+ $table->uuid('uuid')->nullable()->after('id');
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::table($this->table_addresses, function (Blueprint $table) {
+ $table->dropColumn('uuid');
+ });
+
+ Schema::table($this->table_contacts, function (Blueprint $table) {
+ $table->dropColumn('uuid');
+ });
+ }
+}
diff --git a/app/revendamais/database/migrations/2025_07_03_225509_add_vat_id_to_contacts_table.php b/app/revendamais/database/migrations/2025_07_03_225509_add_vat_id_to_contacts_table.php
new file mode 100644
index 00000000..935a8e31
--- /dev/null
+++ b/app/revendamais/database/migrations/2025_07_03_225509_add_vat_id_to_contacts_table.php
@@ -0,0 +1,50 @@
+table = config('lecturize.contacts.table', 'contacts');
+ }
+
+ /**
+ * Run the migrations.
+ *
+ * @return void
+ */
+ public function up()
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->string('vat_id')->nullable()->after('website');
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->dropColumn('vat_id');
+ });
+ }
+}
diff --git a/app/revendamais/database/migrations/2025_07_03_225510_add_email_invoice_to_contacts_table.php b/app/revendamais/database/migrations/2025_07_03_225510_add_email_invoice_to_contacts_table.php
new file mode 100644
index 00000000..9b9287d9
--- /dev/null
+++ b/app/revendamais/database/migrations/2025_07_03_225510_add_email_invoice_to_contacts_table.php
@@ -0,0 +1,50 @@
+table = config('lecturize.contacts.table', 'contacts');
+ }
+
+ /**
+ * Run the migrations.
+ *
+ * @return void
+ */
+ public function up()
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->string('email_invoice')->nullable()->after('email');
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->dropColumn('email_invoice');
+ });
+ }
+}
diff --git a/app/revendamais/database/migrations/2025_07_03_225511_add_contact_fields_to_addresses_table.php b/app/revendamais/database/migrations/2025_07_03_225511_add_contact_fields_to_addresses_table.php
new file mode 100644
index 00000000..ea178d31
--- /dev/null
+++ b/app/revendamais/database/migrations/2025_07_03_225511_add_contact_fields_to_addresses_table.php
@@ -0,0 +1,45 @@
+table = config('lecturize.addresses.table', 'addresses');
+ }
+
+ public function up(): void
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->string('gender', 1)->nullable()->after('uuid');
+ $table->string('title_before')->nullable()->after('gender');
+ $table->string('title_after')->nullable()->after('title_before');
+
+ $table->string('first_name')->nullable()->after('title_after');
+ $table->string('middle_name')->nullable()->after('first_name');
+ $table->string('last_name')->nullable()->after('middle_name');
+
+ $table->string('company')->nullable()->after('title_after');
+ $table->string('extra')->nullable()->after('company');
+
+ $table->string('vat_id')->nullable()->after('country_id');
+ $table->string('eori_id')->nullable()->after('vat_id');
+ $table->string('contact_phone', 32)->nullable()->after('eori_id');
+ $table->string('contact_email')->nullable()->after('contact_phone');
+ $table->string('billing_email')->nullable()->after('contact_email');
+
+ $table->string('instructions')->nullable()->after('billing_email');
+ });
+ }
+
+ public function down(): void
+ {
+ Schema::table($this->table, function (Blueprint $table) {
+ $table->dropColumn('gender', 'first_name', 'middle_name', 'last_name', 'title_before', 'title_after', 'company', 'extra', 'vat_id', 'eori_id', 'instructions', 'contact_phone', 'contact_email', 'billing_email');
+ });
+ }
+};
diff --git a/app/revendamais/database/migrations/2025_07_03_230627_create_personal_access_tokens_table.php b/app/revendamais/database/migrations/2025_07_03_230627_create_personal_access_tokens_table.php
new file mode 100644
index 00000000..668cd962
--- /dev/null
+++ b/app/revendamais/database/migrations/2025_07_03_230627_create_personal_access_tokens_table.php
@@ -0,0 +1,32 @@
+id();
+ $table->morphs('tokenable');
+ $table->string('name');
+ $table->string('token', 64)->unique();
+ $table->text('abilities')->nullable();
+ $table->timestamp('last_used_at')->nullable();
+ $table->timestamp('expires_at')->nullable();
+ $table->timestamps();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ */
+ public function down(): void
+ {
+ Schema::dropIfExists('personal_access_tokens');
+ }
+};
diff --git a/app/revendamais/database/migrations/2025_07_04_022642_create_countries_table.php b/app/revendamais/database/migrations/2025_07_04_022642_create_countries_table.php
new file mode 100644
index 00000000..2c90a70e
--- /dev/null
+++ b/app/revendamais/database/migrations/2025_07_04_022642_create_countries_table.php
@@ -0,0 +1,35 @@
+id();
+ $table->string('code', 3)->unique(); // ISO 3166-1 alpha-3
+ $table->string('name'); // Country name
+ $table->string('iso_3166_2', 2)->nullable(); // ISO 3166-1 alpha-2
+ $table->string('iso_3166_3', 3)->nullable(); // ISO 3166-1 alpha-3 (again)
+ $table->string('numeric_code', 3)->nullable(); // ISO numeric
+ $table->string('tld', 5)->nullable(); // Top-level domain
+ $table->string('phonecode', 10)->nullable();
+ $table->string('capital', 100)->nullable();
+ $table->string('currency', 10)->nullable();
+ $table->string('currency_name', 50)->nullable();
+ $table->string('currency_symbol', 10)->nullable();
+ $table->string('region', 100)->nullable();
+ $table->string('subregion', 100)->nullable();
+ $table->string('emoji', 5)->nullable();
+ $table->boolean('active')->default(true);
+ $table->timestamps();
+ });
+ }
+
+ public function down(): void
+ {
+ Schema::dropIfExists('countries');
+ }
+};
diff --git a/app/revendamais/database/seeders/CountriesTableSeeder.php b/app/revendamais/database/seeders/CountriesTableSeeder.php
new file mode 100644
index 00000000..06959f65
--- /dev/null
+++ b/app/revendamais/database/seeders/CountriesTableSeeder.php
@@ -0,0 +1,36 @@
+insert([
+ 'code' => $country['cca3'] ?? null,
+ 'name' => $country['name']['common'] ?? null,
+ 'iso_3166_2' => $country['cca2'] ?? null,
+ 'iso_3166_3' => $country['cca3'] ?? null,
+ 'numeric_code' => $country['ccn3'] ?? null,
+ 'tld' => $country['tld'][0] ?? null,
+ 'phonecode' => isset($country['idd']['root'], $country['idd']['suffixes'][0])
+ ? $country['idd']['root'] . $country['idd']['suffixes'][0]
+ : null,
+ 'capital' => $country['capital'][0] ?? null,
+ 'currency' => \array_keys($country['currencies'] ?? [])[0] ?? null,
+ 'currency_name' => isset($country['currencies']) ? collect($country['currencies'])->first()['name'] ?? null : null,
+ 'currency_symbol' => isset($country['currencies']) ? collect($country['currencies'])->first()['symbol'] ?? null : null,
+ 'region' => $country['region'] ?? null,
+ 'subregion' => $country['subregion'] ?? null,
+ 'emoji' => $country['flag'] ?? null,
+ 'active' => true,
+ ]);
+ }
+ }
+}
diff --git a/app/revendamais/database/seeders/DatabaseSeeder.php b/app/revendamais/database/seeders/DatabaseSeeder.php
new file mode 100644
index 00000000..09ebe70b
--- /dev/null
+++ b/app/revendamais/database/seeders/DatabaseSeeder.php
@@ -0,0 +1,24 @@
+create();
+
+ User::factory()->create([
+ 'name' => 'Test User',
+ 'email' => 'test@example.com',
+ ]);
+ $this->call(CountriesTableSeeder::class);
+ }
+}
diff --git a/app/revendamais/package.json b/app/revendamais/package.json
new file mode 100644
index 00000000..ef47e425
--- /dev/null
+++ b/app/revendamais/package.json
@@ -0,0 +1,17 @@
+{
+ "$schema": "https://json.schemastore.org/package.json",
+ "private": true,
+ "type": "module",
+ "scripts": {
+ "build": "vite build",
+ "dev": "vite"
+ },
+ "devDependencies": {
+ "@tailwindcss/vite": "^4.0.0",
+ "axios": "^1.8.2",
+ "concurrently": "^9.0.1",
+ "laravel-vite-plugin": "^1.2.0",
+ "tailwindcss": "^4.0.0",
+ "vite": "^6.2.4"
+ }
+}
diff --git a/app/revendamais/phpunit.xml b/app/revendamais/phpunit.xml
new file mode 100644
index 00000000..861cfa30
--- /dev/null
+++ b/app/revendamais/phpunit.xml
@@ -0,0 +1,32 @@
+
+
+
+
+ tests/Unit
+
+
+ tests/Feature
+
+
+
+
+ app
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/revendamais/public/.htaccess b/app/revendamais/public/.htaccess
new file mode 100644
index 00000000..b574a597
--- /dev/null
+++ b/app/revendamais/public/.htaccess
@@ -0,0 +1,25 @@
+
+
+ Options -MultiViews -Indexes
+
+
+ RewriteEngine On
+
+ # Handle Authorization Header
+ RewriteCond %{HTTP:Authorization} .
+ RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
+
+ # Handle X-XSRF-Token Header
+ RewriteCond %{HTTP:x-xsrf-token} .
+ RewriteRule .* - [E=HTTP_X_XSRF_TOKEN:%{HTTP:X-XSRF-Token}]
+
+ # Redirect Trailing Slashes If Not A Folder...
+ RewriteCond %{REQUEST_FILENAME} !-d
+ RewriteCond %{REQUEST_URI} (.+)/$
+ RewriteRule ^ %1 [L,R=301]
+
+ # Send Requests To Front Controller...
+ RewriteCond %{REQUEST_FILENAME} !-d
+ RewriteCond %{REQUEST_FILENAME} !-f
+ RewriteRule ^ index.php [L]
+
diff --git a/app/revendamais/public/favicon.ico b/app/revendamais/public/favicon.ico
new file mode 100644
index 00000000..e69de29b
diff --git a/app/revendamais/public/index.php b/app/revendamais/public/index.php
new file mode 100644
index 00000000..ee8f07e9
--- /dev/null
+++ b/app/revendamais/public/index.php
@@ -0,0 +1,20 @@
+handleRequest(Request::capture());
diff --git a/app/revendamais/public/robots.txt b/app/revendamais/public/robots.txt
new file mode 100644
index 00000000..eb053628
--- /dev/null
+++ b/app/revendamais/public/robots.txt
@@ -0,0 +1,2 @@
+User-agent: *
+Disallow:
diff --git a/app/revendamais/resources/css/app.css b/app/revendamais/resources/css/app.css
new file mode 100644
index 00000000..3e6abeab
--- /dev/null
+++ b/app/revendamais/resources/css/app.css
@@ -0,0 +1,11 @@
+@import 'tailwindcss';
+
+@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
+@source '../../storage/framework/views/*.php';
+@source '../**/*.blade.php';
+@source '../**/*.js';
+
+@theme {
+ --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
+ 'Segoe UI Symbol', 'Noto Color Emoji';
+}
diff --git a/app/revendamais/resources/js/app.js b/app/revendamais/resources/js/app.js
new file mode 100644
index 00000000..e59d6a0a
--- /dev/null
+++ b/app/revendamais/resources/js/app.js
@@ -0,0 +1 @@
+import './bootstrap';
diff --git a/app/revendamais/resources/js/bootstrap.js b/app/revendamais/resources/js/bootstrap.js
new file mode 100644
index 00000000..5f1390b0
--- /dev/null
+++ b/app/revendamais/resources/js/bootstrap.js
@@ -0,0 +1,4 @@
+import axios from 'axios';
+window.axios = axios;
+
+window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
diff --git a/app/revendamais/resources/views/errors/401.blade.php b/app/revendamais/resources/views/errors/401.blade.php
new file mode 100644
index 00000000..5c586db9
--- /dev/null
+++ b/app/revendamais/resources/views/errors/401.blade.php
@@ -0,0 +1,5 @@
+@extends('errors::minimal')
+
+@section('title', __('Unauthorized'))
+@section('code', '401')
+@section('message', __('Unauthorized'))
diff --git a/app/revendamais/resources/views/errors/402.blade.php b/app/revendamais/resources/views/errors/402.blade.php
new file mode 100644
index 00000000..3bc23efd
--- /dev/null
+++ b/app/revendamais/resources/views/errors/402.blade.php
@@ -0,0 +1,5 @@
+@extends('errors::minimal')
+
+@section('title', __('Payment Required'))
+@section('code', '402')
+@section('message', __('Payment Required'))
diff --git a/app/revendamais/resources/views/errors/403.blade.php b/app/revendamais/resources/views/errors/403.blade.php
new file mode 100644
index 00000000..a5506f01
--- /dev/null
+++ b/app/revendamais/resources/views/errors/403.blade.php
@@ -0,0 +1,5 @@
+@extends('errors::minimal')
+
+@section('title', __('Forbidden'))
+@section('code', '403')
+@section('message', __($exception->getMessage() ?: 'Forbidden'))
diff --git a/app/revendamais/resources/views/errors/404.blade.php b/app/revendamais/resources/views/errors/404.blade.php
new file mode 100644
index 00000000..7549540d
--- /dev/null
+++ b/app/revendamais/resources/views/errors/404.blade.php
@@ -0,0 +1,5 @@
+@extends('errors::minimal')
+
+@section('title', __('Not Found'))
+@section('code', '404')
+@section('message', __('Not Found'))
diff --git a/app/revendamais/resources/views/errors/419.blade.php b/app/revendamais/resources/views/errors/419.blade.php
new file mode 100644
index 00000000..c09216e2
--- /dev/null
+++ b/app/revendamais/resources/views/errors/419.blade.php
@@ -0,0 +1,5 @@
+@extends('errors::minimal')
+
+@section('title', __('Page Expired'))
+@section('code', '419')
+@section('message', __('Page Expired'))
diff --git a/app/revendamais/resources/views/errors/429.blade.php b/app/revendamais/resources/views/errors/429.blade.php
new file mode 100644
index 00000000..f01b07b8
--- /dev/null
+++ b/app/revendamais/resources/views/errors/429.blade.php
@@ -0,0 +1,5 @@
+@extends('errors::minimal')
+
+@section('title', __('Too Many Requests'))
+@section('code', '429')
+@section('message', __('Too Many Requests'))
diff --git a/app/revendamais/resources/views/errors/500.blade.php b/app/revendamais/resources/views/errors/500.blade.php
new file mode 100644
index 00000000..d9e95d9b
--- /dev/null
+++ b/app/revendamais/resources/views/errors/500.blade.php
@@ -0,0 +1,5 @@
+@extends('errors::minimal')
+
+@section('title', __('Server Error'))
+@section('code', '500')
+@section('message', __('Server Error'))
diff --git a/app/revendamais/resources/views/errors/503.blade.php b/app/revendamais/resources/views/errors/503.blade.php
new file mode 100644
index 00000000..c5a9dde1
--- /dev/null
+++ b/app/revendamais/resources/views/errors/503.blade.php
@@ -0,0 +1,5 @@
+@extends('errors::minimal')
+
+@section('title', __('Service Unavailable'))
+@section('code', '503')
+@section('message', __('Service Unavailable'))
diff --git a/app/revendamais/resources/views/errors/layout.blade.php b/app/revendamais/resources/views/errors/layout.blade.php
new file mode 100644
index 00000000..019c2cde
--- /dev/null
+++ b/app/revendamais/resources/views/errors/layout.blade.php
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+ @yield('title')
+
+
+
+
+
+
+
+
+ @yield('message')
+
+
+
+
+
diff --git a/app/revendamais/resources/views/errors/minimal.blade.php b/app/revendamais/resources/views/errors/minimal.blade.php
new file mode 100644
index 00000000..db69f254
--- /dev/null
+++ b/app/revendamais/resources/views/errors/minimal.blade.php
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+ @yield('title')
+
+
+
+
+
+
+
+
+
+
+ @yield('code')
+
+
+
+ @yield('message')
+
+
+
+
+
+
diff --git a/app/revendamais/resources/views/vendor/mail/text/button.blade.php b/app/revendamais/resources/views/vendor/mail/text/button.blade.php
new file mode 100644
index 00000000..97444ebd
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/mail/text/button.blade.php
@@ -0,0 +1 @@
+{{ $slot }}: {{ $url }}
diff --git a/app/revendamais/resources/views/vendor/mail/text/footer.blade.php b/app/revendamais/resources/views/vendor/mail/text/footer.blade.php
new file mode 100644
index 00000000..3338f620
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/mail/text/footer.blade.php
@@ -0,0 +1 @@
+{{ $slot }}
diff --git a/app/revendamais/resources/views/vendor/mail/text/header.blade.php b/app/revendamais/resources/views/vendor/mail/text/header.blade.php
new file mode 100644
index 00000000..97444ebd
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/mail/text/header.blade.php
@@ -0,0 +1 @@
+{{ $slot }}: {{ $url }}
diff --git a/app/revendamais/resources/views/vendor/mail/text/layout.blade.php b/app/revendamais/resources/views/vendor/mail/text/layout.blade.php
new file mode 100644
index 00000000..ec58e83c
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/mail/text/layout.blade.php
@@ -0,0 +1,9 @@
+{!! strip_tags($header ?? '') !!}
+
+{!! strip_tags($slot) !!}
+@isset($subcopy)
+
+{!! strip_tags($subcopy) !!}
+@endisset
+
+{!! strip_tags($footer ?? '') !!}
diff --git a/app/revendamais/resources/views/vendor/mail/text/message.blade.php b/app/revendamais/resources/views/vendor/mail/text/message.blade.php
new file mode 100644
index 00000000..80bce211
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/mail/text/message.blade.php
@@ -0,0 +1,27 @@
+
+ {{-- Header --}}
+
+
+ {{ config('app.name') }}
+
+
+
+ {{-- Body --}}
+ {{ $slot }}
+
+ {{-- Subcopy --}}
+ @isset($subcopy)
+
+
+ {{ $subcopy }}
+
+
+ @endisset
+
+ {{-- Footer --}}
+
+
+ © {{ date('Y') }} {{ config('app.name') }}. @lang('All rights reserved.')
+
+
+
diff --git a/app/revendamais/resources/views/vendor/mail/text/panel.blade.php b/app/revendamais/resources/views/vendor/mail/text/panel.blade.php
new file mode 100644
index 00000000..3338f620
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/mail/text/panel.blade.php
@@ -0,0 +1 @@
+{{ $slot }}
diff --git a/app/revendamais/resources/views/vendor/mail/text/subcopy.blade.php b/app/revendamais/resources/views/vendor/mail/text/subcopy.blade.php
new file mode 100644
index 00000000..3338f620
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/mail/text/subcopy.blade.php
@@ -0,0 +1 @@
+{{ $slot }}
diff --git a/app/revendamais/resources/views/vendor/mail/text/table.blade.php b/app/revendamais/resources/views/vendor/mail/text/table.blade.php
new file mode 100644
index 00000000..3338f620
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/mail/text/table.blade.php
@@ -0,0 +1 @@
+{{ $slot }}
diff --git a/app/revendamais/resources/views/vendor/notifications/email.blade.php b/app/revendamais/resources/views/vendor/notifications/email.blade.php
new file mode 100644
index 00000000..79c24083
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/notifications/email.blade.php
@@ -0,0 +1,58 @@
+
+{{-- Greeting --}}
+@if (! empty($greeting))
+# {{ $greeting }}
+@else
+@if ($level === 'error')
+# @lang('Whoops!')
+@else
+# @lang('Hello!')
+@endif
+@endif
+
+{{-- Intro Lines --}}
+@foreach ($introLines as $line)
+{{ $line }}
+
+@endforeach
+
+{{-- Action Button --}}
+@isset($actionText)
+ $level,
+ default => 'primary',
+ };
+?>
+
+{{ $actionText }}
+
+@endisset
+
+{{-- Outro Lines --}}
+@foreach ($outroLines as $line)
+{{ $line }}
+
+@endforeach
+
+{{-- Salutation --}}
+@if (! empty($salutation))
+{{ $salutation }}
+@else
+@lang('Regards,')
+{{ config('app.name') }}
+@endif
+
+{{-- Subcopy --}}
+@isset($actionText)
+
+@lang(
+ "If you're having trouble clicking the \":actionText\" button, copy and paste the URL below\n".
+ 'into your web browser:',
+ [
+ 'actionText' => $actionText,
+ ]
+) [{{ $displayableActionUrl }}]({{ $actionUrl }})
+
+@endisset
+
diff --git a/app/revendamais/resources/views/vendor/pagination/bootstrap-4.blade.php b/app/revendamais/resources/views/vendor/pagination/bootstrap-4.blade.php
new file mode 100644
index 00000000..63c6f56b
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/pagination/bootstrap-4.blade.php
@@ -0,0 +1,46 @@
+@if ($paginator->hasPages())
+
+
+
+@endif
diff --git a/app/revendamais/resources/views/vendor/pagination/bootstrap-5.blade.php b/app/revendamais/resources/views/vendor/pagination/bootstrap-5.blade.php
new file mode 100644
index 00000000..a1795a4d
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/pagination/bootstrap-5.blade.php
@@ -0,0 +1,88 @@
+@if ($paginator->hasPages())
+
+
+
+
+
+
+
+
+ {!! __('Showing') !!}
+ {{ $paginator->firstItem() }}
+ {!! __('to') !!}
+ {{ $paginator->lastItem() }}
+ {!! __('of') !!}
+ {{ $paginator->total() }}
+ {!! __('results') !!}
+
+
+
+
+
+
+
+
+@endif
diff --git a/app/revendamais/resources/views/vendor/pagination/default.blade.php b/app/revendamais/resources/views/vendor/pagination/default.blade.php
new file mode 100644
index 00000000..0db70b56
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/pagination/default.blade.php
@@ -0,0 +1,46 @@
+@if ($paginator->hasPages())
+
+
+
+@endif
diff --git a/app/revendamais/resources/views/vendor/pagination/semantic-ui.blade.php b/app/revendamais/resources/views/vendor/pagination/semantic-ui.blade.php
new file mode 100644
index 00000000..ef0dbb18
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/pagination/semantic-ui.blade.php
@@ -0,0 +1,36 @@
+@if ($paginator->hasPages())
+
+@endif
diff --git a/app/revendamais/resources/views/vendor/pagination/simple-bootstrap-4.blade.php b/app/revendamais/resources/views/vendor/pagination/simple-bootstrap-4.blade.php
new file mode 100644
index 00000000..4bb49174
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/pagination/simple-bootstrap-4.blade.php
@@ -0,0 +1,27 @@
+@if ($paginator->hasPages())
+
+
+
+@endif
diff --git a/app/revendamais/resources/views/vendor/pagination/simple-bootstrap-5.blade.php b/app/revendamais/resources/views/vendor/pagination/simple-bootstrap-5.blade.php
new file mode 100644
index 00000000..a89005ee
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/pagination/simple-bootstrap-5.blade.php
@@ -0,0 +1,29 @@
+@if ($paginator->hasPages())
+
+
+
+@endif
diff --git a/app/revendamais/resources/views/vendor/pagination/simple-default.blade.php b/app/revendamais/resources/views/vendor/pagination/simple-default.blade.php
new file mode 100644
index 00000000..36bdbc18
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/pagination/simple-default.blade.php
@@ -0,0 +1,19 @@
+@if ($paginator->hasPages())
+
+
+
+@endif
diff --git a/app/revendamais/resources/views/vendor/pagination/simple-tailwind.blade.php b/app/revendamais/resources/views/vendor/pagination/simple-tailwind.blade.php
new file mode 100644
index 00000000..ea02400f
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/pagination/simple-tailwind.blade.php
@@ -0,0 +1,25 @@
+@if ($paginator->hasPages())
+
+ {{-- Previous Page Link --}}
+ @if ($paginator->onFirstPage())
+
+ {!! __('pagination.previous') !!}
+
+ @else
+
+ {!! __('pagination.previous') !!}
+
+ @endif
+
+ {{-- Next Page Link --}}
+ @if ($paginator->hasMorePages())
+
+ {!! __('pagination.next') !!}
+
+ @else
+
+ {!! __('pagination.next') !!}
+
+ @endif
+
+@endif
diff --git a/app/revendamais/resources/views/vendor/pagination/tailwind.blade.php b/app/revendamais/resources/views/vendor/pagination/tailwind.blade.php
new file mode 100644
index 00000000..aee2ad28
--- /dev/null
+++ b/app/revendamais/resources/views/vendor/pagination/tailwind.blade.php
@@ -0,0 +1,106 @@
+@if ($paginator->hasPages())
+
+
+
+
+
+
+ {!! __('Showing') !!}
+ @if ($paginator->firstItem())
+ {{ $paginator->firstItem() }}
+ {!! __('to') !!}
+ {{ $paginator->lastItem() }}
+ @else
+ {{ $paginator->count() }}
+ @endif
+ {!! __('of') !!}
+ {{ $paginator->total() }}
+ {!! __('results') !!}
+
+
+
+
+
+ {{-- Previous Page Link --}}
+ @if ($paginator->onFirstPage())
+
+
+
+
+
+
+
+ @else
+
+
+
+
+
+ @endif
+
+ {{-- Pagination Elements --}}
+ @foreach ($elements as $element)
+ {{-- "Three Dots" Separator --}}
+ @if (is_string($element))
+
+ {{ $element }}
+
+ @endif
+
+ {{-- Array Of Links --}}
+ @if (is_array($element))
+ @foreach ($element as $page => $url)
+ @if ($page == $paginator->currentPage())
+
+ {{ $page }}
+
+ @else
+
+ {{ $page }}
+
+ @endif
+ @endforeach
+ @endif
+ @endforeach
+
+ {{-- Next Page Link --}}
+ @if ($paginator->hasMorePages())
+
+
+
+
+
+ @else
+
+
+
+
+
+
+
+ @endif
+
+
+
+
+@endif
diff --git a/app/revendamais/resources/views/welcome.blade.php b/app/revendamais/resources/views/welcome.blade.php
new file mode 100644
index 00000000..c893b809
--- /dev/null
+++ b/app/revendamais/resources/views/welcome.blade.php
@@ -0,0 +1,277 @@
+
+
+
+
+
+
+ Laravel
+
+
+
+
+
+
+ @if (file_exists(public_path('build/manifest.json')) || file_exists(public_path('hot')))
+ @vite(['resources/css/app.css', 'resources/js/app.js'])
+ @else
+
+ @endif
+
+
+
+ @if (Route::has('login'))
+
+ @auth
+
+ Dashboard
+
+ @else
+
+ Log in
+
+
+ @if (Route::has('register'))
+
+ Register
+
+ @endif
+ @endauth
+
+ @endif
+
+
+
+
+
Let's get started
+
Laravel has an incredibly rich ecosystem. We suggest starting with the following.
+
+
+
+
+ {{-- Laravel Logo --}}
+
+
+
+
+
+
+
+
+
+
+ {{-- Light Mode 12 SVG --}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{-- Dark Mode 12 SVG --}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ @if (Route::has('login'))
+
+ @endif
+
+
diff --git a/app/revendamais/routes/api.php b/app/revendamais/routes/api.php
new file mode 100644
index 00000000..54475fe6
--- /dev/null
+++ b/app/revendamais/routes/api.php
@@ -0,0 +1,13 @@
+user();
+})->middleware('auth:sanctum');
+
+Route::apiResource('suppliers', SupplierController::class);
+Route::get('/externalsearch/{cnpj}', [ExternalSearchController::class,'search']);
diff --git a/app/revendamais/routes/console.php b/app/revendamais/routes/console.php
new file mode 100644
index 00000000..3c9adf1a
--- /dev/null
+++ b/app/revendamais/routes/console.php
@@ -0,0 +1,8 @@
+comment(Inspiring::quote());
+})->purpose('Display an inspiring quote');
diff --git a/app/revendamais/routes/web.php b/app/revendamais/routes/web.php
new file mode 100644
index 00000000..86a06c53
--- /dev/null
+++ b/app/revendamais/routes/web.php
@@ -0,0 +1,7 @@
+get('/');
+
+ $response->assertStatus(200);
+ }
+}
diff --git a/app/revendamais/tests/Feature/SupplierTest.php b/app/revendamais/tests/Feature/SupplierTest.php
new file mode 100644
index 00000000..83aadcc2
--- /dev/null
+++ b/app/revendamais/tests/Feature/SupplierTest.php
@@ -0,0 +1,136 @@
+truncate();
+ }
+ /**
+ * A basic test example.
+ */
+ public function test_if_index_is_ok(): void
+ {
+ $response = $this->get('/');
+ $response->assertStatus(200);
+ }
+
+ /**
+ * GET supplier Test
+ */
+ public function test_get_supplier()
+ {
+ $supplier = Supplier::factory()->create();
+ $supplier->addAddress(['street' => fake()->streetAddress(),
+ 'post_code' => fake()->postcode(),
+ 'state' => fake()->state(),
+ 'city' => fake()->city() ,
+ 'country' => fake()->countryCode()]);
+
+ $response = $this->getJson("/api/suppliers/{$supplier->id}");
+ $response->assertStatus(Response::HTTP_OK)
+ ->assertJsonFragment([
+ 'name' => $supplier->name,
+ 'email' => $supplier->email,
+ 'type' => $supplier->type,
+ 'document' => $supplier->document,
+ 'phone' => $supplier->phone,
+
+ ]);
+ }
+
+ /**
+ * Create Supplier Test
+ */
+ public function test_store_supplier()
+ {
+ $data = [
+ 'name' => 'Pessoa 1',
+ 'type' => 'CPF',
+ 'document' => '08061758008',
+ 'email' => 'supplier@fakedata.com',
+ 'phone' => '11999999999',
+ 'street' => fake()->streetAddress(),
+ 'post_code' => fake()->postcode(),
+ 'state' => fake()->state(),
+ 'city' => fake()->city() ,
+ 'country' => fake()->countryCode(),
+ ];
+ $response = $this->postJson('/api/suppliers', $data);
+ $response->assertStatus(Response::HTTP_CREATED)
+ ->assertJsonFragment([
+ 'name' => 'Pessoa 1',
+ 'email' => 'supplier@fakedata.com',
+ 'document' => '08061758008',
+ ]);
+ }
+
+ /**
+ * Update Supplier Test
+ */
+ public function test_update_supplier()
+ {
+ $supplier = Supplier::factory()->create([
+ 'name' => 'Pessoa 1',
+ 'type' => 'CPF',
+ 'document' => '08061758008',
+ 'email' => 'supplier@fakedata.com',
+ 'phone' => '11999999999',
+ ]);
+ $data = [
+ 'name' => 'Pessoa 1 - UPDATED',
+ 'type' => 'CPF',
+ 'document' => '08061758008',
+ 'email' => 'supplier_updated@fakedata.com',
+ 'phone' => '99999999999',
+ 'street' => fake()->streetAddress(),
+ 'post_code' => fake()->postcode(),
+ 'state' => fake()->state(),
+ 'city' => fake()->city() ,
+ 'country' => fake()->countryCode(),
+ ];
+ $response = $this->putJson("/api/suppliers/{$supplier->id}", $data);
+ $response->assertStatus(Response::HTTP_OK)
+ ->assertJsonFragment([
+ 'id' => $supplier->id,
+ 'name' => 'Pessoa 1 - UPDATED',
+ 'type' => 'CPF',
+ 'document' => '08061758008',
+ 'email' => 'supplier_updated@fakedata.com',
+ 'phone' => '99999999999',
+ ]);
+ }
+
+
+ /**
+ * DELETE supplier Test
+ */
+ public function test_destroy_supplier()
+ {
+ $supplier = Supplier::factory()->create();
+ $this->assertDatabaseHas('suppliers', ['id' => $supplier->id]);
+ $response = $this->delete("/api/suppliers/{$supplier->id}");
+ $response->assertStatus(Response::HTTP_NO_CONTENT);
+ }
+
+ /**
+ * Test supplier with validation failure
+ */
+ public function test_store_suppliers_validation()
+ {
+ $response = $this->postJson('/api/suppliers', []);
+
+ $response->assertStatus(Response::HTTP_BAD_REQUEST)
+ ->assertJsonStructure([
+ 'message',
+ ]);
+ }
+}
diff --git a/app/revendamais/tests/TestCase.php b/app/revendamais/tests/TestCase.php
new file mode 100644
index 00000000..fe1ffc2f
--- /dev/null
+++ b/app/revendamais/tests/TestCase.php
@@ -0,0 +1,10 @@
+expectException(InvalidArgumentException::class);
+ $this->expectExceptionMessage('CNPJ Invalido!');
+ $service->searchCNPJ('12345678900');
+ }
+
+
+}
diff --git a/app/revendamais/vite.config.js b/app/revendamais/vite.config.js
new file mode 100644
index 00000000..29fbfe9a
--- /dev/null
+++ b/app/revendamais/vite.config.js
@@ -0,0 +1,13 @@
+import { defineConfig } from 'vite';
+import laravel from 'laravel-vite-plugin';
+import tailwindcss from '@tailwindcss/vite';
+
+export default defineConfig({
+ plugins: [
+ laravel({
+ input: ['resources/css/app.css', 'resources/js/app.js'],
+ refresh: true,
+ }),
+ tailwindcss(),
+ ],
+});
diff --git a/docker-compose.yaml b/docker-compose.yaml
new file mode 100644
index 00000000..da82c50c
--- /dev/null
+++ b/docker-compose.yaml
@@ -0,0 +1,48 @@
+# Author: Felipe Prestes ]
+
+services:
+ app:
+ extends:
+ file: $PWD/services/php/docker-compose.yml
+ service: app
+ depends_on:
+ - db
+ - redis
+ volumes:
+ - ./app:/var/www
+ web:
+ extends:
+ file: $PWD/services/caddy/docker-compose.yml
+ service: web
+ depends_on:
+ - app
+ volumes:
+ - ./app:/srv
+ db:
+ extends:
+ file: $PWD/services/postgres/docker-compose.yml
+ service: db
+ redis:
+ extends:
+ file: $PWD/services/redis/docker-compose.yml
+ service: redis
+volumes:
+ cache:
+ name: redis_cache
+ driver: local
+ app_volume:
+ name: app_volume
+ driver_opts:
+ type: none
+ o: bind
+ device: $PWD/app
+networks:
+ app_network:
+ name: ${APP_NETWORK_NAME:-app_network}
+ driver: bridge
+ attachable: true
+ enable_ipv4: true
+ enable_ipv6: false
+secrets:
+ db_root_password:
+ file: $PWD/docker-data/postgres/db_root_password.txt
diff --git a/docker-data/.gitignore b/docker-data/.gitignore
new file mode 100644
index 00000000..6a1c33f7
--- /dev/null
+++ b/docker-data/.gitignore
@@ -0,0 +1 @@
+caddy
\ No newline at end of file
diff --git a/docker-data/postgres/db_root_password.txt b/docker-data/postgres/db_root_password.txt
new file mode 100644
index 00000000..abbc4351
--- /dev/null
+++ b/docker-data/postgres/db_root_password.txt
@@ -0,0 +1 @@
+P2uidAAuS/+hZ7v2C0PPlp0zjDM=
diff --git a/httpie-collection-revendamais.json b/httpie-collection-revendamais.json
new file mode 100644
index 00000000..90004507
--- /dev/null
+++ b/httpie-collection-revendamais.json
@@ -0,0 +1,429 @@
+{
+ "meta": {
+ "format": "httpie",
+ "version": "1.0.0",
+ "contentType": "collection",
+ "schema": "https://schema.httpie.io/1.0.0.json",
+ "docs": "https://httpie.io/r/help/export-from-httpie",
+ "source": "HTTPie Desktop 2025.2.0"
+ },
+ "entry": {
+ "name": "RevendaMais",
+ "icon": {
+ "name": "default",
+ "color": "orange"
+ },
+ "auth": {
+ "type": "none"
+ },
+ "requests": [
+ {
+ "name": "Create — error",
+ "url": "https://revendamais.localhost/api/suppliers",
+ "method": "POST",
+ "headers": [],
+ "queryParams": [],
+ "pathParams": [],
+ "auth": {
+ "type": "inherited"
+ },
+ "body": {
+ "type": "form",
+ "file": {
+ "name": ""
+ },
+ "text": {
+ "value": "",
+ "format": "application/json"
+ },
+ "form": {
+ "isMultipart": false,
+ "fields": [
+ {
+ "name": "name",
+ "value": "FFPL",
+ "enabled": false,
+ "type": "text"
+ },
+ {
+ "name": "type",
+ "value": "CPF",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "document",
+ "value": "96082186249",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "email",
+ "value": "fued.felipe@hotmail.com",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "phone",
+ "value": "92984046888",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "street",
+ "value": "Rua A number 5",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "post_code",
+ "value": "69094750",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "city",
+ "value": "Manaus",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "country",
+ "value": "BR",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "state",
+ "value": "Amazonas",
+ "enabled": true,
+ "type": "text"
+ }
+ ]
+ },
+ "graphql": {
+ "query": "",
+ "variables": ""
+ }
+ }
+ },
+ {
+ "name": "List",
+ "url": "https://revendamais.localhost/api/suppliers",
+ "method": "GET",
+ "headers": [],
+ "queryParams": [
+ {
+ "name": "order",
+ "value": "asc",
+ "enabled": true
+ },
+ {
+ "name": "order_by",
+ "value": "name",
+ "enabled": true
+ },
+ {
+ "name": "per_page",
+ "value": "5",
+ "enabled": true
+ },
+ {
+ "name": "page",
+ "value": "1",
+ "enabled": true
+ }
+ ],
+ "pathParams": [],
+ "auth": {
+ "type": "inherited"
+ },
+ "body": {
+ "type": "none",
+ "file": {
+ "name": ""
+ },
+ "text": {
+ "value": "",
+ "format": "application/json"
+ },
+ "form": {
+ "isMultipart": false,
+ "fields": []
+ },
+ "graphql": {
+ "query": "",
+ "variables": ""
+ }
+ }
+ },
+ {
+ "name": "Update",
+ "url": "https://revendamais.localhost/api/suppliers/1",
+ "method": "PATCH",
+ "headers": [],
+ "queryParams": [],
+ "pathParams": [],
+ "auth": {
+ "type": "inherited"
+ },
+ "body": {
+ "type": "form",
+ "file": {
+ "name": ""
+ },
+ "text": {
+ "value": "",
+ "format": "application/json"
+ },
+ "form": {
+ "isMultipart": false,
+ "fields": [
+ {
+ "name": "name",
+ "value": "FFPL - update3",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "type",
+ "value": "CPF",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "document",
+ "value": "96082186249",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "email",
+ "value": "fued.felipe@hotmail.com",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "phone",
+ "value": "92984046584",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "street",
+ "value": "Rua A number 4",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "post_code",
+ "value": "69094750",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "city",
+ "value": "Manaus",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "country",
+ "value": "BRA",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "state",
+ "value": "Amazonas",
+ "enabled": true,
+ "type": "text"
+ }
+ ]
+ },
+ "graphql": {
+ "query": "",
+ "variables": ""
+ }
+ }
+ },
+ {
+ "name": "Delete",
+ "url": "https://revendamais.localhost/api/suppliers/1",
+ "method": "DELETE",
+ "headers": [],
+ "queryParams": [],
+ "pathParams": [],
+ "auth": {
+ "type": "inherited"
+ },
+ "body": {
+ "type": "none",
+ "file": {
+ "name": ""
+ },
+ "text": {
+ "value": "",
+ "format": "application/json"
+ },
+ "form": {
+ "isMultipart": false,
+ "fields": []
+ },
+ "graphql": {
+ "query": "",
+ "variables": ""
+ }
+ }
+ },
+ {
+ "name": "byID",
+ "url": "https://revendamais.localhost/api/suppliers/2",
+ "method": "GET",
+ "headers": [],
+ "queryParams": [],
+ "pathParams": [],
+ "auth": {
+ "type": "inherited"
+ },
+ "body": {
+ "type": "none",
+ "file": {
+ "name": ""
+ },
+ "text": {
+ "value": "",
+ "format": "application/json"
+ },
+ "form": {
+ "isMultipart": false,
+ "fields": []
+ },
+ "graphql": {
+ "query": "",
+ "variables": ""
+ }
+ }
+ },
+ {
+ "name": "Create",
+ "url": "https://revendamais.localhost/api/suppliers",
+ "method": "POST",
+ "headers": [],
+ "queryParams": [],
+ "pathParams": [],
+ "auth": {
+ "type": "inherited"
+ },
+ "body": {
+ "type": "form",
+ "file": {
+ "name": ""
+ },
+ "text": {
+ "value": "",
+ "format": "application/json"
+ },
+ "form": {
+ "isMultipart": false,
+ "fields": [
+ {
+ "name": "name",
+ "value": "FFPL",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "type",
+ "value": "CPF",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "document",
+ "value": "96082186249",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "email",
+ "value": "fued.felipe@hotmail.com",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "phone",
+ "value": "92984046888",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "street",
+ "value": "Rua A number 5",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "post_code",
+ "value": "69094750",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "city",
+ "value": "Manaus",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "country",
+ "value": "BR",
+ "enabled": true,
+ "type": "text"
+ },
+ {
+ "name": "state",
+ "value": "Amazonas",
+ "enabled": true,
+ "type": "text"
+ }
+ ]
+ },
+ "graphql": {
+ "query": "",
+ "variables": ""
+ }
+ }
+ },
+ {
+ "name": "Busca CNPJ",
+ "url": "https://revendamais.localhost/api/externalsearch/41724783000133",
+ "method": "GET",
+ "headers": [],
+ "queryParams": [],
+ "pathParams": [],
+ "auth": {
+ "type": "inherited"
+ },
+ "body": {
+ "type": "none",
+ "file": {
+ "name": ""
+ },
+ "text": {
+ "value": "",
+ "format": "application/json"
+ },
+ "form": {
+ "isMultipart": false,
+ "fields": []
+ },
+ "graphql": {
+ "query": "",
+ "variables": ""
+ }
+ }
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/run.sh b/run.sh
new file mode 100755
index 00000000..f8c5c3c1
--- /dev/null
+++ b/run.sh
@@ -0,0 +1,7 @@
+#!/usr/bin/env bash
+
+PWD=${PWD} docker compose up -d --build
+docker exec -it app_php sh -c "composer install --working-dir=/var/www/revendamais"
+docker exec -it app_php sh -c "cp revendamais/.env.example revendamais/.env"
+docker exec -it app_php sh -c "php revendamais/artisan key:generate"
+docker exec -it app_php sh -c "php revendamais/artisan migrate:fresh --seed"
diff --git a/services/caddy/.env.caddy b/services/caddy/.env.caddy
new file mode 100644
index 00000000..4508871f
--- /dev/null
+++ b/services/caddy/.env.caddy
@@ -0,0 +1,12 @@
+# CADDY ENV
+CADDY_IMAGE=caddy
+CADDY_VERSION=alpine # RECOMMENDED TAGS[latest, alpine]
+APP_CADDY_CONTAINER_NAME=app_caddy # Container running the Nginx web server (Default to HTTP_PORT = 8000)
+CADDY_MEM_LIMIT=300M
+# PORTS
+APP_HTTP_PORT=8000 # Default port to be used for http access(if you port 80 is free consider changing)
+APP_HTTPS_PORT=443 # Default port to be used for https access(if your port 443 is free consider changing)
+# MISC
+APP_TIMEZONE="America/Manaus" # Define the a timezone to adjust de date/time of logs inside containers
+# NETWORK RELATED
+APP_NETWORK_NAME=app_network # Default docker network name used between services
diff --git a/services/caddy/conf/CaddyFile b/services/caddy/conf/CaddyFile
new file mode 100644
index 00000000..1a6e529b
--- /dev/null
+++ b/services/caddy/conf/CaddyFile
@@ -0,0 +1,30 @@
+# { auto_https off }
+
+(common) {
+ header /* {
+ -Server
+ }
+}
+
+revendamais.localhost {
+ import common
+ import ./security
+
+ tls internal
+ # Provide Zstd and Gzip compression
+ encode zstd gzip
+
+ log {
+ # output logs to standard error (console)
+ output stderr
+ }
+
+ # Resolve the root directory for the app
+ root * /srv/revendamais/public
+
+ # Or serve a PHP site through php-fpm:
+ php_fastcgi app:9000 {
+ root /var/www/revendamais/public
+ }
+ file_server
+}
diff --git a/services/caddy/conf/security.conf b/services/caddy/conf/security.conf
new file mode 100644
index 00000000..00d95afe
--- /dev/null
+++ b/services/caddy/conf/security.conf
@@ -0,0 +1,22 @@
+header {
+ # keep referrer data off of HTTP connections
+ Referrer-Policy no-referrer-when-downgrade
+ # Referrer-Policy "strict-origin-when-cross-origin"
+
+ # enable HSTS
+ Strict-Transport-Security "max-age=31536000; includeSubDomains; preload"
+
+ # Enable cross-site filter (XSS) and tell browser to block detected attacks
+ X-Xss-Protection "1; mode=block"
+
+ # disable clients from sniffing the media type
+ X-Content-Type-Options "nosniff"
+
+ # clickjacking protection
+ X-Frame-Options "SAMEORIGIN"
+
+ Content-Security-Policy "upgrade-insecure-requests"
+
+ # hide server name
+ -Server Caddy
+}
diff --git a/services/caddy/conf/services/dbadmin b/services/caddy/conf/services/dbadmin
new file mode 100644
index 00000000..5ecb0713
--- /dev/null
+++ b/services/caddy/conf/services/dbadmin
@@ -0,0 +1 @@
+import proxypass dbadmin.localhost dbadmin:9000
diff --git a/services/caddy/conf/services/info b/services/caddy/conf/services/info
new file mode 100644
index 00000000..58f25607
--- /dev/null
+++ b/services/caddy/conf/services/info
@@ -0,0 +1,28 @@
+info.localhost {
+ import common
+
+ tls internal
+ encode zstd gzip
+
+ root * /srv/public
+ file_server browse # Show directory listing if no index.html is found
+
+ log {
+ # output logs to standard error (console)
+ output stderr
+ }
+
+ handle /static {
+ root * /srv/public
+ try_files {path} /index.static.html
+ file_server
+ }
+
+ handle /php {
+ php_fastcgi app:9000 {
+ index index.php
+ root /var/www/public
+ }
+ }
+
+}
\ No newline at end of file
diff --git a/services/caddy/conf/services/smtp b/services/caddy/conf/services/smtp
new file mode 100644
index 00000000..335669dc
--- /dev/null
+++ b/services/caddy/conf/services/smtp
@@ -0,0 +1 @@
+import proxypass smtp.localhost smtp:8025
diff --git a/services/caddy/conf/sites/.gitignore b/services/caddy/conf/sites/.gitignore
new file mode 100644
index 00000000..c5945767
--- /dev/null
+++ b/services/caddy/conf/sites/.gitignore
@@ -0,0 +1,2 @@
+teste
+app
diff --git a/services/caddy/conf/snippets/domain-redirect b/services/caddy/conf/snippets/domain-redirect
new file mode 100644
index 00000000..98ae6303
--- /dev/null
+++ b/services/caddy/conf/snippets/domain-redirect
@@ -0,0 +1,13 @@
+# snippets/domain-redirect
+# {args[0]} represents the from domain.
+# {args[1]} represents the target new domain
+
+(domain-redirect) {
+ {args[0]} {
+ redir https://{args[1]}{uri} permanent
+
+ log {
+ output stderr
+ }
+ }
+}
\ No newline at end of file
diff --git a/services/caddy/conf/snippets/laravel-app.localhost b/services/caddy/conf/snippets/laravel-app.localhost
new file mode 100644
index 00000000..37a6b2a4
--- /dev/null
+++ b/services/caddy/conf/snippets/laravel-app.localhost
@@ -0,0 +1,27 @@
+# snippets/laravel-app.localhost
+# {args.0} represents the name of the localhost url and foldername of the app.
+
+(laravel-app.localhost) {
+ {args.0}.localhost {
+ import common
+ import ../security
+
+ tls internal
+ # Provide Zstd and Gzip compression
+ encode zstd gzip
+
+ log {
+ # output logs to standard error (console)
+ output stderr
+ }
+
+ # Resolve the root directory for the app
+ root * /srv/{args.0}/public
+
+ # Or serve a PHP site through php-fpm:
+ php_fastcgi app:9000 {
+ root /var/www/{args.0}/public
+ }
+ file_server
+ }
+}
\ No newline at end of file
diff --git a/services/caddy/conf/snippets/proxypass b/services/caddy/conf/snippets/proxypass
new file mode 100644
index 00000000..f73cde09
--- /dev/null
+++ b/services/caddy/conf/snippets/proxypass
@@ -0,0 +1,34 @@
+# snippets/proxypass
+# {args[0]} represents the root url of the app.
+# {args[1]} represents the upstream target. Example: "app:9000"
+
+(proxypass) {
+ {args[0]} {
+ import common
+ encode zstd gzip
+
+ log {
+ output stderr
+ }
+
+ handle {
+ reverse_proxy * {args[1]} {
+ #header_up Host {http.request.host}
+ #header_up X-Real-IP {http.request.remote}
+ #header_up X-Forwarded-Port {http.request.port}
+ }
+ }
+
+ handle_errors {
+ root * /srv/public
+ @custom_err file /error-{err.status_code}.html /error.html
+
+ handle @custom_err {
+ rewrite * {file_match.relative}
+ file_server
+ }
+ }
+
+
+ }
+}
\ No newline at end of file
diff --git a/services/caddy/conf/snippets/static-app.localhost b/services/caddy/conf/snippets/static-app.localhost
new file mode 100644
index 00000000..30fc7378
--- /dev/null
+++ b/services/caddy/conf/snippets/static-app.localhost
@@ -0,0 +1,27 @@
+# snippets/static-app.localhost
+# {args[0]} represents the name of the localhost url and foldername of the app.
+
+(static-app.localhost) {
+ {args[0]}.localhost {
+ import common
+ tls internal
+ encode zstd gzip
+
+ log {
+ output stderr
+ }
+
+ root * /srv/{args[0]}
+ file_server
+
+ handle_errors {
+ root * /srv/{args[0]}
+ @custom_err file /error-{err.status_code}.html /error.html
+
+ handle @custom_err {
+ rewrite * {file_match.relative}
+ file_server
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/services/caddy/docker-compose.yml b/services/caddy/docker-compose.yml
new file mode 100644
index 00000000..a9adc7e0
--- /dev/null
+++ b/services/caddy/docker-compose.yml
@@ -0,0 +1,65 @@
+# Author: Felipe Prestes
+#
+# Container to run the Caddy web server and proxy.
+# Note: The volumes at this container are refered at the root folder of the project.
+# Run the service at the root folder using the -f flag for the default values.
+# Ex: docker compose -f services/caddy/docker-compose.yml up -d
+# or
+# docker compose -f services/caddy/docker-compose.yml --env-file services/caddy/.env.caddy up -d
+# to spin up the container with custom values.
+#
+# Default HTTP_PORT is 8000 and can be changed with the env variables at services/caddy/.env.caddy
+#
+# To disable the https redirect you can add { auto_https off } at the beginning of conf/CaddyFile
+#
+# You can create the vhosts at sites folder using the Caddyfile syntax.
+#
+# Default services for this project can be found at services folder and snippets for easy site creation
+# at snippets
+#
+
+services:
+ web:
+ image: ${CADDY_IMAGE:-caddy}:${CADDY_VERSION:-alpine}
+ container_name: ${APP_CADDY_CONTAINER_NAME:-app_caddy}
+ restart: on-failure
+ healthcheck:
+ test: wget --no-verbose --tries=1 --output-document=/dev/null http://127.0.0.1:2019/metrics &> /dev/null || exit 1
+ interval: 30s
+ timeout: 10s
+ retries: 2
+ start_period: 0s
+ volumes:
+ - $PWD/services/caddy/conf/CaddyFile:/etc/caddy/Caddyfile:ro
+ - $PWD/services/caddy/conf/services/:/etc/caddy/services/
+ - $PWD/services/caddy/conf/sites/:/etc/caddy/sites/
+ - $PWD/services/caddy/conf/snippets/:/etc/caddy/snippets/
+ - $PWD/services/caddy/conf/security.conf:/etc/caddy/security
+ - $PWD/docker-data/caddy/data:/data
+ - $PWD/docker-data/caddy/config:/config
+ networks:
+ - ${APP_NETWORK_NAME:-app_network}
+ cap_add:
+ - NET_ADMIN
+ environment:
+ TZ: ${APP_TIMEZONE:-America/Sao_Paulo}
+ ports:
+ - "${APP_HTTP_PORT:-80}:80"
+ - "${APP_HTTPS_PORT:-443}:443"
+ - "${APP_HTTPS_PORT:-443}:443/udp"
+ expose:
+ - 80 # http
+ - 443 # https
+ mem_reservation: "15M"
+ mem_limit: "${CADDY_MEM_LIMIT:-300M}"
+volumes:
+ app_volume:
+ name: app_volume
+ driver_opts:
+ type: none
+ o: bind
+ device: $PWD/app
+networks:
+ app_network:
+ name: ${APP_NETWORK_NAME:-app_network}
+ driver: bridge
diff --git a/services/php/.env.php b/services/php/.env.php
new file mode 100644
index 00000000..641cfc56
--- /dev/null
+++ b/services/php/.env.php
@@ -0,0 +1,7 @@
+# PHP ENV
+APP_CONTAINER_NAME=app_php
+PHP_VERSION=5.6 # Supported Versions [8.4, 8.3, 8.2, 7.4, 5.6]
+# MISC
+APP_TIMEZONE="America/Manaus" # Define the a timezone to adjust de date/time of logs inside containers
+# NETWORK RELATED
+APP_NETWORK_NAME=app_network # Default docker network name used between services
\ No newline at end of file
diff --git a/services/php/conf/php.ini b/services/php/conf/php.ini
new file mode 100644
index 00000000..c656e83e
--- /dev/null
+++ b/services/php/conf/php.ini
@@ -0,0 +1,1850 @@
+[PHP]
+
+;;;;;;;;;;;;;;;;;;;
+; About php.ini ;
+;;;;;;;;;;;;;;;;;;;
+; PHP's initialization file, generally called php.ini, is responsible for
+; configuring many of the aspects of PHP's behavior.
+
+; PHP attempts to find and load this configuration from a number of locations.
+; The following is a summary of its search order:
+; 1. SAPI module specific location.
+; 2. The PHPRC environment variable.
+; 3. A number of predefined registry keys on Windows
+; 4. Current working directory (except CLI)
+; 5. The web server's directory (for SAPI modules), or directory of PHP
+; (otherwise in Windows)
+; 6. The directory from the --with-config-file-path compile time option, or the
+; Windows directory (usually C:\windows)
+; See the PHP docs for more specific information.
+; https://php.net/configuration.file
+
+; The syntax of the file is extremely simple. Whitespace and lines
+; beginning with a semicolon are silently ignored (as you probably guessed).
+; Section headers (e.g. [Foo]) are also silently ignored, even though
+; they might mean something in the future.
+
+; Directives following the section heading [PATH=/www/mysite] only
+; apply to PHP files in the /www/mysite directory. Directives
+; following the section heading [HOST=www.example.com] only apply to
+; PHP files served from www.example.com. Directives set in these
+; special sections cannot be overridden by user-defined INI files or
+; at runtime. Currently, [PATH=] and [HOST=] sections only work under
+; CGI/FastCGI.
+; https://php.net/ini.sections
+
+; Directives are specified using the following syntax:
+; directive = value
+; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
+; Directives are variables used to configure PHP or PHP extensions.
+; There is no name validation. If PHP can't find an expected
+; directive because it is not set or is mistyped, a default value will be used.
+
+; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
+; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
+; (e.g. E_ALL & ~E_NOTICE), a quoted string ("bar"), or a reference to a
+; previously set variable or directive (e.g. ${foo})
+
+; Expressions in the INI file are limited to bitwise operators and parentheses:
+; | bitwise OR
+; ^ bitwise XOR
+; & bitwise AND
+; ~ bitwise NOT
+; ! boolean NOT
+
+; Boolean flags can be turned on using the values 1, On, True or Yes.
+; They can be turned off using the values 0, Off, False or No.
+
+; An empty string can be denoted by simply not writing anything after the equal
+; sign, or by using the None keyword:
+
+; foo = ; sets foo to an empty string
+; foo = None ; sets foo to an empty string
+; foo = "None" ; sets foo to the string 'None'
+
+; If you use constants in your value, and these constants belong to a
+; dynamically loaded extension (either a PHP extension or a Zend extension),
+; you may only use these constants *after* the line that loads the extension.
+
+;;;;;;;;;;;;;;;;;;;
+; About this file ;
+;;;;;;;;;;;;;;;;;;;
+; PHP comes packaged with two INI files. One that is recommended to be used
+; in production environments and one that is recommended to be used in
+; development environments.
+
+; php.ini-production contains settings which hold security, performance and
+; best practices at its core. But please be aware, these settings may break
+; compatibility with older or less security-conscious applications. We
+; recommending using the production ini in production and testing environments.
+
+; php.ini-development is very similar to its production variant, except it is
+; much more verbose when it comes to errors. We recommend using the
+; development version only in development environments, as errors shown to
+; application users can inadvertently leak otherwise secure information.
+
+; This is the php.ini-production INI file.
+
+;;;;;;;;;;;;;;;;;;;
+; Quick Reference ;
+;;;;;;;;;;;;;;;;;;;
+
+; The following are all the settings which are different in either the production
+; or development versions of the INIs with respect to PHP's default behavior.
+; Please see the actual settings later in the document for more details as to why
+; we recommend these changes in PHP's behavior.
+
+; display_errors
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+
+; display_startup_errors
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+
+; error_reporting
+; Default Value: E_ALL
+; Development Value: E_ALL
+; Production Value: E_ALL & ~E_DEPRECATED
+
+; log_errors
+; Default Value: Off
+; Development Value: On
+; Production Value: On
+
+; max_input_time
+; Default Value: -1 (Unlimited)
+; Development Value: 60 (60 seconds)
+; Production Value: 60 (60 seconds)
+
+; output_buffering
+; Default Value: Off
+; Development Value: 4096
+; Production Value: 4096
+
+; register_argc_argv
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+
+; request_order
+; Default Value: None
+; Development Value: "GP"
+; Production Value: "GP"
+
+; session.gc_divisor
+; Default Value: 100
+; Development Value: 1000
+; Production Value: 1000
+
+; short_open_tag
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+
+; variables_order
+; Default Value: "EGPCS"
+; Development Value: "GPCS"
+; Production Value: "GPCS"
+
+; zend.assertions
+; Default Value: 1
+; Development Value: 1
+; Production Value: -1
+
+; zend.exception_ignore_args
+; Default Value: Off
+; Development Value: Off
+; Production Value: On
+
+; zend.exception_string_param_max_len
+; Default Value: 15
+; Development Value: 15
+; Production Value: 0
+
+;;;;;;;;;;;;;;;;;;;;
+; php.ini Options ;
+;;;;;;;;;;;;;;;;;;;;
+; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
+;user_ini.filename = ".user.ini"
+
+; To disable this feature set this option to an empty value
+;user_ini.filename =
+
+; TTL for user-defined php.ini files (time-to-live) in seconds. Default is 300 seconds (5 minutes)
+;user_ini.cache_ttl = 300
+
+;;;;;;;;;;;;;;;;;;;;
+; Language Options ;
+;;;;;;;;;;;;;;;;;;;;
+
+; Enable the PHP scripting language engine under Apache.
+; https://php.net/engine
+engine = On
+
+; This directive determines whether or not PHP will recognize code between
+; and ?> tags as PHP source which should be processed as such. It is
+; generally recommended that should be used and that this feature
+; should be disabled, as enabling it may result in issues when generating XML
+; documents, however this remains supported for backward compatibility reasons.
+; Note that this directive does not control the = shorthand tag, which can be
+; used regardless of this directive.
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+; https://php.net/short-open-tag
+short_open_tag = Off
+
+; The number of significant digits displayed in floating point numbers.
+; https://php.net/precision
+precision = 14
+
+; Output buffering is a mechanism for controlling how much output data
+; (excluding headers and cookies) PHP should keep internally before pushing that
+; data to the client. If your application's output exceeds this setting, PHP
+; will send that data in chunks of roughly the size you specify.
+; Turning on this setting and managing its maximum buffer size can yield some
+; interesting side-effects depending on your application and web server.
+; You may be able to send headers and cookies after you've already sent output
+; through print or echo. You also may see performance benefits if your server is
+; emitting less packets due to buffered output versus PHP streaming the output
+; as it gets it. On production servers, 4096 bytes is a good setting for performance
+; reasons.
+; Note: Output buffering can also be controlled via Output Buffering Control
+; functions.
+; Possible Values:
+; On = Enabled and buffer is unlimited. (Use with caution)
+; Off = Disabled
+; Integer = Enables the buffer and sets its maximum size in bytes.
+; Note: This directive is hardcoded to Off for the CLI SAPI
+; Default Value: Off
+; Development Value: 4096
+; Production Value: 4096
+; https://php.net/output-buffering
+output_buffering = 4096
+
+; You can redirect all of the output of your scripts to a function. For
+; example, if you set output_handler to "mb_output_handler", character
+; encoding will be transparently converted to the specified encoding.
+; Setting any output handler automatically turns on output buffering.
+; Note: People who wrote portable scripts should not depend on this ini
+; directive. Instead, explicitly set the output handler using ob_start().
+; Using this ini directive may cause problems unless you know what script
+; is doing.
+; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
+; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
+; Note: output_handler must be empty if this is set 'On' !!!!
+; Instead you must use zlib.output_handler.
+; https://php.net/output-handler
+;output_handler =
+
+; URL rewriter function rewrites URL on the fly by using
+; output buffer. You can set target tags by this configuration.
+; "form" tag is special tag. It will add hidden input tag to pass values.
+; Refer to session.trans_sid_tags for usage.
+; Default Value: "form="
+; Development Value: "form="
+; Production Value: "form="
+;url_rewriter.tags
+
+; URL rewriter will not rewrite absolute URL nor form by default. To enable
+; absolute URL rewrite, allowed hosts must be defined at RUNTIME.
+; Refer to session.trans_sid_hosts for more details.
+; Default Value: ""
+; Development Value: ""
+; Production Value: ""
+;url_rewriter.hosts
+
+; Transparent output compression using the zlib library
+; Valid values for this option are 'off', 'on', or a specific buffer size
+; to be used for compression (default is 4KB)
+; Note: Resulting chunk size may vary due to nature of compression. PHP
+; outputs chunks that are few hundreds bytes each as a result of
+; compression. If you prefer a larger chunk size for better
+; performance, enable output_buffering in addition.
+; Note: You need to use zlib.output_handler instead of the standard
+; output_handler, or otherwise the output will be corrupted.
+; https://php.net/zlib.output-compression
+zlib.output_compression = Off
+
+; https://php.net/zlib.output-compression-level
+;zlib.output_compression_level = -1
+
+; You cannot specify additional output handlers if zlib.output_compression
+; is activated here. This setting does the same as output_handler but in
+; a different order.
+; https://php.net/zlib.output-handler
+;zlib.output_handler =
+
+; Implicit flush tells PHP to tell the output layer to flush itself
+; automatically after every output block. This is equivalent to calling the
+; PHP function flush() after each and every call to print() or echo() and each
+; and every HTML block. Turning this option on has serious performance
+; implications and is generally recommended for debugging purposes only.
+; https://php.net/implicit-flush
+; Note: This directive is hardcoded to On for the CLI SAPI
+implicit_flush = Off
+
+; The unserialize callback function will be called (with the undefined class'
+; name as parameter), if the unserializer finds an undefined class
+; which should be instantiated. A warning appears if the specified function is
+; not defined, or if the function doesn't include/implement the missing class.
+; So only set this entry, if you really want to implement such a
+; callback-function.
+unserialize_callback_func =
+
+; The unserialize_max_depth specifies the default depth limit for unserialized
+; structures. Setting the depth limit too high may result in stack overflows
+; during unserialization. The unserialize_max_depth ini setting can be
+; overridden by the max_depth option on individual unserialize() calls.
+; A value of 0 disables the depth limit.
+;unserialize_max_depth = 4096
+
+; When floats & doubles are serialized, store serialize_precision significant
+; digits after the floating point. The default value ensures that when floats
+; are decoded with unserialize, the data will remain the same.
+; The value is also used for json_encode when encoding double values.
+; If -1 is used, then dtoa mode 0 is used which automatically select the best
+; precision.
+serialize_precision = -1
+
+; open_basedir, if set, limits all file operations to the defined directory
+; and below. This directive makes most sense if used in a per-directory
+; or per-virtualhost web server configuration file.
+; Note: disables the realpath cache
+; https://php.net/open-basedir
+;open_basedir =
+
+; This directive allows you to disable certain functions.
+; It receives a comma-delimited list of function names.
+; https://php.net/disable-functions
+disable_functions =
+
+; This directive allows you to disable certain classes.
+; It receives a comma-delimited list of class names.
+; https://php.net/disable-classes
+disable_classes =
+
+; Colors for Syntax Highlighting mode. Anything that's acceptable in
+; would work.
+; https://php.net/syntax-highlighting
+;highlight.string = #DD0000
+;highlight.comment = #FF9900
+;highlight.keyword = #007700
+;highlight.default = #0000BB
+;highlight.html = #000000
+
+; If enabled, the request will be allowed to complete even if the user aborts
+; the request. Consider enabling it if executing long requests, which may end up
+; being interrupted by the user or a browser timing out. PHP's default behavior
+; is to disable this feature.
+; https://php.net/ignore-user-abort
+;ignore_user_abort = On
+
+; Determines the size of the realpath cache to be used by PHP. This value should
+; be increased on systems where PHP opens many files to reflect the quantity of
+; the file operations performed.
+; Note: if open_basedir is set, the cache is disabled
+; https://php.net/realpath-cache-size
+;realpath_cache_size = 4096k
+
+; Duration of time, in seconds for which to cache realpath information for a given
+; file or directory. For systems with rarely changing files, consider increasing this
+; value.
+; https://php.net/realpath-cache-ttl
+;realpath_cache_ttl = 120
+
+; Enables or disables the circular reference collector.
+; https://php.net/zend.enable-gc
+zend.enable_gc = On
+
+; If enabled, scripts may be written in encodings that are incompatible with
+; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such
+; encodings. To use this feature, mbstring extension must be enabled.
+;zend.multibyte = Off
+
+; Allows to set the default encoding for the scripts. This value will be used
+; unless "declare(encoding=...)" directive appears at the top of the script.
+; Only affects if zend.multibyte is set.
+;zend.script_encoding =
+
+; Allows to include or exclude arguments from stack traces generated for exceptions.
+; In production, it is recommended to turn this setting on to prohibit the output
+; of sensitive information in stack traces
+; Default Value: Off
+; Development Value: Off
+; Production Value: On
+zend.exception_ignore_args = On
+
+; Allows setting the maximum string length in an argument of a stringified stack trace
+; to a value between 0 and 1000000.
+; This has no effect when zend.exception_ignore_args is enabled.
+; Default Value: 15
+; Development Value: 15
+; Production Value: 0
+; In production, it is recommended to set this to 0 to reduce the output
+; of sensitive information in stack traces.
+zend.exception_string_param_max_len = 0
+
+;;;;;;;;;;;;;;;;;
+; Miscellaneous ;
+;;;;;;;;;;;;;;;;;
+
+; Decides whether PHP may expose the fact that it is installed on the server
+; (e.g. by adding its signature to the Web server header). It is no security
+; threat in any way, but it makes it possible to determine whether you use PHP
+; on your server or not.
+; https://php.net/expose-php
+expose_php = On
+
+;;;;;;;;;;;;;;;;;;;
+; Resource Limits ;
+;;;;;;;;;;;;;;;;;;;
+
+; Maximum execution time of each script, in seconds
+; https://php.net/max-execution-time
+; Note: This directive is hardcoded to 0 for the CLI SAPI
+max_execution_time = 180
+
+; Maximum amount of time each script may spend parsing request data. It's a good
+; idea to limit this time on productions servers in order to eliminate unexpectedly
+; long running scripts.
+; Note: This directive is hardcoded to -1 for the CLI SAPI
+; Default Value: -1 (Unlimited)
+; Development Value: 60 (60 seconds)
+; Production Value: 60 (60 seconds)
+; https://php.net/max-input-time
+max_input_time = 180
+
+; Maximum input variable nesting level
+; https://php.net/max-input-nesting-level
+;max_input_nesting_level = 64
+
+; How many GET/POST/COOKIE input variables may be accepted
+;max_input_vars = 1000
+
+; How many multipart body parts (combined input variable and file uploads) may
+; be accepted.
+; Default Value: -1 (Sum of max_input_vars and max_file_uploads)
+;max_multipart_body_parts = 1500
+
+; Maximum amount of memory a script may consume
+; https://php.net/memory-limit
+memory_limit = 256M
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+; Error handling and logging ;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+; This directive informs PHP of which errors, warnings and notices you would like
+; it to take action for. The recommended way of setting values for this
+; directive is through the use of the error level constants and bitwise
+; operators. The error level constants are below here for convenience as well as
+; some common settings and their meanings.
+; By default, PHP is set to take action on all errors, notices and warnings EXCEPT
+; those related to E_NOTICE, which together cover best practices and
+; recommended coding standards in PHP. For performance reasons, this is the
+; recommend error reporting setting. Your production server shouldn't be wasting
+; resources complaining about best practices and coding standards. That's what
+; development servers and development settings are for.
+; Note: The php.ini-development file has this setting as E_ALL. This
+; means it pretty much reports everything which is exactly what you want during
+; development and early testing.
+;
+; Error Level Constants:
+; E_ALL - All errors and warnings
+; E_ERROR - fatal run-time errors
+; E_RECOVERABLE_ERROR - almost fatal run-time errors
+; E_WARNING - run-time warnings (non-fatal errors)
+; E_PARSE - compile-time parse errors
+; E_NOTICE - run-time notices (these are warnings which often result
+; from a bug in your code, but it's possible that it was
+; intentional (e.g., using an uninitialized variable and
+; relying on the fact it is automatically initialized to an
+; empty string)
+; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
+; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
+; initial startup
+; E_COMPILE_ERROR - fatal compile-time errors
+; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
+; E_USER_ERROR - user-generated error message
+; E_USER_WARNING - user-generated warning message
+; E_USER_NOTICE - user-generated notice message
+; E_DEPRECATED - warn about code that will not work in future versions
+; of PHP
+; E_USER_DEPRECATED - user-generated deprecation warnings
+;
+; Common Values:
+; E_ALL (Show all errors, warnings and notices including coding standards.)
+; E_ALL & ~E_NOTICE (Show all errors, except for notices)
+; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
+; Default Value: E_ALL
+; Development Value: E_ALL
+; Production Value: E_ALL & ~E_DEPRECATED
+; https://php.net/error-reporting
+error_reporting = E_ALL & ~E_DEPRECATED
+
+; This directive controls whether or not and where PHP will output errors,
+; notices and warnings too. Error output is very useful during development, but
+; it could be very dangerous in production environments. Depending on the code
+; which is triggering the error, sensitive information could potentially leak
+; out of your application such as database usernames and passwords or worse.
+; For production environments, we recommend logging errors rather than
+; sending them to STDOUT.
+; Possible Values:
+; Off = Do not display any errors
+; stderr = Display errors to STDERR (affects only CGI/CLI binaries!)
+; On or stdout = Display errors to STDOUT
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+; https://php.net/display-errors
+display_errors = Off
+
+; The display of errors which occur during PHP's startup sequence are handled
+; separately from display_errors. We strongly recommend you set this to 'off'
+; for production servers to avoid leaking configuration details.
+; Default Value: On
+; Development Value: On
+; Production Value: Off
+; https://php.net/display-startup-errors
+display_startup_errors = Off
+
+; Besides displaying errors, PHP can also log errors to locations such as a
+; server-specific log, STDERR, or a location specified by the error_log
+; directive found below. While errors should not be displayed on productions
+; servers they should still be monitored and logging is a great way to do that.
+; Default Value: Off
+; Development Value: On
+; Production Value: On
+; https://php.net/log-errors
+log_errors = On
+
+; Do not log repeated messages. Repeated errors must occur in same file on same
+; line unless ignore_repeated_source is set true.
+; https://php.net/ignore-repeated-errors
+ignore_repeated_errors = Off
+
+; Ignore source of message when ignoring repeated messages. When this setting
+; is On you will not log errors with repeated messages from different files or
+; source lines.
+; https://php.net/ignore-repeated-source
+ignore_repeated_source = Off
+
+; If this parameter is set to Off, then memory leaks will not be shown (on
+; stdout or in the log). This is only effective in a debug compile, and if
+; error reporting includes E_WARNING in the allowed list
+; https://php.net/report-memleaks
+report_memleaks = On
+
+; This setting is off by default.
+;report_zend_debug = 0
+
+; Turn off normal error reporting and emit XML-RPC error XML
+; https://php.net/xmlrpc-errors
+;xmlrpc_errors = 0
+
+; An XML-RPC faultCode
+;xmlrpc_error_number = 0
+
+; When PHP displays or logs an error, it has the capability of formatting the
+; error message as HTML for easier reading. This directive controls whether
+; the error message is formatted as HTML or not.
+; Note: This directive is hardcoded to Off for the CLI SAPI
+; https://php.net/html-errors
+;html_errors = On
+
+; If html_errors is set to On *and* docref_root is not empty, then PHP
+; produces clickable error messages that direct to a page describing the error
+; or function causing the error in detail.
+; You can download a copy of the PHP manual from https://php.net/docs
+; and change docref_root to the base URL of your local copy including the
+; leading '/'. You must also specify the file extension being used including
+; the dot. PHP's default behavior is to leave these settings empty, in which
+; case no links to documentation are generated.
+; Note: Never use this feature for production boxes.
+; https://php.net/docref-root
+; Examples
+;docref_root = "/phpmanual/"
+
+; https://php.net/docref-ext
+;docref_ext = .html
+
+; String to output before an error message. PHP's default behavior is to leave
+; this setting blank.
+; https://php.net/error-prepend-string
+; Example:
+;error_prepend_string = ""
+
+; String to output after an error message. PHP's default behavior is to leave
+; this setting blank.
+; https://php.net/error-append-string
+; Example:
+;error_append_string = " "
+
+; Log errors to specified file. PHP's default behavior is to leave this value
+; empty.
+; https://php.net/error-log
+; Example:
+;error_log = /tmp/php_errors.log
+; Log errors to syslog (Event Log on Windows).
+;error_log = syslog
+
+; The syslog ident is a string which is prepended to every message logged
+; to syslog. Only used when error_log is set to syslog.
+;syslog.ident = php
+
+; The syslog facility is used to specify what type of program is logging
+; the message. Only used when error_log is set to syslog.
+;syslog.facility = user
+
+; Set this to disable filtering control characters (the default).
+; Some loggers only accept NVT-ASCII, others accept anything that's not
+; control characters. If your logger accepts everything, then no filtering
+; is needed at all.
+; Allowed values are:
+; ascii (all printable ASCII characters and NL)
+; no-ctrl (all characters except control characters)
+; all (all characters)
+; raw (like "all", but messages are not split at newlines)
+; https://php.net/syslog.filter
+;syslog.filter = ascii
+
+;windows.show_crt_warning
+; Default value: 0
+; Development value: 0
+; Production value: 0
+
+;;;;;;;;;;;;;;;;;
+; Data Handling ;
+;;;;;;;;;;;;;;;;;
+
+; The separator used in PHP generated URLs to separate arguments.
+; PHP's default setting is "&".
+; https://php.net/arg-separator.output
+; Example:
+;arg_separator.output = "&"
+
+; List of separator(s) used by PHP to parse input URLs into variables.
+; PHP's default setting is "&".
+; NOTE: Every character in this directive is considered as separator!
+; https://php.net/arg-separator.input
+; Example:
+;arg_separator.input = ";&"
+
+; This directive determines which super global arrays are registered when PHP
+; starts up. G,P,C,E & S are abbreviations for the following respective super
+; globals: GET, POST, COOKIE, ENV and SERVER. There is a performance penalty
+; paid for the registration of these arrays and because ENV is not as commonly
+; used as the others, ENV is not recommended on productions servers. You
+; can still get access to the environment variables through getenv() should you
+; need to.
+; Default Value: "EGPCS"
+; Development Value: "GPCS"
+; Production Value: "GPCS";
+; https://php.net/variables-order
+variables_order = "GPCS"
+
+; This directive determines which super global data (G,P & C) should be
+; registered into the super global array REQUEST. If so, it also determines
+; the order in which that data is registered. The values for this directive
+; are specified in the same manner as the variables_order directive,
+; EXCEPT one. Leaving this value empty will cause PHP to use the value set
+; in the variables_order directive. It does not mean it will leave the super
+; globals array REQUEST empty.
+; Default Value: None
+; Development Value: "GP"
+; Production Value: "GP"
+; https://php.net/request-order
+request_order = "GP"
+
+; This directive determines whether PHP registers $argv & $argc each time it
+; runs. $argv contains an array of all the arguments passed to PHP when a script
+; is invoked. $argc contains an integer representing the number of arguments
+; that were passed when the script was invoked. These arrays are extremely
+; useful when running scripts from the command line. When this directive is
+; enabled, registering these variables consumes CPU cycles and memory each time
+; a script is executed. For performance reasons, this feature should be disabled
+; on production servers.
+; Note: This directive is hardcoded to On for the CLI SAPI
+; Default Value: On
+; Development Value: Off
+; Production Value: Off
+; https://php.net/register-argc-argv
+register_argc_argv = Off
+
+; When enabled, the ENV, REQUEST and SERVER variables are created when they're
+; first used (Just In Time) instead of when the script starts. If these
+; variables are not used within a script, having this directive on will result
+; in a performance gain. The PHP directive register_argc_argv must be disabled
+; for this directive to have any effect.
+; https://php.net/auto-globals-jit
+auto_globals_jit = On
+
+; Whether PHP will read the POST data.
+; This option is enabled by default.
+; Most likely, you won't want to disable this option globally. It causes $_POST
+; and $_FILES to always be empty; the only way you will be able to read the
+; POST data will be through the php://input stream wrapper. This can be useful
+; to proxy requests or to process the POST data in a memory efficient fashion.
+; https://php.net/enable-post-data-reading
+;enable_post_data_reading = Off
+
+; Maximum size of POST data that PHP will accept.
+; Its value may be 0 to disable the limit. It is ignored if POST data reading
+; is disabled through enable_post_data_reading.
+; https://php.net/post-max-size
+post_max_size = 100M
+
+; Automatically add files before PHP document.
+; https://php.net/auto-prepend-file
+auto_prepend_file =
+
+; Automatically add files after PHP document.
+; https://php.net/auto-append-file
+auto_append_file =
+
+; By default, PHP will output a media type using the Content-Type header. To
+; disable this, simply set it to be empty.
+;
+; PHP's built-in default media type is set to text/html.
+; https://php.net/default-mimetype
+default_mimetype = "text/html"
+
+; PHP's default character set is set to UTF-8.
+; https://php.net/default-charset
+default_charset = "UTF-8"
+
+; PHP internal character encoding is set to empty.
+; If empty, default_charset is used.
+; https://php.net/internal-encoding
+;internal_encoding =
+
+; PHP input character encoding is set to empty.
+; If empty, default_charset is used.
+; https://php.net/input-encoding
+;input_encoding =
+
+; PHP output character encoding is set to empty.
+; If empty, default_charset is used.
+; See also output_buffer.
+; https://php.net/output-encoding
+;output_encoding =
+
+;;;;;;;;;;;;;;;;;;;;;;;;;
+; Paths and Directories ;
+;;;;;;;;;;;;;;;;;;;;;;;;;
+
+; UNIX: "/path1:/path2"
+;include_path = ".:/php/includes"
+;
+; Windows: "\path1;\path2"
+;include_path = ".;c:\php\includes"
+;
+; PHP's default setting for include_path is ".;/path/to/php/pear"
+; https://php.net/include-path
+
+; The root of the PHP pages, used only if nonempty.
+; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
+; if you are running php as a CGI under any web server (other than IIS)
+; see documentation for security issues. The alternate is to use the
+; cgi.force_redirect configuration below
+; https://php.net/doc-root
+doc_root =
+
+; The directory under which PHP opens the script using /~username used only
+; if nonempty.
+; https://php.net/user-dir
+user_dir =
+
+; Directory in which the loadable extensions (modules) reside.
+; https://php.net/extension-dir
+;extension_dir = "./"
+; On windows:
+;extension_dir = "ext"
+
+; Directory where the temporary files should be placed.
+; Defaults to the system default (see sys_get_temp_dir)
+;sys_temp_dir = "/tmp"
+
+; Whether or not to enable the dl() function. The dl() function does NOT work
+; properly in multithreaded servers, such as IIS or Zeus, and is automatically
+; disabled on them.
+; https://php.net/enable-dl
+enable_dl = Off
+
+; cgi.force_redirect is necessary to provide security running PHP as a CGI under
+; most web servers. Left undefined, PHP turns this on by default. You can
+; turn it off here AT YOUR OWN RISK
+; **You CAN safely turn this off for IIS, in fact, you MUST.**
+; https://php.net/cgi.force-redirect
+;cgi.force_redirect = 1
+
+; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
+; every request. PHP's default behavior is to disable this feature.
+;cgi.nph = 1
+
+; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
+; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
+; will look for to know it is OK to continue execution. Setting this variable MAY
+; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
+; https://php.net/cgi.redirect-status-env
+;cgi.redirect_status_env =
+
+; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
+; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
+; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
+; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting
+; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
+; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
+; https://php.net/cgi.fix-pathinfo
+;cgi.fix_pathinfo=1
+
+; if cgi.discard_path is enabled, the PHP CGI binary can safely be placed outside
+; of the web tree and people will not be able to circumvent .htaccess security.
+;cgi.discard_path=1
+
+; FastCGI under IIS supports the ability to impersonate
+; security tokens of the calling client. This allows IIS to define the
+; security context that the request runs under. mod_fastcgi under Apache
+; does not currently support this feature (03/17/2002)
+; Set to 1 if running under IIS. Default is zero.
+; https://php.net/fastcgi.impersonate
+;fastcgi.impersonate = 1
+
+; Disable logging through FastCGI connection. PHP's default behavior is to enable
+; this feature.
+fastcgi.logging = 0
+
+; cgi.rfc2616_headers configuration option tells PHP what type of headers to
+; use when sending HTTP response code. If set to 0, PHP sends Status: header that
+; is supported by Apache. When this option is set to 1, PHP will send
+; RFC2616 compliant header.
+; Default is zero.
+; https://php.net/cgi.rfc2616-headers
+;cgi.rfc2616_headers = 0
+
+; cgi.check_shebang_line controls whether CGI PHP checks for line starting with #!
+; (shebang) at the top of the running script. This line might be needed if the
+; script support running both as stand-alone script and via PHP CGI<. PHP in CGI
+; mode skips this line and ignores its content if this directive is turned on.
+; https://php.net/cgi.check-shebang-line
+;cgi.check_shebang_line=1
+
+;;;;;;;;;;;;;;;;
+; File Uploads ;
+;;;;;;;;;;;;;;;;
+
+; Whether to allow HTTP file uploads.
+; https://php.net/file-uploads
+file_uploads = On
+
+; Temporary directory for HTTP uploaded files (will use system default if not
+; specified).
+; https://php.net/upload-tmp-dir
+;upload_tmp_dir =
+
+; Maximum allowed size for uploaded files.
+; https://php.net/upload-max-filesize
+upload_max_filesize = 100M
+
+; Maximum number of files that can be uploaded via a single request
+max_file_uploads = 20
+
+;;;;;;;;;;;;;;;;;;
+; Fopen wrappers ;
+;;;;;;;;;;;;;;;;;;
+
+; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
+; https://php.net/allow-url-fopen
+allow_url_fopen = On
+
+; Whether to allow include/require to open URLs (like https:// or ftp://) as files.
+; https://php.net/allow-url-include
+allow_url_include = Off
+
+; Define the anonymous ftp password (your email address). PHP's default setting
+; for this is empty.
+; https://php.net/from
+;from="john@doe.com"
+
+; Define the User-Agent string. PHP's default setting for this is empty.
+; https://php.net/user-agent
+;user_agent="PHP"
+
+; Default timeout for socket based streams (seconds)
+; https://php.net/default-socket-timeout
+default_socket_timeout = 60
+
+; If your scripts have to deal with files from Macintosh systems,
+; or you are running on a Mac and need to deal with files from
+; unix or win32 systems, setting this flag will cause PHP to
+; automatically detect the EOL character in those files so that
+; fgets() and file() will work regardless of the source of the file.
+; https://php.net/auto-detect-line-endings
+;auto_detect_line_endings = Off
+
+;;;;;;;;;;;;;;;;;;;;;;
+; Dynamic Extensions ;
+;;;;;;;;;;;;;;;;;;;;;;
+
+; If you wish to have an extension loaded automatically, use the following
+; syntax:
+;
+; extension=modulename
+;
+; For example:
+;
+; extension=mysqli
+;
+; When the extension library to load is not located in the default extension
+; directory, You may specify an absolute path to the library file:
+;
+; extension=/path/to/extension/mysqli.so
+;
+; Note : The syntax used in previous PHP versions ('extension=.so' and
+; 'extension='php_.dll') is supported for legacy reasons and may be
+; deprecated in a future PHP major version. So, when it is possible, please
+; move to the new ('extension=) syntax.
+;
+; Notes for Windows environments :
+;
+; - Many DLL files are located in the ext/
+; extension folders as well as the separate PECL DLL download.
+; Be sure to appropriately set the extension_dir directive.
+;
+;extension=bz2
+;extension=curl
+;extension=ffi
+;extension=ftp
+;extension=fileinfo
+;extension=gd
+;extension=gettext
+;extension=gmp
+;extension=intl
+;extension=ldap
+;extension=mbstring
+;extension=exif ; Must be after mbstring as it depends on it
+;extension=mysqli
+;extension=odbc
+;extension=openssl
+;extension=pdo_firebird
+;extension=pdo_mysql
+;extension=pdo_odbc
+;extension=pdo_pgsql
+;extension=pdo_sqlite
+;extension=pgsql
+;extension=shmop
+
+; The MIBS data available in the PHP distribution must be installed.
+; See https://www.php.net/manual/en/snmp.installation.php
+;extension=snmp
+
+;extension=soap
+;extension=sockets
+;extension=sodium
+;extension=sqlite3
+;extension=tidy
+;extension=xsl
+;extension=zip
+
+;zend_extension=opcache
+
+;;;;;;;;;;;;;;;;;;;
+; Module Settings ;
+;;;;;;;;;;;;;;;;;;;
+
+[CLI Server]
+; Whether the CLI web server uses ANSI color coding in its terminal output.
+cli_server.color = On
+
+[Date]
+; Defines the default timezone used by the date functions
+; https://php.net/date.timezone
+;date.timezone =
+
+; https://php.net/date.default-latitude
+;date.default_latitude = 31.7667
+
+; https://php.net/date.default-longitude
+;date.default_longitude = 35.2333
+
+; https://php.net/date.sunrise-zenith
+;date.sunrise_zenith = 90.833333
+
+; https://php.net/date.sunset-zenith
+;date.sunset_zenith = 90.833333
+
+[filter]
+; https://php.net/filter.default
+;filter.default = unsafe_raw
+
+; https://php.net/filter.default-flags
+;filter.default_flags =
+
+[iconv]
+; Use of this INI entry is deprecated, use global input_encoding instead.
+; If empty, default_charset or input_encoding or iconv.input_encoding is used.
+; The precedence is: default_charset < input_encoding < iconv.input_encoding
+;iconv.input_encoding =
+
+; Use of this INI entry is deprecated, use global internal_encoding instead.
+; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
+; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
+;iconv.internal_encoding =
+
+; Use of this INI entry is deprecated, use global output_encoding instead.
+; If empty, default_charset or output_encoding or iconv.output_encoding is used.
+; The precedence is: default_charset < output_encoding < iconv.output_encoding
+; To use an output encoding conversion, iconv's output handler must be set
+; otherwise output encoding conversion cannot be performed.
+;iconv.output_encoding =
+
+[intl]
+;intl.default_locale =
+; This directive allows you to produce PHP errors when some error
+; happens within intl functions. The value is the level of the error produced.
+; Default is 0, which does not produce any errors.
+;intl.error_level = E_WARNING
+;intl.use_exceptions = 0
+
+[sqlite3]
+; Directory pointing to SQLite3 extensions
+; https://php.net/sqlite3.extension-dir
+;sqlite3.extension_dir =
+
+; SQLite defensive mode flag (only available from SQLite 3.26+)
+; When the defensive flag is enabled, language features that allow ordinary
+; SQL to deliberately corrupt the database file are disabled. This forbids
+; writing directly to the schema, shadow tables (eg. FTS data tables), or
+; the sqlite_dbpage virtual table.
+; https://www.sqlite.org/c3ref/c_dbconfig_defensive.html
+; (for older SQLite versions, this flag has no use)
+;sqlite3.defensive = 1
+
+[Pcre]
+; PCRE library backtracking limit.
+; https://php.net/pcre.backtrack-limit
+;pcre.backtrack_limit=100000
+
+; PCRE library recursion limit.
+; Please note that if you set this value to a high number you may consume all
+; the available process stack and eventually crash PHP (due to reaching the
+; stack size limit imposed by the Operating System).
+; https://php.net/pcre.recursion-limit
+;pcre.recursion_limit=100000
+
+; Enables or disables JIT compilation of patterns. This requires the PCRE
+; library to be compiled with JIT support.
+;pcre.jit=1
+
+[Pdo]
+; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off"
+; https://php.net/pdo-odbc.connection-pooling
+;pdo_odbc.connection_pooling=strict
+
+[Pdo_mysql]
+; Default socket name for local MySQL connects. If empty, uses the built-in
+; MySQL defaults.
+pdo_mysql.default_socket=
+
+[Phar]
+; https://php.net/phar.readonly
+;phar.readonly = On
+
+; https://php.net/phar.require-hash
+;phar.require_hash = On
+
+;phar.cache_list =
+
+[mail function]
+; For Win32 only.
+; https://php.net/smtp
+SMTP = localhost
+; https://php.net/smtp-port
+smtp_port = 25
+
+; For Win32 only.
+; https://php.net/sendmail-from
+;sendmail_from = me@example.com
+
+; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
+; https://php.net/sendmail-path
+;sendmail_path =
+
+; Force the addition of the specified parameters to be passed as extra parameters
+; to the sendmail binary. These parameters will always replace the value of
+; the 5th parameter to mail().
+;mail.force_extra_parameters =
+
+; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
+mail.add_x_header = Off
+
+; Use mixed LF and CRLF line separators to keep compatibility with some
+; RFC 2822 non conformant MTA.
+mail.mixed_lf_and_crlf = Off
+
+; The path to a log file that will log all mail() calls. Log entries include
+; the full path of the script, line number, To address and headers.
+;mail.log =
+; Log mail to syslog (Event Log on Windows).
+;mail.log = syslog
+
+[ODBC]
+; https://php.net/odbc.default-db
+;odbc.default_db = Not yet implemented
+
+; https://php.net/odbc.default-user
+;odbc.default_user = Not yet implemented
+
+; https://php.net/odbc.default-pw
+;odbc.default_pw = Not yet implemented
+
+; Controls the ODBC cursor model.
+; Default: SQL_CURSOR_STATIC (default).
+;odbc.default_cursortype
+
+; Allow or prevent persistent links.
+; https://php.net/odbc.allow-persistent
+odbc.allow_persistent = On
+
+; Check that a connection is still valid before reuse.
+; https://php.net/odbc.check-persistent
+odbc.check_persistent = On
+
+; Maximum number of persistent links. -1 means no limit.
+; https://php.net/odbc.max-persistent
+odbc.max_persistent = -1
+
+; Maximum number of links (persistent + non-persistent). -1 means no limit.
+; https://php.net/odbc.max-links
+odbc.max_links = -1
+
+; Handling of LONG fields. Returns number of bytes to variables. 0 means
+; passthru.
+; https://php.net/odbc.defaultlrl
+odbc.defaultlrl = 4096
+
+; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
+; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
+; of odbc.defaultlrl and odbc.defaultbinmode
+; https://php.net/odbc.defaultbinmode
+odbc.defaultbinmode = 1
+
+[MySQLi]
+
+; Maximum number of persistent links. -1 means no limit.
+; https://php.net/mysqli.max-persistent
+mysqli.max_persistent = -1
+
+; Allow accessing, from PHP's perspective, local files with LOAD DATA statements
+; https://php.net/mysqli.allow_local_infile
+;mysqli.allow_local_infile = On
+
+; It allows the user to specify a folder where files that can be sent via LOAD DATA
+; LOCAL can exist. It is ignored if mysqli.allow_local_infile is enabled.
+;mysqli.local_infile_directory =
+
+; Allow or prevent persistent links.
+; https://php.net/mysqli.allow-persistent
+mysqli.allow_persistent = On
+
+; Maximum number of links. -1 means no limit.
+; https://php.net/mysqli.max-links
+mysqli.max_links = -1
+
+; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
+; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
+; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
+; at MYSQL_PORT.
+; https://php.net/mysqli.default-port
+mysqli.default_port = 3306
+
+; Default socket name for local MySQL connects. If empty, uses the built-in
+; MySQL defaults.
+; https://php.net/mysqli.default-socket
+mysqli.default_socket =
+
+; Default host for mysqli_connect() (doesn't apply in safe mode).
+; https://php.net/mysqli.default-host
+mysqli.default_host =
+
+; Default user for mysqli_connect() (doesn't apply in safe mode).
+; https://php.net/mysqli.default-user
+mysqli.default_user =
+
+; Default password for mysqli_connect() (doesn't apply in safe mode).
+; Note that this is generally a *bad* idea to store passwords in this file.
+; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
+; and reveal this password! And of course, any users with read access to this
+; file will be able to reveal the password as well.
+; https://php.net/mysqli.default-pw
+mysqli.default_pw =
+
+; If this option is enabled, closing a persistent connection will rollback
+; any pending transactions of this connection, before it is put back
+; into the persistent connection pool.
+;mysqli.rollback_on_cached_plink = Off
+
+[mysqlnd]
+; Enable / Disable collection of general statistics by mysqlnd which can be
+; used to tune and monitor MySQL operations.
+mysqlnd.collect_statistics = On
+
+; Enable / Disable collection of memory usage statistics by mysqlnd which can be
+; used to tune and monitor MySQL operations.
+mysqlnd.collect_memory_statistics = Off
+
+; Records communication from all extensions using mysqlnd to the specified log
+; file.
+; https://php.net/mysqlnd.debug
+;mysqlnd.debug =
+
+; Defines which queries will be logged.
+;mysqlnd.log_mask = 0
+
+; Default size of the mysqlnd memory pool, which is used by result sets.
+;mysqlnd.mempool_default_size = 16000
+
+; Size of a pre-allocated buffer used when sending commands to MySQL in bytes.
+;mysqlnd.net_cmd_buffer_size = 2048
+
+; Size of a pre-allocated buffer used for reading data sent by the server in
+; bytes.
+;mysqlnd.net_read_buffer_size = 32768
+
+; Timeout for network requests in seconds.
+;mysqlnd.net_read_timeout = 31536000
+
+; SHA-256 Authentication Plugin related. File with the MySQL server public RSA
+; key.
+;mysqlnd.sha256_server_public_key =
+
+[PostgreSQL]
+; Allow or prevent persistent links.
+; https://php.net/pgsql.allow-persistent
+pgsql.allow_persistent = On
+
+; Detect broken persistent links always with pg_pconnect().
+; Auto reset feature requires a little overheads.
+; https://php.net/pgsql.auto-reset-persistent
+pgsql.auto_reset_persistent = Off
+
+; Maximum number of persistent links. -1 means no limit.
+; https://php.net/pgsql.max-persistent
+pgsql.max_persistent = -1
+
+; Maximum number of links (persistent+non persistent). -1 means no limit.
+; https://php.net/pgsql.max-links
+pgsql.max_links = -1
+
+; Ignore PostgreSQL backends Notice message or not.
+; Notice message logging require a little overheads.
+; https://php.net/pgsql.ignore-notice
+pgsql.ignore_notice = 0
+
+; Log PostgreSQL backends Notice message or not.
+; Unless pgsql.ignore_notice=0, module cannot log notice message.
+; https://php.net/pgsql.log-notice
+pgsql.log_notice = 0
+
+[bcmath]
+; Number of decimal digits for all bcmath functions.
+; https://php.net/bcmath.scale
+bcmath.scale = 0
+
+[browscap]
+; https://php.net/browscap
+;browscap = extra/browscap.ini
+
+[Session]
+; Handler used to store/retrieve data.
+; https://php.net/session.save-handler
+session.save_handler = files
+
+; Argument passed to save_handler. In the case of files, this is the path
+; where data files are stored. Note: Windows users have to change this
+; variable in order to use PHP's session functions.
+;
+; The path can be defined as:
+;
+; session.save_path = "N;/path"
+;
+; where N is an integer. Instead of storing all the session files in
+; /path, what this will do is use subdirectories N-levels deep, and
+; store the session data in those directories. This is useful if
+; your OS has problems with many files in one directory, and is
+; a more efficient layout for servers that handle many sessions.
+;
+; NOTE 1: PHP will not create this directory structure automatically.
+; You can use the script in the ext/session dir for that purpose.
+; NOTE 2: See the section on garbage collection below if you choose to
+; use subdirectories for session storage
+;
+; The file storage module creates files using mode 600 by default.
+; You can change that by using
+;
+; session.save_path = "N;MODE;/path"
+;
+; where MODE is the octal representation of the mode. Note that this
+; does not overwrite the process's umask.
+; https://php.net/session.save-path
+;session.save_path = "/tmp"
+
+; Whether to use strict session mode.
+; Strict session mode does not accept an uninitialized session ID, and
+; regenerates the session ID if the browser sends an uninitialized session ID.
+; Strict mode protects applications from session fixation via a session adoption
+; vulnerability. It is disabled by default for maximum compatibility, but
+; enabling it is encouraged.
+; https://wiki.php.net/rfc/strict_sessions
+session.use_strict_mode = 0
+
+; Whether to use cookies.
+; https://php.net/session.use-cookies
+session.use_cookies = 1
+
+; https://php.net/session.cookie-secure
+;session.cookie_secure =
+
+; This option forces PHP to fetch and use a cookie for storing and maintaining
+; the session id. We encourage this operation as it's very helpful in combating
+; session hijacking when not specifying and managing your own session id. It is
+; not the be-all and end-all of session hijacking defense, but it's a good start.
+; https://php.net/session.use-only-cookies
+session.use_only_cookies = 1
+
+; Name of the session (used as cookie name).
+; https://php.net/session.name
+session.name = PHPSESSID
+
+; Initialize session on request startup.
+; https://php.net/session.auto-start
+session.auto_start = 0
+
+; Lifetime in seconds of cookie or, if 0, until browser is restarted.
+; https://php.net/session.cookie-lifetime
+session.cookie_lifetime = 0
+
+; The path for which the cookie is valid.
+; https://php.net/session.cookie-path
+session.cookie_path = /
+
+; The domain for which the cookie is valid.
+; https://php.net/session.cookie-domain
+session.cookie_domain =
+
+; Whether or not to add the httpOnly flag to the cookie, which makes it
+; inaccessible to browser scripting languages such as JavaScript.
+; https://php.net/session.cookie-httponly
+session.cookie_httponly =
+
+; Add SameSite attribute to cookie to help mitigate Cross-Site Request Forgery (CSRF/XSRF)
+; Current valid values are "Strict", "Lax" or "None". When using "None",
+; make sure to include the quotes, as `none` is interpreted like `false` in ini files.
+; https://tools.ietf.org/html/draft-west-first-party-cookies-07
+session.cookie_samesite =
+
+; Handler used to serialize data. php is the standard serializer of PHP.
+; https://php.net/session.serialize-handler
+session.serialize_handler = php
+
+; Defines the probability that the 'garbage collection' process is started on every
+; session initialization. The probability is calculated by using gc_probability/gc_divisor,
+; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
+; Default Value: 1
+; Development Value: 1
+; Production Value: 1
+; https://php.net/session.gc-probability
+session.gc_probability = 1
+
+; Defines the probability that the 'garbage collection' process is started on every
+; session initialization. The probability is calculated by using gc_probability/gc_divisor,
+; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
+; For high volume production servers, using a value of 1000 is a more efficient approach.
+; Default Value: 100
+; Development Value: 1000
+; Production Value: 1000
+; https://php.net/session.gc-divisor
+session.gc_divisor = 1000
+
+; After this number of seconds, stored data will be seen as 'garbage' and
+; cleaned up by the garbage collection process.
+; https://php.net/session.gc-maxlifetime
+session.gc_maxlifetime = 1440
+
+; NOTE: If you are using the subdirectory option for storing session files
+; (see session.save_path above), then garbage collection does *not*
+; happen automatically. You will need to do your own garbage
+; collection through a shell script, cron entry, or some other method.
+; For example, the following script is the equivalent of setting
+; session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
+; find /path/to/sessions -cmin +24 -type f | xargs rm
+
+; Check HTTP Referer to invalidate externally stored URLs containing ids.
+; HTTP_REFERER has to contain this substring for the session to be
+; considered as valid.
+; https://php.net/session.referer-check
+session.referer_check =
+
+; Set to {nocache,private,public,} to determine HTTP caching aspects
+; or leave this empty to avoid sending anti-caching headers.
+; https://php.net/session.cache-limiter
+session.cache_limiter = nocache
+
+; Document expires after n minutes.
+; https://php.net/session.cache-expire
+session.cache_expire = 180
+
+; trans sid support is disabled by default.
+; Use of trans sid may risk your users' security.
+; Use this option with caution.
+; - User may send URL contains active session ID
+; to other person via. email/irc/etc.
+; - URL that contains active session ID may be stored
+; in publicly accessible computer.
+; - User may access your site with the same session ID
+; always using URL stored in browser's history or bookmarks.
+; https://php.net/session.use-trans-sid
+session.use_trans_sid = 0
+
+; The URL rewriter will look for URLs in a defined set of HTML tags.
+;