diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..df8d4dc9 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,163 @@ +# Da hora ter você por aqui! + +Quer contribuir com código? Nice 🤘 + +Aqui vão alguns passos pra executar o projeto em desenvolvimento. + +## Requisitos + +1. [node.js](https://nodejs.org/pt/download) v20+ +1. [pnpm](https://pnpm.io/installation) instalado +1. [docker](https://docs.docker.com/engine/install) instalado + +## Clone o projeto + +```sh +git clone https://github.com/DeveloperParana/devmx +``` + +## Variáveis de ambiente + +Configure a senha do banco e segredo jwt como quiser para uso local. + +Para isso, renomeie o arquivo [`.env-example`](./.env-example) para `.env` + +```sh +mv .env-example .env +``` + +## Docker + +Essas variáveis são usadas no arquivo [docker-compose.yml](./docker-compose.yml). + +> [!IMPORTANT] +> Primeiro preencha os valores para `DB_USER`, `DB_PASS`, `JWT_SECRET` no arquivo [.env](./.env), salve e só depois disso execute o docker. + + +```sh +docker compose up -d +``` + +## Instalação + +Instale as dependências do projeto + +```sh +pnpm install +``` + +## Execução + +Execute o back-end para criar as collections no banco + +```sh +pnpm dev:server +``` + +Assim que conluir, você já pode finalizar o processo (`Ctrl` + `C` / `Cmd` + `C`), pois você não quer criar dados úteis manualmente, certo? + +## Seeds + +Preparei alguns seeds pra você importar na base de dados, mas primeiro verifique se você tem o comando `mongoimport`, caso não tenha, acesse [este link](https://www.mongodb.com/pt-br/docs/database-tools/installation/installation/#installing-the-database-tools) para saber como instalar. + +> [!NOTE] +> Ele é necessário apenas para importar dados iniciais não obrigatórios, como dados de login com permissões distintas e todas as cidades do brasil com latitude e longitude. + + +Para importar execute, não se esqueça de colocar seu usuário no `--username=seu-user` configurado no [`.env`](./.env). Ao executar, ele irá solicitar a senha que foi configurada no mesmo arquivo. + +### Cidades + +```sh +mongoimport --host=localhost --port=27017 --username= --authenticationDatabase=admin --db=devparana --collection=citycollections --file=assets/seeds/city-collection.json +``` + +### Usuários + +```sh +mongoimport --host=localhost --port=27017 --username= --authenticationDatabase=admin --db=devparana --collection=accountcollections --file=assets/seeds/account-collection.json +``` + +## Agora sim! + +Agora tudo está configurado pra você executar em desenvolvimento, configurei a execução do back-end e front-end no mesmo comando a seguir. + +```sh +pnpm dev +``` + +## Convenção usada em commits + +> [!WARNING] +> Antes de escrever seu commit, execute `lint`, `test` e `build` dos projetos afetados pela sua alteração com o comando `pnpm affected`. + +Os commits podem ser feitos em português, mas use inglês para termos técnicos, não tente traduzi-los quando eles são conhecidos e usados em inglês, por gentileza. + +> [!TIP] +> Use o comando `pnpm commit`, e apenas responda as perguntas, assim seu commit seguirá a convenção utilizada. + + +## Arquitetura + +Trata-se de responsabilidade e relacionamentos, ou seja, qual a responsabilidade de cada camada e quais camadas podem depender diretamente uma das outras. Esta é uma convenção chamada [enforce module boundaries](https://nx.dev/features/enforce-module-boundaries#enforce-module-boundaries) e quem permite que as regras sejam aplicadas é o [nx](https://nx.dev). + +### Responsabilidades e relacionamentos entre tipos de bibliotecas + + +A tabela a seguir representa a configuração no arquivo [`.eslintrc.json`](.eslintrc.json). + +| | api | util | domain | data | ui | feature | resource | app | +| ---------: | :-: | :--: | :----: | :--: | :-: | :-----: | :------: | :-: | +| `api` | ✓ | 𝗫 | 𝗫 | 𝗫 | 𝗫 | 𝗫 | 𝗫 | 𝗫 | +| `util` | ✓ | ✓ | 𝗫 | 𝗫 | 𝗫 | 𝗫 | 𝗫 | 𝗫 | +| `domain` | ✓ | ✓ | ✓ | 𝗫 | 𝗫 | 𝗫 | 𝗫 | 𝗫 | +| `data` | ✓ | ✓ | ✓ | ✓ | 𝗫 | 𝗫 | 𝗫 | 𝗫 | +| `ui` | ✓ | ✓ | 𝗫 | 𝗫 | ✓ | 𝗫 | 𝗫 | 𝗫 | +| `feature` | ✓ | ✓ | 𝗫 | ✓ | ✓ | ✓ | 𝗫 | 𝗫 | +| `resource` | ✓ | ✓ | 𝗫 | ✓ | 𝗫 | 𝗫 | ✓ | 𝗫 | +| `app` | ✓ | ✓ | 𝗫 | ✓ | ✓ | ✓ | ✓ | 𝗫 | + +Caso tenha interesse em aprofundar neste assunto e descobrir os motivos, recomendo que leia um conteúdo que escrevi ano passado, você pode fazer download através do link [Arquitetura em camadas, uma abordagem sobre responsabilidades e relacionamentos](https://conteudode.dev/pdf/nx). + + +--- + + +``` + .......... + .............. + .................. + ........................ + ............................ + ................................ + .................................... + ........................................ + .................. ................... + ............ ..... ...... .................... + ............ ... ... ...... ...................... + .............. .... ... .... .............. + ........ ..... ..... ..... .... ............... + ........ ...... ....... ..... . .... ......... + ......... .... ...... ....... ....... .... ... ......... + ............. ...... .... ........ ..... ... ............ + ................ ........... ........ ...... ............... + ................ ................. ..... ........ ................ + ................ ................ ......... ................ + ................. .............. ............... ................ + .................. .... ................. ............... + .................... ................. ............ + ........................... ............... ........... + ............................ ....... .......... + .......................... . ............ + ........................ .................... + ...................... ...................... + ................... ................... + ................. ................. + ............... ............... + ............. ............. + ........... ........... + :........ ......... + ...... ...... + .... .... + .. .. +``` diff --git a/README.md b/README.md index 2f1d789a..bf20fb3b 100644 --- a/README.md +++ b/README.md @@ -8,76 +8,4 @@ # dev member experience -## Para executar em dev - -### Requisitos - -1. [pnpm](https://pnpm.io/installation) instalado -1. [docker](https://docs.docker.com/engine/install) instalado - -### Configurações - -Clone o projeto - -```sh -git clone https://github.com/DeveloperParana/devmx -``` - -Configure a senha do banco e segredo jwt como quiser para uso local - -```sh -mv .env-example .env -``` - -Preencha os valores para `DB_USER`, `DB_PASS`, `JWT_SECRET` e salve antes de executar o docker. - -```sh -docker compose up -d -``` - -Instale as dependências - -```sh -pnpm install -``` - -Execute o back-end e front-end - -```sh -pnpm dev -``` - -## Para commits - -Antes de escrever seu commit, execute lint, test e build dos projetos afetados pela sua alteração. - -```sh -pnpm affected -``` - -Os commits podem ser feitos em português, mas use inglês para termos técnicos, não tente traduzi-los quando eles são conhecidos e usados em inglês. - -```sh -pnpm cmt -``` - -Responda as perguntas para fazer o commit. - -## Responsabilidades e relacionamentos - -Trata-se de responsabilidade e relacionamentos, ou seja, qual a responsabilidade de cada camada e quais camadas podem depender diretamente uma das outras. Esta é uma convenção chamada [enforce module boundaries](https://nx.dev/features/enforce-module-boundaries#enforce-module-boundaries) e quem permite que as regras sejam aplicadas é o [nx](https://nx.dev). - -A tabela a seguir representa a configuração no arquivo [`.eslintrc.json`](.eslintrc.json). - -| | api | util | domain | data | ui | feature | resource | app | -| ---------: | :-: | :--: | :----: | :--: | :-: | :-----: | :------: | :-: | -| `api` | ✓ | 𝗫 | 𝗫 | 𝗫 | 𝗫 | 𝗫 | 𝗫 | 𝗫 | -| `util` | ✓ | ✓ | 𝗫 | 𝗫 | 𝗫 | 𝗫 | 𝗫 | 𝗫 | -| `domain` | ✓ | ✓ | ✓ | 𝗫 | 𝗫 | 𝗫 | 𝗫 | 𝗫 | -| `data` | ✓ | ✓ | ✓ | ✓ | 𝗫 | 𝗫 | 𝗫 | 𝗫 | -| `ui` | ✓ | ✓ | 𝗫 | 𝗫 | ✓ | 𝗫 | 𝗫 | 𝗫 | -| `feature` | ✓ | ✓ | 𝗫 | ✓ | ✓ | ✓ | 𝗫 | 𝗫 | -| `resource` | ✓ | ✓ | 𝗫 | ✓ | 𝗫 | 𝗫 | ✓ | 𝗫 | -| `app` | ✓ | ✓ | 𝗫 | ✓ | ✓ | ✓ | ✓ | 𝗫 | - -Caso tenha interesse em aprofundar neste assunto e descobrir os motivos, recomendo que leia um conteúdo que escrevi ano passado, você pode fazer download através do link [Arquitetura em camadas, uma abordagem sobre responsabilidades e relacionamentos](https://conteudode.dev/pdf/nx). +Quer contribuir? Siga este guia 👉 [CONTRIBUTING](./CONTRIBUTING.md) diff --git a/assets/data/cities.json b/assets/data/cities.json deleted file mode 100644 index 217e8f80..00000000 --- a/assets/data/cities.json +++ /dev/null @@ -1,89122 +0,0 @@ -[ - { - "ibge": 5200050, - "name": "Abadia de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 1050, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.7573, - -49.4412 - ] - } - }, - { - "ibge": 3100104, - "name": "Abadia dos Dourados", - "capital": 0, - "ibgeState": 31, - "siafi": 4001, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4831, - -47.3916 - ] - } - }, - { - "ibge": 5200100, - "name": "Abadiânia", - "capital": 0, - "ibgeState": 52, - "siafi": 9201, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.197, - -48.7057 - ] - } - }, - { - "ibge": 3100203, - "name": "Abaeté", - "capital": 0, - "ibgeState": 31, - "siafi": 4003, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.1551, - -45.4444 - ] - } - }, - { - "ibge": 1500107, - "name": "Abaetetuba", - "capital": 0, - "ibgeState": 15, - "siafi": 401, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.72183, - -48.8788 - ] - } - }, - { - "ibge": 2300101, - "name": "Abaiara", - "capital": 0, - "ibgeState": 23, - "siafi": 1301, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.34588, - -39.0416 - ] - } - }, - { - "ibge": 2900108, - "name": "Abaíra", - "capital": 0, - "ibgeState": 29, - "siafi": 3301, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.2488, - -41.6619 - ] - } - }, - { - "ibge": 2900207, - "name": "Abaré", - "capital": 0, - "ibgeState": 29, - "siafi": 3303, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.72073, - -39.1162 - ] - } - }, - { - "ibge": 4100103, - "name": "Abatiá", - "capital": 0, - "ibgeState": 41, - "siafi": 7401, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3049, - -50.3133 - ] - } - }, - { - "ibge": 4200051, - "name": "Abdon Batista", - "capital": 0, - "ibgeState": 42, - "siafi": 9939, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6126, - -51.0233 - ] - } - }, - { - "ibge": 1500131, - "name": "Abel Figueiredo", - "capital": 0, - "ibgeState": 15, - "siafi": 375, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.95333, - -48.3933 - ] - } - }, - { - "ibge": 4200101, - "name": "Abelardo Luz", - "capital": 0, - "ibgeState": 42, - "siafi": 8001, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.5716, - -52.3229 - ] - } - }, - { - "ibge": 3100302, - "name": "Abre Campo", - "capital": 0, - "ibgeState": 31, - "siafi": 4005, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2996, - -42.4743 - ] - } - }, - { - "ibge": 2600054, - "name": "Abreu e Lima", - "capital": 0, - "ibgeState": 26, - "siafi": 2631, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.90072, - -34.8984 - ] - } - }, - { - "ibge": 1700251, - "name": "Abreulândia", - "capital": 0, - "ibgeState": 17, - "siafi": 337, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.62101, - -49.1518 - ] - } - }, - { - "ibge": 3100401, - "name": "Acaiaca", - "capital": 0, - "ibgeState": 31, - "siafi": 4007, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.359, - -43.1439 - ] - } - }, - { - "ibge": 2100055, - "name": "Açailândia", - "capital": 0, - "ibgeState": 21, - "siafi": 961, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.94714, - -47.5004 - ] - } - }, - { - "ibge": 2900306, - "name": "Acajutiba", - "capital": 0, - "ibgeState": 29, - "siafi": 3305, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.6575, - -38.0197 - ] - } - }, - { - "ibge": 1500206, - "name": "Acará", - "capital": 0, - "ibgeState": 15, - "siafi": 403, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.95383, - -48.1985 - ] - } - }, - { - "ibge": 2300150, - "name": "Acarape", - "capital": 0, - "ibgeState": 23, - "siafi": 1231, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.22083, - -38.7055 - ] - } - }, - { - "ibge": 2300200, - "name": "Acaraú", - "capital": 0, - "ibgeState": 23, - "siafi": 1303, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.88769, - -40.1183 - ] - } - }, - { - "ibge": 2400109, - "name": "Acari", - "capital": 0, - "ibgeState": 24, - "siafi": 1601, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.4282, - -36.6347 - ] - } - }, - { - "ibge": 2200053, - "name": "Acauã", - "capital": 0, - "ibgeState": 22, - "siafi": 266, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.21954, - -41.0831 - ] - } - }, - { - "ibge": 4300034, - "name": "Aceguá", - "capital": 0, - "ibgeState": 43, - "siafi": 1118, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.8665, - -54.1615 - ] - } - }, - { - "ibge": 2300309, - "name": "Acopiara", - "capital": 0, - "ibgeState": 23, - "siafi": 1305, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.08911, - -39.448 - ] - } - }, - { - "ibge": 5100102, - "name": "Acorizal", - "capital": 0, - "ibgeState": 51, - "siafi": 9001, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.194, - -56.3632 - ] - } - }, - { - "ibge": 1200013, - "name": "Acrelândia", - "capital": 0, - "ibgeState": 12, - "siafi": 643, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -9.82581, - -66.8972 - ] - } - }, - { - "ibge": 5200134, - "name": "Acreúna", - "capital": 0, - "ibgeState": 52, - "siafi": 9645, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.396, - -50.3749 - ] - } - }, - { - "ibge": 2400208, - "name": "Açu", - "capital": 0, - "ibgeState": 24, - "siafi": 1603, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.58362, - -36.914 - ] - } - }, - { - "ibge": 3100500, - "name": "Açucena", - "capital": 0, - "ibgeState": 31, - "siafi": 4009, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.0671, - -42.5419 - ] - } - }, - { - "ibge": 3500105, - "name": "Adamantina", - "capital": 0, - "ibgeState": 35, - "siafi": 6101, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.682, - -51.0737 - ] - } - }, - { - "ibge": 5200159, - "name": "Adelândia", - "capital": 0, - "ibgeState": 52, - "siafi": 9769, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.4127, - -50.1657 - ] - } - }, - { - "ibge": 3500204, - "name": "Adolfo", - "capital": 0, - "ibgeState": 35, - "siafi": 6103, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2325, - -49.6451 - ] - } - }, - { - "ibge": 4100202, - "name": "Adrianópolis", - "capital": 0, - "ibgeState": 41, - "siafi": 7403, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.6606, - -48.9922 - ] - } - }, - { - "ibge": 2900355, - "name": "Adustina", - "capital": 0, - "ibgeState": 29, - "siafi": 3253, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.5437, - -38.1113 - ] - } - }, - { - "ibge": 2600104, - "name": "Afogados da Ingazeira", - "capital": 0, - "ibgeState": 26, - "siafi": 2301, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.74312, - -37.631 - ] - } - }, - { - "ibge": 2400307, - "name": "Afonso Bezerra", - "capital": 0, - "ibgeState": 24, - "siafi": 1605, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.49229, - -36.5075 - ] - } - }, - { - "ibge": 3200102, - "name": "Afonso Cláudio", - "capital": 0, - "ibgeState": 32, - "siafi": 5601, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0778, - -41.1261 - ] - } - }, - { - "ibge": 2100105, - "name": "Afonso Cunha", - "capital": 0, - "ibgeState": 21, - "siafi": 701, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.13631, - -43.3275 - ] - } - }, - { - "ibge": 2600203, - "name": "Afrânio", - "capital": 0, - "ibgeState": 26, - "siafi": 2303, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.51136, - -41.0095 - ] - } - }, - { - "ibge": 1500305, - "name": "Afuá", - "capital": 0, - "ibgeState": 15, - "siafi": 405, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.154874, - -50.3861 - ] - } - }, - { - "ibge": 2600302, - "name": "Agrestina", - "capital": 0, - "ibgeState": 26, - "siafi": 2305, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.45966, - -35.9447 - ] - } - }, - { - "ibge": 2200103, - "name": "Agricolândia", - "capital": 0, - "ibgeState": 22, - "siafi": 1001, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.79676, - -42.6664 - ] - } - }, - { - "ibge": 4200200, - "name": "Agrolândia", - "capital": 0, - "ibgeState": 42, - "siafi": 8003, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4087, - -49.822 - ] - } - }, - { - "ibge": 4200309, - "name": "Agronômica", - "capital": 0, - "ibgeState": 42, - "siafi": 8005, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2662, - -49.708 - ] - } - }, - { - "ibge": 1500347, - "name": "Água Azul do Norte", - "capital": 0, - "ibgeState": 15, - "siafi": 383, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.79053, - -50.4791 - ] - } - }, - { - "ibge": 3100609, - "name": "Água Boa", - "capital": 0, - "ibgeState": 31, - "siafi": 4011, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.9914, - -42.3806 - ] - } - }, - { - "ibge": 5100201, - "name": "Água Boa", - "capital": 0, - "ibgeState": 51, - "siafi": 9191, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.051, - -52.1601 - ] - } - }, - { - "ibge": 2200202, - "name": "Água Branca", - "capital": 0, - "ibgeState": 22, - "siafi": 1003, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.88856, - -42.637 - ] - } - }, - { - "ibge": 2500106, - "name": "Água Branca", - "capital": 0, - "ibgeState": 25, - "siafi": 1901, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.51144, - -37.6357 - ] - } - }, - { - "ibge": 2700102, - "name": "Água Branca", - "capital": 0, - "ibgeState": 27, - "siafi": 2701, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.262, - -37.938 - ] - } - }, - { - "ibge": 5000203, - "name": "Água Clara", - "capital": 0, - "ibgeState": 50, - "siafi": 9003, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -20.4452, - -52.879 - ] - } - }, - { - "ibge": 3100708, - "name": "Água Comprida", - "capital": 0, - "ibgeState": 31, - "siafi": 4013, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0576, - -48.1069 - ] - } - }, - { - "ibge": 4200408, - "name": "Água Doce", - "capital": 0, - "ibgeState": 42, - "siafi": 8007, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9985, - -51.5528 - ] - } - }, - { - "ibge": 2100154, - "name": "Água Doce do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 104, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.84048, - -42.1189 - ] - } - }, - { - "ibge": 3200169, - "name": "Água Doce do Norte", - "capital": 0, - "ibgeState": 32, - "siafi": 5717, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5482, - -40.9854 - ] - } - }, - { - "ibge": 2900405, - "name": "Água Fria", - "capital": 0, - "ibgeState": 29, - "siafi": 3307, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.8618, - -38.7639 - ] - } - }, - { - "ibge": 5200175, - "name": "Água Fria de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9771, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.9778, - -47.7823 - ] - } - }, - { - "ibge": 5200209, - "name": "Água Limpa", - "capital": 0, - "ibgeState": 52, - "siafi": 9203, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.0771, - -48.7603 - ] - } - }, - { - "ibge": 2400406, - "name": "Água Nova", - "capital": 0, - "ibgeState": 24, - "siafi": 1607, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.20351, - -38.2941 - ] - } - }, - { - "ibge": 2600401, - "name": "Água Preta", - "capital": 0, - "ibgeState": 26, - "siafi": 2307, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.70609, - -35.5263 - ] - } - }, - { - "ibge": 4300059, - "name": "Água Santa", - "capital": 0, - "ibgeState": 43, - "siafi": 8499, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.1672, - -52.031 - ] - } - }, - { - "ibge": 3500303, - "name": "Aguaí", - "capital": 0, - "ibgeState": 35, - "siafi": 6105, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0572, - -46.9735 - ] - } - }, - { - "ibge": 3100807, - "name": "Aguanil", - "capital": 0, - "ibgeState": 31, - "siafi": 4015, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9439, - -45.3915 - ] - } - }, - { - "ibge": 2600500, - "name": "Águas Belas", - "capital": 0, - "ibgeState": 26, - "siafi": 2309, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.11125, - -37.1226 - ] - } - }, - { - "ibge": 3500402, - "name": "Águas da Prata", - "capital": 0, - "ibgeState": 35, - "siafi": 6107, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9319, - -46.7176 - ] - } - }, - { - "ibge": 4200507, - "name": "Águas de Chapecó", - "capital": 0, - "ibgeState": 42, - "siafi": 8009, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0754, - -52.9808 - ] - } - }, - { - "ibge": 3500501, - "name": "Águas de Lindóia", - "capital": 0, - "ibgeState": 35, - "siafi": 6109, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4733, - -46.6314 - ] - } - }, - { - "ibge": 3500550, - "name": "Águas de Santa Bárbara", - "capital": 0, - "ibgeState": 35, - "siafi": 7019, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8812, - -49.2421 - ] - } - }, - { - "ibge": 3500600, - "name": "Águas de São Pedro", - "capital": 0, - "ibgeState": 35, - "siafi": 6111, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5977, - -47.8734 - ] - } - }, - { - "ibge": 3100906, - "name": "Águas Formosas", - "capital": 0, - "ibgeState": 31, - "siafi": 4017, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.0802, - -40.9384 - ] - } - }, - { - "ibge": 4200556, - "name": "Águas Frias", - "capital": 0, - "ibgeState": 42, - "siafi": 5577, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.8794, - -52.8568 - ] - } - }, - { - "ibge": 5200258, - "name": "Águas Lindas de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 1052, - "ddd": 61, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.7617, - -48.2816 - ] - } - }, - { - "ibge": 4200606, - "name": "Águas Mornas", - "capital": 0, - "ibgeState": 42, - "siafi": 8011, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6963, - -48.8243 - ] - } - }, - { - "ibge": 3101003, - "name": "Águas Vermelhas", - "capital": 0, - "ibgeState": 31, - "siafi": 4019, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.7431, - -41.4571 - ] - } - }, - { - "ibge": 4300109, - "name": "Agudo", - "capital": 0, - "ibgeState": 43, - "siafi": 8501, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6447, - -53.2515 - ] - } - }, - { - "ibge": 3500709, - "name": "Agudos", - "capital": 0, - "ibgeState": 35, - "siafi": 6113, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4694, - -48.9863 - ] - } - }, - { - "ibge": 4100301, - "name": "Agudos do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 7405, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.9899, - -49.3343 - ] - } - }, - { - "ibge": 3200136, - "name": "Águia Branca", - "capital": 0, - "ibgeState": 32, - "siafi": 5733, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.9846, - -40.7437 - ] - } - }, - { - "ibge": 2500205, - "name": "Aguiar", - "capital": 0, - "ibgeState": 25, - "siafi": 1903, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.0918, - -38.1681 - ] - } - }, - { - "ibge": 1700301, - "name": "Aguiarnópolis", - "capital": 0, - "ibgeState": 17, - "siafi": 72, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.55409, - -47.4702 - ] - } - }, - { - "ibge": 3101102, - "name": "Aimorés", - "capital": 0, - "ibgeState": 31, - "siafi": 4021, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5007, - -41.0746 - ] - } - }, - { - "ibge": 2900603, - "name": "Aiquara", - "capital": 0, - "ibgeState": 29, - "siafi": 3311, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.1269, - -39.8937 - ] - } - }, - { - "ibge": 2300408, - "name": "Aiuaba", - "capital": 0, - "ibgeState": 23, - "siafi": 1307, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.57122, - -40.1178 - ] - } - }, - { - "ibge": 3101201, - "name": "Aiuruoca", - "capital": 0, - "ibgeState": 31, - "siafi": 4023, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9736, - -44.6042 - ] - } - }, - { - "ibge": 4300208, - "name": "Ajuricaba", - "capital": 0, - "ibgeState": 43, - "siafi": 8503, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.2342, - -53.7757 - ] - } - }, - { - "ibge": 3101300, - "name": "Alagoa", - "capital": 0, - "ibgeState": 31, - "siafi": 4025, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.171, - -44.6413 - ] - } - }, - { - "ibge": 2500304, - "name": "Alagoa Grande", - "capital": 0, - "ibgeState": 25, - "siafi": 1905, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.03943, - -35.6206 - ] - } - }, - { - "ibge": 2500403, - "name": "Alagoa Nova", - "capital": 0, - "ibgeState": 25, - "siafi": 1907, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.05377, - -35.7591 - ] - } - }, - { - "ibge": 2500502, - "name": "Alagoinha", - "capital": 0, - "ibgeState": 25, - "siafi": 1909, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.94657, - -35.5332 - ] - } - }, - { - "ibge": 2600609, - "name": "Alagoinha", - "capital": 0, - "ibgeState": 26, - "siafi": 2311, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.4665, - -36.7788 - ] - } - }, - { - "ibge": 2200251, - "name": "Alagoinha do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 9767, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.00039, - -40.9282 - ] - } - }, - { - "ibge": 2900702, - "name": "Alagoinhas", - "capital": 0, - "ibgeState": 29, - "siafi": 3313, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.1335, - -38.4208 - ] - } - }, - { - "ibge": 3500758, - "name": "Alambari", - "capital": 0, - "ibgeState": 35, - "siafi": 2995, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5503, - -47.898 - ] - } - }, - { - "ibge": 3101409, - "name": "Albertina", - "capital": 0, - "ibgeState": 31, - "siafi": 4027, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2018, - -46.6139 - ] - } - }, - { - "ibge": 2100204, - "name": "Alcântara", - "capital": 0, - "ibgeState": 21, - "siafi": 703, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.39574, - -44.4062 - ] - } - }, - { - "ibge": 2300507, - "name": "Alcântaras", - "capital": 0, - "ibgeState": 23, - "siafi": 1309, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.58537, - -40.5479 - ] - } - }, - { - "ibge": 2500536, - "name": "Alcantil", - "capital": 0, - "ibgeState": 25, - "siafi": 440, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.73668, - -36.0511 - ] - } - }, - { - "ibge": 5000252, - "name": "Alcinópolis", - "capital": 0, - "ibgeState": 50, - "siafi": 141, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -18.3255, - -53.7042 - ] - } - }, - { - "ibge": 2900801, - "name": "Alcobaça", - "capital": 0, - "ibgeState": 29, - "siafi": 3315, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.5195, - -39.2036 - ] - } - }, - { - "ibge": 2100303, - "name": "Aldeias Altas", - "capital": 0, - "ibgeState": 21, - "siafi": 705, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.62621, - -43.4689 - ] - } - }, - { - "ibge": 4300307, - "name": "Alecrim", - "capital": 0, - "ibgeState": 43, - "siafi": 8505, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6579, - -54.7649 - ] - } - }, - { - "ibge": 3200201, - "name": "Alegre", - "capital": 0, - "ibgeState": 32, - "siafi": 5603, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.758, - -41.5382 - ] - } - }, - { - "ibge": 4300406, - "name": "Alegrete", - "capital": 0, - "ibgeState": 43, - "siafi": 8507, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.7902, - -55.7949 - ] - } - }, - { - "ibge": 2200277, - "name": "Alegrete do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 2269, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.24196, - -40.8566 - ] - } - }, - { - "ibge": 4300455, - "name": "Alegria", - "capital": 0, - "ibgeState": 43, - "siafi": 8497, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.8345, - -54.0557 - ] - } - }, - { - "ibge": 3101508, - "name": "Além Paraíba", - "capital": 0, - "ibgeState": 31, - "siafi": 4029, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8797, - -42.7176 - ] - } - }, - { - "ibge": 1500404, - "name": "Alenquer", - "capital": 0, - "ibgeState": 15, - "siafi": 407, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.94623, - -54.7384 - ] - } - }, - { - "ibge": 2400505, - "name": "Alexandria", - "capital": 0, - "ibgeState": 24, - "siafi": 1609, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.40533, - -38.0142 - ] - } - }, - { - "ibge": 5200308, - "name": "Alexânia", - "capital": 0, - "ibgeState": 52, - "siafi": 9205, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0834, - -48.5076 - ] - } - }, - { - "ibge": 3101607, - "name": "Alfenas", - "capital": 0, - "ibgeState": 31, - "siafi": 4031, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4256, - -45.9477 - ] - } - }, - { - "ibge": 3200300, - "name": "Alfredo Chaves", - "capital": 0, - "ibgeState": 32, - "siafi": 5605, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6396, - -40.7543 - ] - } - }, - { - "ibge": 3500808, - "name": "Alfredo Marcondes", - "capital": 0, - "ibgeState": 35, - "siafi": 6115, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9527, - -51.414 - ] - } - }, - { - "ibge": 3101631, - "name": "Alfredo Vasconcelos", - "capital": 0, - "ibgeState": 31, - "siafi": 2681, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1535, - -43.7718 - ] - } - }, - { - "ibge": 4200705, - "name": "Alfredo Wagner", - "capital": 0, - "ibgeState": 42, - "siafi": 8013, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7001, - -49.3273 - ] - } - }, - { - "ibge": 2500577, - "name": "Algodão de Jandaíra", - "capital": 0, - "ibgeState": 25, - "siafi": 442, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.89292, - -36.0129 - ] - } - }, - { - "ibge": 2500601, - "name": "Alhandra", - "capital": 0, - "ibgeState": 25, - "siafi": 1911, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.42977, - -34.9057 - ] - } - }, - { - "ibge": 2600708, - "name": "Aliança", - "capital": 0, - "ibgeState": 26, - "siafi": 2313, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.60398, - -35.2227 - ] - } - }, - { - "ibge": 1700350, - "name": "Aliança do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9441, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.3056, - -48.9361 - ] - } - }, - { - "ibge": 2900900, - "name": "Almadina", - "capital": 0, - "ibgeState": 29, - "siafi": 3317, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.7089, - -39.6415 - ] - } - }, - { - "ibge": 1700400, - "name": "Almas", - "capital": 0, - "ibgeState": 17, - "siafi": 9207, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.5706, - -47.1792 - ] - } - }, - { - "ibge": 1500503, - "name": "Almeirim", - "capital": 0, - "ibgeState": 15, - "siafi": 409, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.52904, - -52.5788 - ] - } - }, - { - "ibge": 3101706, - "name": "Almenara", - "capital": 0, - "ibgeState": 31, - "siafi": 4033, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.1785, - -40.6942 - ] - } - }, - { - "ibge": 2400604, - "name": "Almino Afonso", - "capital": 0, - "ibgeState": 24, - "siafi": 1611, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.1475, - -37.7636 - ] - } - }, - { - "ibge": 4100400, - "name": "Almirante Tamandaré", - "capital": 0, - "ibgeState": 41, - "siafi": 7407, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.3188, - -49.3037 - ] - } - }, - { - "ibge": 4300471, - "name": "Almirante Tamandaré do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 1120, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.1149, - -52.9142 - ] - } - }, - { - "ibge": 5200506, - "name": "Aloândia", - "capital": 0, - "ibgeState": 52, - "siafi": 9209, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.7292, - -49.4769 - ] - } - }, - { - "ibge": 3101805, - "name": "Alpercata", - "capital": 0, - "ibgeState": 31, - "siafi": 4035, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.974, - -41.97 - ] - } - }, - { - "ibge": 4300505, - "name": "Alpestre", - "capital": 0, - "ibgeState": 43, - "siafi": 8509, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2502, - -53.0341 - ] - } - }, - { - "ibge": 3101904, - "name": "Alpinópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 4037, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8631, - -46.3878 - ] - } - }, - { - "ibge": 5100250, - "name": "Alta Floresta", - "capital": 0, - "ibgeState": 51, - "siafi": 8987, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -9.86674, - -56.0867 - ] - } - }, - { - "ibge": 1100015, - "name": "Alta Floresta D'Oeste", - "capital": 0, - "ibgeState": 11, - "siafi": 33, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.9283, - -61.9953 - ] - } - }, - { - "ibge": 3500907, - "name": "Altair", - "capital": 0, - "ibgeState": 35, - "siafi": 6117, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5242, - -49.0571 - ] - } - }, - { - "ibge": 1500602, - "name": "Altamira", - "capital": 0, - "ibgeState": 15, - "siafi": 411, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.20407, - -52.21 - ] - } - }, - { - "ibge": 2100402, - "name": "Altamira do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 707, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.16598, - -45.4706 - ] - } - }, - { - "ibge": 4100459, - "name": "Altamira do Paraná", - "capital": 0, - "ibgeState": 41, - "siafi": 8455, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.7983, - -52.7128 - ] - } - }, - { - "ibge": 2300606, - "name": "Altaneira", - "capital": 0, - "ibgeState": 23, - "siafi": 1311, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.99837, - -39.7356 - ] - } - }, - { - "ibge": 3102001, - "name": "Alterosa", - "capital": 0, - "ibgeState": 31, - "siafi": 4039, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2488, - -46.1387 - ] - } - }, - { - "ibge": 2600807, - "name": "Altinho", - "capital": 0, - "ibgeState": 26, - "siafi": 2315, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.48482, - -36.0644 - ] - } - }, - { - "ibge": 3501004, - "name": "Altinópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6119, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0214, - -47.3712 - ] - } - }, - { - "ibge": 3501103, - "name": "Alto Alegre", - "capital": 0, - "ibgeState": 35, - "siafi": 6121, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5811, - -50.168 - ] - } - }, - { - "ibge": 1400050, - "name": "Alto Alegre", - "capital": 0, - "ibgeState": 14, - "siafi": 305, - "ddd": 95, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - 2.98858, - -61.3072 - ] - } - }, - { - "ibge": 4300554, - "name": "Alto Alegre", - "capital": 0, - "ibgeState": 43, - "siafi": 8495, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.7769, - -52.9893 - ] - } - }, - { - "ibge": 2100436, - "name": "Alto Alegre do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 106, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.213, - -44.446 - ] - } - }, - { - "ibge": 2100477, - "name": "Alto Alegre do Pindaré", - "capital": 0, - "ibgeState": 21, - "siafi": 108, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.66689, - -45.8421 - ] - } - }, - { - "ibge": 1100379, - "name": "Alto Alegre dos Parecis", - "capital": 0, - "ibgeState": 11, - "siafi": 2, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.132, - -61.835 - ] - } - }, - { - "ibge": 5100300, - "name": "Alto Araguaia", - "capital": 0, - "ibgeState": 51, - "siafi": 9005, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -17.3153, - -53.2181 - ] - } - }, - { - "ibge": 4200754, - "name": "Alto Bela Vista", - "capital": 0, - "ibgeState": 42, - "siafi": 886, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4333, - -51.9044 - ] - } - }, - { - "ibge": 5100359, - "name": "Alto Boa Vista", - "capital": 0, - "ibgeState": 51, - "siafi": 127, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.6732, - -51.3883 - ] - } - }, - { - "ibge": 3102050, - "name": "Alto Caparaó", - "capital": 0, - "ibgeState": 31, - "siafi": 564, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.431, - -41.8738 - ] - } - }, - { - "ibge": 2400703, - "name": "Alto do Rodrigues", - "capital": 0, - "ibgeState": 24, - "siafi": 1613, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.28186, - -36.75 - ] - } - }, - { - "ibge": 4300570, - "name": "Alto Feliz", - "capital": 0, - "ibgeState": 43, - "siafi": 6045, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3919, - -51.3123 - ] - } - }, - { - "ibge": 5100409, - "name": "Alto Garças", - "capital": 0, - "ibgeState": 51, - "siafi": 9007, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -16.9462, - -53.5272 - ] - } - }, - { - "ibge": 5200555, - "name": "Alto Horizonte", - "capital": 0, - "ibgeState": 52, - "siafi": 85, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.1978, - -49.3378 - ] - } - }, - { - "ibge": 3153509, - "name": "Alto Jequitibá", - "capital": 0, - "ibgeState": 31, - "siafi": 5069, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4208, - -41.967 - ] - } - }, - { - "ibge": 2200301, - "name": "Alto Longá", - "capital": 0, - "ibgeState": 22, - "siafi": 1005, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.25634, - -42.2096 - ] - } - }, - { - "ibge": 5100508, - "name": "Alto Paraguai", - "capital": 0, - "ibgeState": 51, - "siafi": 9009, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.5137, - -56.4776 - ] - } - }, - { - "ibge": 4128625, - "name": "Alto Paraíso", - "capital": 0, - "ibgeState": 41, - "siafi": 5523, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.1146, - -52.7469 - ] - } - }, - { - "ibge": 1100403, - "name": "Alto Paraíso", - "capital": 0, - "ibgeState": 11, - "siafi": 675, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -9.71429, - -63.3188 - ] - } - }, - { - "ibge": 5200605, - "name": "Alto Paraíso de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9211, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.1305, - -47.51 - ] - } - }, - { - "ibge": 4100608, - "name": "Alto Paraná", - "capital": 0, - "ibgeState": 41, - "siafi": 7409, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1312, - -52.3189 - ] - } - }, - { - "ibge": 2100501, - "name": "Alto Parnaíba", - "capital": 0, - "ibgeState": 21, - "siafi": 709, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.10273, - -45.9303 - ] - } - }, - { - "ibge": 4100707, - "name": "Alto Piquiri", - "capital": 0, - "ibgeState": 41, - "siafi": 7411, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.0224, - -53.44 - ] - } - }, - { - "ibge": 3102100, - "name": "Alto Rio Doce", - "capital": 0, - "ibgeState": 31, - "siafi": 4041, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0281, - -43.4067 - ] - } - }, - { - "ibge": 3200359, - "name": "Alto Rio Novo", - "capital": 0, - "ibgeState": 32, - "siafi": 5719, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.0618, - -41.0209 - ] - } - }, - { - "ibge": 2300705, - "name": "Alto Santo", - "capital": 0, - "ibgeState": 23, - "siafi": 1313, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.50894, - -38.2743 - ] - } - }, - { - "ibge": 5100607, - "name": "Alto Taquari", - "capital": 0, - "ibgeState": 51, - "siafi": 9911, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -17.8241, - -53.2792 - ] - } - }, - { - "ibge": 4100509, - "name": "Altônia", - "capital": 0, - "ibgeState": 41, - "siafi": 7951, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8759, - -53.8958 - ] - } - }, - { - "ibge": 2200400, - "name": "Altos", - "capital": 0, - "ibgeState": 22, - "siafi": 1007, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.03888, - -42.4612 - ] - } - }, - { - "ibge": 3501152, - "name": "Alumínio", - "capital": 0, - "ibgeState": 35, - "siafi": 3065, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5306, - -47.2546 - ] - } - }, - { - "ibge": 1300029, - "name": "Alvarães", - "capital": 0, - "ibgeState": 13, - "siafi": 289, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.22727, - -64.8007 - ] - } - }, - { - "ibge": 3102209, - "name": "Alvarenga", - "capital": 0, - "ibgeState": 31, - "siafi": 4043, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.4174, - -41.7317 - ] - } - }, - { - "ibge": 3501202, - "name": "Álvares Florence", - "capital": 0, - "ibgeState": 35, - "siafi": 6123, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3203, - -49.9141 - ] - } - }, - { - "ibge": 3501301, - "name": "Álvares Machado", - "capital": 0, - "ibgeState": 35, - "siafi": 6125, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0764, - -51.4722 - ] - } - }, - { - "ibge": 3501400, - "name": "Álvaro de Carvalho", - "capital": 0, - "ibgeState": 35, - "siafi": 6127, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0841, - -49.719 - ] - } - }, - { - "ibge": 3501509, - "name": "Alvinlândia", - "capital": 0, - "ibgeState": 35, - "siafi": 6129, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4435, - -49.7623 - ] - } - }, - { - "ibge": 3102308, - "name": "Alvinópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 4045, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1098, - -43.0535 - ] - } - }, - { - "ibge": 1700707, - "name": "Alvorada", - "capital": 0, - "ibgeState": 17, - "siafi": 9213, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.4785, - -49.1249 - ] - } - }, - { - "ibge": 4300604, - "name": "Alvorada", - "capital": 0, - "ibgeState": 43, - "siafi": 8511, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.9914, - -51.0809 - ] - } - }, - { - "ibge": 1100346, - "name": "Alvorada D'Oeste", - "capital": 0, - "ibgeState": 11, - "siafi": 35, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.3463, - -62.2847 - ] - } - }, - { - "ibge": 3102407, - "name": "Alvorada de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4047, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7334, - -43.3638 - ] - } - }, - { - "ibge": 2200459, - "name": "Alvorada do Gurguéia", - "capital": 0, - "ibgeState": 22, - "siafi": 268, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.42418, - -43.777 - ] - } - }, - { - "ibge": 5200803, - "name": "Alvorada do Norte", - "capital": 0, - "ibgeState": 52, - "siafi": 9215, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.4797, - -46.491 - ] - } - }, - { - "ibge": 4100806, - "name": "Alvorada do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 7413, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7813, - -51.2297 - ] - } - }, - { - "ibge": 1400027, - "name": "Amajari", - "capital": 0, - "ibgeState": 14, - "siafi": 26, - "ddd": 95, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - 3.64571, - -61.3692 - ] - } - }, - { - "ibge": 5000609, - "name": "Amambai", - "capital": 0, - "ibgeState": 50, - "siafi": 9011, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -23.1058, - -55.2253 - ] - } - }, - { - "ibge": 1600105, - "name": "Amapá", - "capital": 0, - "ibgeState": 16, - "siafi": 601, - "ddd": 96, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - 2.05267, - -50.7957 - ] - } - }, - { - "ibge": 2100550, - "name": "Amapá do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 110, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.67524, - -46.0024 - ] - } - }, - { - "ibge": 4100905, - "name": "Amaporã", - "capital": 0, - "ibgeState": 41, - "siafi": 7415, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0943, - -52.7866 - ] - } - }, - { - "ibge": 2600906, - "name": "Amaraji", - "capital": 0, - "ibgeState": 26, - "siafi": 2317, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.37691, - -35.4501 - ] - } - }, - { - "ibge": 4300638, - "name": "Amaral Ferrador", - "capital": 0, - "ibgeState": 43, - "siafi": 8493, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.8756, - -52.2509 - ] - } - }, - { - "ibge": 5200829, - "name": "Amaralina", - "capital": 0, - "ibgeState": 52, - "siafi": 1054, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.9236, - -49.2962 - ] - } - }, - { - "ibge": 2200509, - "name": "Amarante", - "capital": 0, - "ibgeState": 22, - "siafi": 1009, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.24304, - -42.8433 - ] - } - }, - { - "ibge": 2100600, - "name": "Amarante do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 711, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.56913, - -46.7473 - ] - } - }, - { - "ibge": 2901007, - "name": "Amargosa", - "capital": 0, - "ibgeState": 29, - "siafi": 3319, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.0215, - -39.602 - ] - } - }, - { - "ibge": 1300060, - "name": "Amaturá", - "capital": 0, - "ibgeState": 13, - "siafi": 291, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.37455, - -68.2005 - ] - } - }, - { - "ibge": 2901106, - "name": "Amélia Rodrigues", - "capital": 0, - "ibgeState": 29, - "siafi": 3321, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.3914, - -38.7563 - ] - } - }, - { - "ibge": 2901155, - "name": "América Dourada", - "capital": 0, - "ibgeState": 29, - "siafi": 3071, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.4429, - -41.439 - ] - } - }, - { - "ibge": 3501608, - "name": "Americana", - "capital": 0, - "ibgeState": 35, - "siafi": 6131, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7374, - -47.3331 - ] - } - }, - { - "ibge": 5200852, - "name": "Americano do Brasil", - "capital": 0, - "ibgeState": 52, - "siafi": 9661, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.2514, - -49.9831 - ] - } - }, - { - "ibge": 3501707, - "name": "Américo Brasiliense", - "capital": 0, - "ibgeState": 35, - "siafi": 6133, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7288, - -48.1147 - ] - } - }, - { - "ibge": 3501806, - "name": "Américo de Campos", - "capital": 0, - "ibgeState": 35, - "siafi": 6135, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2985, - -49.7359 - ] - } - }, - { - "ibge": 4300646, - "name": "Ametista do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 5969, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3607, - -53.183 - ] - } - }, - { - "ibge": 2300754, - "name": "Amontada", - "capital": 0, - "ibgeState": 23, - "siafi": 1587, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.36017, - -39.8288 - ] - } - }, - { - "ibge": 5200902, - "name": "Amorinópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9217, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.6151, - -51.0919 - ] - } - }, - { - "ibge": 2500734, - "name": "Amparo", - "capital": 0, - "ibgeState": 25, - "siafi": 444, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.55502, - -37.0628 - ] - } - }, - { - "ibge": 3501905, - "name": "Amparo", - "capital": 0, - "ibgeState": 35, - "siafi": 6137, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7088, - -46.772 - ] - } - }, - { - "ibge": 2800100, - "name": "Amparo de São Francisco", - "capital": 0, - "ibgeState": 28, - "siafi": 3101, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.1348, - -36.935 - ] - } - }, - { - "ibge": 3102506, - "name": "Amparo do Serra", - "capital": 0, - "ibgeState": 31, - "siafi": 4049, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5051, - -42.8009 - ] - } - }, - { - "ibge": 4101002, - "name": "Ampére", - "capital": 0, - "ibgeState": 41, - "siafi": 7417, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.9168, - -53.4686 - ] - } - }, - { - "ibge": 2700201, - "name": "Anadia", - "capital": 0, - "ibgeState": 27, - "siafi": 2703, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.68489, - -36.3078 - ] - } - }, - { - "ibge": 2901205, - "name": "Anagé", - "capital": 0, - "ibgeState": 29, - "siafi": 3323, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.6151, - -41.1356 - ] - } - }, - { - "ibge": 4101051, - "name": "Anahy", - "capital": 0, - "ibgeState": 41, - "siafi": 5463, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.6449, - -53.1332 - ] - } - }, - { - "ibge": 1500701, - "name": "Anajás", - "capital": 0, - "ibgeState": 15, - "siafi": 413, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.996811, - -49.9354 - ] - } - }, - { - "ibge": 2100709, - "name": "Anajatuba", - "capital": 0, - "ibgeState": 21, - "siafi": 713, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.26269, - -44.6126 - ] - } - }, - { - "ibge": 3502002, - "name": "Analândia", - "capital": 0, - "ibgeState": 35, - "siafi": 6139, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1289, - -47.6619 - ] - } - }, - { - "ibge": 1300086, - "name": "Anamã", - "capital": 0, - "ibgeState": 13, - "siafi": 293, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.56697, - -61.3963 - ] - } - }, - { - "ibge": 1701002, - "name": "Ananás", - "capital": 0, - "ibgeState": 17, - "siafi": 9219, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.36437, - -48.0735 - ] - } - }, - { - "ibge": 1500800, - "name": "Ananindeua", - "capital": 0, - "ibgeState": 15, - "siafi": 415, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.36391, - -48.3743 - ] - } - }, - { - "ibge": 5201108, - "name": "Anápolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9221, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.3281, - -48.953 - ] - } - }, - { - "ibge": 1500859, - "name": "Anapu", - "capital": 0, - "ibgeState": 15, - "siafi": 40, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.46985, - -51.2003 - ] - } - }, - { - "ibge": 2100808, - "name": "Anapurus", - "capital": 0, - "ibgeState": 21, - "siafi": 715, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.67577, - -43.1014 - ] - } - }, - { - "ibge": 5000708, - "name": "Anastácio", - "capital": 0, - "ibgeState": 50, - "siafi": 9013, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -20.4823, - -55.8104 - ] - } - }, - { - "ibge": 5000807, - "name": "Anaurilândia", - "capital": 0, - "ibgeState": 50, - "siafi": 9015, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.1852, - -52.7191 - ] - } - }, - { - "ibge": 4200804, - "name": "Anchieta", - "capital": 0, - "ibgeState": 42, - "siafi": 8015, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.5382, - -53.3319 - ] - } - }, - { - "ibge": 3200409, - "name": "Anchieta", - "capital": 0, - "ibgeState": 32, - "siafi": 5607, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7955, - -40.6425 - ] - } - }, - { - "ibge": 2901304, - "name": "Andaraí", - "capital": 0, - "ibgeState": 29, - "siafi": 3325, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.8049, - -41.3297 - ] - } - }, - { - "ibge": 4101101, - "name": "Andirá", - "capital": 0, - "ibgeState": 41, - "siafi": 7419, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0533, - -50.2304 - ] - } - }, - { - "ibge": 2901353, - "name": "Andorinha", - "capital": 0, - "ibgeState": 29, - "siafi": 3255, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.3482, - -39.8391 - ] - } - }, - { - "ibge": 3102605, - "name": "Andradas", - "capital": 0, - "ibgeState": 31, - "siafi": 4051, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0695, - -46.5724 - ] - } - }, - { - "ibge": 3502101, - "name": "Andradina", - "capital": 0, - "ibgeState": 35, - "siafi": 6141, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8948, - -51.3786 - ] - } - }, - { - "ibge": 4300661, - "name": "André da Rocha", - "capital": 0, - "ibgeState": 43, - "siafi": 8491, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6283, - -51.5797 - ] - } - }, - { - "ibge": 3102803, - "name": "Andrelândia", - "capital": 0, - "ibgeState": 31, - "siafi": 4055, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7411, - -44.3117 - ] - } - }, - { - "ibge": 3502200, - "name": "Angatuba", - "capital": 0, - "ibgeState": 35, - "siafi": 6143, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4917, - -48.4139 - ] - } - }, - { - "ibge": 3102852, - "name": "Angelândia", - "capital": 0, - "ibgeState": 31, - "siafi": 566, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.7279, - -42.2641 - ] - } - }, - { - "ibge": 5000856, - "name": "Angélica", - "capital": 0, - "ibgeState": 50, - "siafi": 9169, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.1527, - -53.7708 - ] - } - }, - { - "ibge": 2601003, - "name": "Angelim", - "capital": 0, - "ibgeState": 26, - "siafi": 2319, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.88429, - -36.2902 - ] - } - }, - { - "ibge": 4200903, - "name": "Angelina", - "capital": 0, - "ibgeState": 42, - "siafi": 8017, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5704, - -48.9879 - ] - } - }, - { - "ibge": 2901403, - "name": "Angical", - "capital": 0, - "ibgeState": 29, - "siafi": 3327, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.0063, - -44.7003 - ] - } - }, - { - "ibge": 2200608, - "name": "Angical do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1011, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.08786, - -42.74 - ] - } - }, - { - "ibge": 1701051, - "name": "Angico", - "capital": 0, - "ibgeState": 17, - "siafi": 165, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.39179, - -47.8611 - ] - } - }, - { - "ibge": 2400802, - "name": "Angicos", - "capital": 0, - "ibgeState": 24, - "siafi": 1615, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.65792, - -36.6094 - ] - } - }, - { - "ibge": 3300100, - "name": "Angra dos Reis", - "capital": 0, - "ibgeState": 33, - "siafi": 5801, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0011, - -44.3196 - ] - } - }, - { - "ibge": 2901502, - "name": "Anguera", - "capital": 0, - "ibgeState": 29, - "siafi": 3329, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.1462, - -39.2462 - ] - } - }, - { - "ibge": 4101150, - "name": "Ângulo", - "capital": 0, - "ibgeState": 41, - "siafi": 5509, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1946, - -51.9154 - ] - } - }, - { - "ibge": 5201207, - "name": "Anhanguera", - "capital": 0, - "ibgeState": 52, - "siafi": 9223, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.3339, - -48.2204 - ] - } - }, - { - "ibge": 3502309, - "name": "Anhembi", - "capital": 0, - "ibgeState": 35, - "siafi": 6145, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.793, - -48.1336 - ] - } - }, - { - "ibge": 3502408, - "name": "Anhumas", - "capital": 0, - "ibgeState": 35, - "siafi": 6147, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2934, - -51.3895 - ] - } - }, - { - "ibge": 5201306, - "name": "Anicuns", - "capital": 0, - "ibgeState": 52, - "siafi": 9225, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.4642, - -49.9617 - ] - } - }, - { - "ibge": 2200707, - "name": "Anísio de Abreu", - "capital": 0, - "ibgeState": 22, - "siafi": 1013, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.18564, - -43.0494 - ] - } - }, - { - "ibge": 4201000, - "name": "Anita Garibaldi", - "capital": 0, - "ibgeState": 42, - "siafi": 8019, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6897, - -51.1271 - ] - } - }, - { - "ibge": 4201109, - "name": "Anitápolis", - "capital": 0, - "ibgeState": 42, - "siafi": 8021, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9012, - -49.1316 - ] - } - }, - { - "ibge": 1300102, - "name": "Anori", - "capital": 0, - "ibgeState": 13, - "siafi": 203, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.74603, - -61.6575 - ] - } - }, - { - "ibge": 4300703, - "name": "Anta Gorda", - "capital": 0, - "ibgeState": 43, - "siafi": 8513, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.9698, - -52.0102 - ] - } - }, - { - "ibge": 2901601, - "name": "Antas", - "capital": 0, - "ibgeState": 29, - "siafi": 3331, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.3856, - -38.3401 - ] - } - }, - { - "ibge": 4101200, - "name": "Antonina", - "capital": 0, - "ibgeState": 41, - "siafi": 7421, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4386, - -48.7191 - ] - } - }, - { - "ibge": 2300804, - "name": "Antonina do Norte", - "capital": 0, - "ibgeState": 23, - "siafi": 1315, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.76919, - -39.987 - ] - } - }, - { - "ibge": 2200806, - "name": "Antônio Almeida", - "capital": 0, - "ibgeState": 22, - "siafi": 1015, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.21276, - -44.1889 - ] - } - }, - { - "ibge": 2901700, - "name": "Antônio Cardoso", - "capital": 0, - "ibgeState": 29, - "siafi": 3333, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.4335, - -39.1176 - ] - } - }, - { - "ibge": 4201208, - "name": "Antônio Carlos", - "capital": 0, - "ibgeState": 42, - "siafi": 8023, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5191, - -48.766 - ] - } - }, - { - "ibge": 3102902, - "name": "Antônio Carlos", - "capital": 0, - "ibgeState": 31, - "siafi": 4057, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.321, - -43.7451 - ] - } - }, - { - "ibge": 3103009, - "name": "Antônio Dias", - "capital": 0, - "ibgeState": 31, - "siafi": 4059, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6491, - -42.8732 - ] - } - }, - { - "ibge": 2901809, - "name": "Antônio Gonçalves", - "capital": 0, - "ibgeState": 29, - "siafi": 3335, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.5767, - -40.2785 - ] - } - }, - { - "ibge": 5000906, - "name": "Antônio João", - "capital": 0, - "ibgeState": 50, - "siafi": 9017, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.1927, - -55.9517 - ] - } - }, - { - "ibge": 2400901, - "name": "Antônio Martins", - "capital": 0, - "ibgeState": 24, - "siafi": 1617, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.21367, - -37.8834 - ] - } - }, - { - "ibge": 4101309, - "name": "Antônio Olinto", - "capital": 0, - "ibgeState": 41, - "siafi": 7423, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.9804, - -50.1972 - ] - } - }, - { - "ibge": 4300802, - "name": "Antônio Prado", - "capital": 0, - "ibgeState": 43, - "siafi": 8515, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.8565, - -51.2883 - ] - } - }, - { - "ibge": 3103108, - "name": "Antônio Prado de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4061, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0192, - -42.1109 - ] - } - }, - { - "ibge": 2500775, - "name": "Aparecida", - "capital": 0, - "ibgeState": 25, - "siafi": 446, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.78466, - -38.0803 - ] - } - }, - { - "ibge": 3502507, - "name": "Aparecida", - "capital": 0, - "ibgeState": 35, - "siafi": 6149, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8495, - -45.2325 - ] - } - }, - { - "ibge": 3502606, - "name": "Aparecida d'Oeste", - "capital": 0, - "ibgeState": 35, - "siafi": 6151, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4487, - -50.8835 - ] - } - }, - { - "ibge": 5201405, - "name": "Aparecida de Goiânia", - "capital": 0, - "ibgeState": 52, - "siafi": 9227, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.8198, - -49.2469 - ] - } - }, - { - "ibge": 5201454, - "name": "Aparecida do Rio Doce", - "capital": 0, - "ibgeState": 52, - "siafi": 71, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.2941, - -51.1516 - ] - } - }, - { - "ibge": 1701101, - "name": "Aparecida do Rio Negro", - "capital": 0, - "ibgeState": 17, - "siafi": 9713, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.94139, - -47.9638 - ] - } - }, - { - "ibge": 5001003, - "name": "Aparecida do Taboado", - "capital": 0, - "ibgeState": 50, - "siafi": 9019, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -20.0873, - -51.0961 - ] - } - }, - { - "ibge": 3300159, - "name": "Aperibé", - "capital": 0, - "ibgeState": 33, - "siafi": 2919, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6252, - -42.1017 - ] - } - }, - { - "ibge": 3200508, - "name": "Apiacá", - "capital": 0, - "ibgeState": 32, - "siafi": 5609, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1523, - -41.5693 - ] - } - }, - { - "ibge": 5100805, - "name": "Apiacás", - "capital": 0, - "ibgeState": 51, - "siafi": 9773, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -9.53981, - -57.4587 - ] - } - }, - { - "ibge": 3502705, - "name": "Apiaí", - "capital": 0, - "ibgeState": 35, - "siafi": 6153, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.5108, - -48.8443 - ] - } - }, - { - "ibge": 2100832, - "name": "Apicum-Açu", - "capital": 0, - "ibgeState": 21, - "siafi": 112, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.45862, - -45.0864 - ] - } - }, - { - "ibge": 4201257, - "name": "Apiúna", - "capital": 0, - "ibgeState": 42, - "siafi": 9941, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0375, - -49.3885 - ] - } - }, - { - "ibge": 2401008, - "name": "Apodi", - "capital": 0, - "ibgeState": 24, - "siafi": 1619, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.65349, - -37.7946 - ] - } - }, - { - "ibge": 2901908, - "name": "Aporá", - "capital": 0, - "ibgeState": 29, - "siafi": 3337, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.6577, - -38.0814 - ] - } - }, - { - "ibge": 5201504, - "name": "Aporé", - "capital": 0, - "ibgeState": 52, - "siafi": 9229, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.9607, - -51.9232 - ] - } - }, - { - "ibge": 2901957, - "name": "Apuarema", - "capital": 0, - "ibgeState": 29, - "siafi": 3257, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.8542, - -39.7501 - ] - } - }, - { - "ibge": 4101408, - "name": "Apucarana", - "capital": 0, - "ibgeState": 41, - "siafi": 7425, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.55, - -51.4635 - ] - } - }, - { - "ibge": 1300144, - "name": "Apuí", - "capital": 0, - "ibgeState": 13, - "siafi": 969, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -7.19409, - -59.896 - ] - } - }, - { - "ibge": 2300903, - "name": "Apuiarés", - "capital": 0, - "ibgeState": 23, - "siafi": 1317, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.94506, - -39.4359 - ] - } - }, - { - "ibge": 2800209, - "name": "Aquidabã", - "capital": 0, - "ibgeState": 28, - "siafi": 3103, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.278, - -37.0148 - ] - } - }, - { - "ibge": 5001102, - "name": "Aquidauana", - "capital": 0, - "ibgeState": 50, - "siafi": 9021, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -20.4666, - -55.7868 - ] - } - }, - { - "ibge": 2301000, - "name": "Aquiraz", - "capital": 0, - "ibgeState": 23, - "siafi": 1319, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.89929, - -38.3896 - ] - } - }, - { - "ibge": 4201273, - "name": "Arabutã", - "capital": 0, - "ibgeState": 42, - "siafi": 5597, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1587, - -52.1423 - ] - } - }, - { - "ibge": 2500809, - "name": "Araçagi", - "capital": 0, - "ibgeState": 25, - "siafi": 1915, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.84374, - -35.3737 - ] - } - }, - { - "ibge": 3103207, - "name": "Araçaí", - "capital": 0, - "ibgeState": 31, - "siafi": 4063, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.1955, - -44.2493 - ] - } - }, - { - "ibge": 2800308, - "name": "Aracaju", - "capital": 1, - "ibgeState": 28, - "siafi": 3105, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.9091, - -37.0677 - ] - } - }, - { - "ibge": 3502754, - "name": "Araçariguama", - "capital": 0, - "ibgeState": 35, - "siafi": 3067, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4366, - -47.0608 - ] - } - }, - { - "ibge": 2902054, - "name": "Araças", - "capital": 0, - "ibgeState": 29, - "siafi": 3259, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.22, - -38.2027 - ] - } - }, - { - "ibge": 2301109, - "name": "Aracati", - "capital": 0, - "ibgeState": 23, - "siafi": 1321, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.55826, - -37.7679 - ] - } - }, - { - "ibge": 2902005, - "name": "Aracatu", - "capital": 0, - "ibgeState": 29, - "siafi": 3339, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.428, - -41.4648 - ] - } - }, - { - "ibge": 3502804, - "name": "Araçatuba", - "capital": 0, - "ibgeState": 35, - "siafi": 6155, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2076, - -50.4401 - ] - } - }, - { - "ibge": 2902104, - "name": "Araci", - "capital": 0, - "ibgeState": 29, - "siafi": 3341, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.3253, - -38.9584 - ] - } - }, - { - "ibge": 3103306, - "name": "Aracitaba", - "capital": 0, - "ibgeState": 31, - "siafi": 4065, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3446, - -43.3736 - ] - } - }, - { - "ibge": 2601052, - "name": "Araçoiaba", - "capital": 0, - "ibgeState": 26, - "siafi": 544, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.78391, - -35.0809 - ] - } - }, - { - "ibge": 2301208, - "name": "Aracoiaba", - "capital": 0, - "ibgeState": 23, - "siafi": 1323, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.36872, - -38.8125 - ] - } - }, - { - "ibge": 3502903, - "name": "Araçoiaba da Serra", - "capital": 0, - "ibgeState": 35, - "siafi": 6157, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5029, - -47.6166 - ] - } - }, - { - "ibge": 3200607, - "name": "Aracruz", - "capital": 0, - "ibgeState": 32, - "siafi": 5611, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.82, - -40.2764 - ] - } - }, - { - "ibge": 5201603, - "name": "Araçu", - "capital": 0, - "ibgeState": 52, - "siafi": 9231, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.3563, - -49.6804 - ] - } - }, - { - "ibge": 3103405, - "name": "Araçuaí", - "capital": 0, - "ibgeState": 31, - "siafi": 4067, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.8523, - -42.0637 - ] - } - }, - { - "ibge": 5201702, - "name": "Aragarças", - "capital": 0, - "ibgeState": 52, - "siafi": 9233, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.8955, - -52.2372 - ] - } - }, - { - "ibge": 5201801, - "name": "Aragoiânia", - "capital": 0, - "ibgeState": 52, - "siafi": 9235, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.9087, - -49.4476 - ] - } - }, - { - "ibge": 1701309, - "name": "Aragominas", - "capital": 0, - "ibgeState": 17, - "siafi": 167, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.16005, - -48.5291 - ] - } - }, - { - "ibge": 1701903, - "name": "Araguacema", - "capital": 0, - "ibgeState": 17, - "siafi": 9237, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.80755, - -49.5569 - ] - } - }, - { - "ibge": 1702000, - "name": "Araguaçu", - "capital": 0, - "ibgeState": 17, - "siafi": 9239, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.9289, - -49.8231 - ] - } - }, - { - "ibge": 5101001, - "name": "Araguaiana", - "capital": 0, - "ibgeState": 51, - "siafi": 9869, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.7291, - -51.8341 - ] - } - }, - { - "ibge": 1702109, - "name": "Araguaína", - "capital": 0, - "ibgeState": 17, - "siafi": 9241, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.19238, - -48.2044 - ] - } - }, - { - "ibge": 5101209, - "name": "Araguainha", - "capital": 0, - "ibgeState": 51, - "siafi": 9023, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -16.857, - -53.0318 - ] - } - }, - { - "ibge": 1702158, - "name": "Araguanã", - "capital": 0, - "ibgeState": 17, - "siafi": 169, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.58225, - -48.6395 - ] - } - }, - { - "ibge": 2100873, - "name": "Araguanã", - "capital": 0, - "ibgeState": 21, - "siafi": 114, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.94644, - -45.6589 - ] - } - }, - { - "ibge": 5202155, - "name": "Araguapaz", - "capital": 0, - "ibgeState": 52, - "siafi": 9669, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.0909, - -50.6315 - ] - } - }, - { - "ibge": 3103504, - "name": "Araguari", - "capital": 0, - "ibgeState": 31, - "siafi": 4069, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.6456, - -48.1934 - ] - } - }, - { - "ibge": 1702208, - "name": "Araguatins", - "capital": 0, - "ibgeState": 17, - "siafi": 9243, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.64659, - -48.1232 - ] - } - }, - { - "ibge": 2100907, - "name": "Araioses", - "capital": 0, - "ibgeState": 21, - "siafi": 717, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.89091, - -41.905 - ] - } - }, - { - "ibge": 5001243, - "name": "Aral Moreira", - "capital": 0, - "ibgeState": 50, - "siafi": 9171, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.9385, - -55.6334 - ] - } - }, - { - "ibge": 2902203, - "name": "Aramari", - "capital": 0, - "ibgeState": 29, - "siafi": 3343, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.0884, - -38.4969 - ] - } - }, - { - "ibge": 4300851, - "name": "Arambaré", - "capital": 0, - "ibgeState": 43, - "siafi": 5779, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.9092, - -51.5046 - ] - } - }, - { - "ibge": 2100956, - "name": "Arame", - "capital": 0, - "ibgeState": 21, - "siafi": 1281, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.88347, - -46.0032 - ] - } - }, - { - "ibge": 3503000, - "name": "Aramina", - "capital": 0, - "ibgeState": 35, - "siafi": 6159, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0882, - -47.7873 - ] - } - }, - { - "ibge": 3503109, - "name": "Arandu", - "capital": 0, - "ibgeState": 35, - "siafi": 6161, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1386, - -49.0487 - ] - } - }, - { - "ibge": 3103603, - "name": "Arantina", - "capital": 0, - "ibgeState": 31, - "siafi": 4071, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9102, - -44.2555 - ] - } - }, - { - "ibge": 3503158, - "name": "Arapeí", - "capital": 0, - "ibgeState": 35, - "siafi": 2991, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6717, - -44.4441 - ] - } - }, - { - "ibge": 2700300, - "name": "Arapiraca", - "capital": 0, - "ibgeState": 27, - "siafi": 2705, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.75487, - -36.6615 - ] - } - }, - { - "ibge": 1702307, - "name": "Arapoema", - "capital": 0, - "ibgeState": 17, - "siafi": 9245, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.65463, - -49.0637 - ] - } - }, - { - "ibge": 3103702, - "name": "Araponga", - "capital": 0, - "ibgeState": 31, - "siafi": 4073, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6686, - -42.5178 - ] - } - }, - { - "ibge": 4101507, - "name": "Arapongas", - "capital": 0, - "ibgeState": 41, - "siafi": 7427, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4153, - -51.4259 - ] - } - }, - { - "ibge": 3103751, - "name": "Araporã", - "capital": 0, - "ibgeState": 31, - "siafi": 2903, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4357, - -49.1847 - ] - } - }, - { - "ibge": 4101606, - "name": "Arapoti", - "capital": 0, - "ibgeState": 41, - "siafi": 7429, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.1548, - -49.8285 - ] - } - }, - { - "ibge": 4101655, - "name": "Arapuã", - "capital": 0, - "ibgeState": 41, - "siafi": 830, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.3132, - -51.7856 - ] - } - }, - { - "ibge": 3103801, - "name": "Arapuá", - "capital": 0, - "ibgeState": 31, - "siafi": 4075, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.0268, - -46.1484 - ] - } - }, - { - "ibge": 5101258, - "name": "Araputanga", - "capital": 0, - "ibgeState": 51, - "siafi": 8989, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.4641, - -58.3425 - ] - } - }, - { - "ibge": 4201307, - "name": "Araquari", - "capital": 0, - "ibgeState": 42, - "siafi": 8025, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.3754, - -48.7188 - ] - } - }, - { - "ibge": 2500908, - "name": "Arara", - "capital": 0, - "ibgeState": 25, - "siafi": 1917, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.82813, - -35.7552 - ] - } - }, - { - "ibge": 4201406, - "name": "Araranguá", - "capital": 0, - "ibgeState": 42, - "siafi": 8027, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.9356, - -49.4918 - ] - } - }, - { - "ibge": 3503208, - "name": "Araraquara", - "capital": 0, - "ibgeState": 35, - "siafi": 6163, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7845, - -48.178 - ] - } - }, - { - "ibge": 3503307, - "name": "Araras", - "capital": 0, - "ibgeState": 35, - "siafi": 6165, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3572, - -47.3842 - ] - } - }, - { - "ibge": 2301257, - "name": "Ararendá", - "capital": 0, - "ibgeState": 23, - "siafi": 989, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.74567, - -40.831 - ] - } - }, - { - "ibge": 2101004, - "name": "Arari", - "capital": 0, - "ibgeState": 21, - "siafi": 719, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.45214, - -44.7665 - ] - } - }, - { - "ibge": 4300877, - "name": "Araricá", - "capital": 0, - "ibgeState": 43, - "siafi": 952, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6168, - -50.9291 - ] - } - }, - { - "ibge": 2301307, - "name": "Araripe", - "capital": 0, - "ibgeState": 23, - "siafi": 1325, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.21319, - -40.1359 - ] - } - }, - { - "ibge": 2601102, - "name": "Araripina", - "capital": 0, - "ibgeState": 26, - "siafi": 2321, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.57073, - -40.494 - ] - } - }, - { - "ibge": 3300209, - "name": "Araruama", - "capital": 0, - "ibgeState": 33, - "siafi": 5803, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8697, - -42.3326 - ] - } - }, - { - "ibge": 4101705, - "name": "Araruna", - "capital": 0, - "ibgeState": 41, - "siafi": 7431, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.9315, - -52.5021 - ] - } - }, - { - "ibge": 2501005, - "name": "Araruna", - "capital": 0, - "ibgeState": 25, - "siafi": 1919, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.54848, - -35.7498 - ] - } - }, - { - "ibge": 2902252, - "name": "Arataca", - "capital": 0, - "ibgeState": 29, - "siafi": 3073, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.2651, - -39.419 - ] - } - }, - { - "ibge": 4300901, - "name": "Aratiba", - "capital": 0, - "ibgeState": 43, - "siafi": 8517, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3978, - -52.2975 - ] - } - }, - { - "ibge": 2301406, - "name": "Aratuba", - "capital": 0, - "ibgeState": 23, - "siafi": 1327, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.41229, - -39.0471 - ] - } - }, - { - "ibge": 2902302, - "name": "Aratuípe", - "capital": 0, - "ibgeState": 29, - "siafi": 3345, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.0716, - -39.0038 - ] - } - }, - { - "ibge": 2800407, - "name": "Arauá", - "capital": 0, - "ibgeState": 28, - "siafi": 3107, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.2614, - -37.6201 - ] - } - }, - { - "ibge": 4101804, - "name": "Araucária", - "capital": 0, - "ibgeState": 41, - "siafi": 7435, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.5859, - -49.4047 - ] - } - }, - { - "ibge": 3103900, - "name": "Araújos", - "capital": 0, - "ibgeState": 31, - "siafi": 4077, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9405, - -45.1671 - ] - } - }, - { - "ibge": 3104007, - "name": "Araxá", - "capital": 0, - "ibgeState": 31, - "siafi": 4079, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5902, - -46.9438 - ] - } - }, - { - "ibge": 3104106, - "name": "Arceburgo", - "capital": 0, - "ibgeState": 31, - "siafi": 4081, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.359, - -46.9401 - ] - } - }, - { - "ibge": 3503356, - "name": "Arco-Íris", - "capital": 0, - "ibgeState": 35, - "siafi": 790, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7728, - -50.466 - ] - } - }, - { - "ibge": 3104205, - "name": "Arcos", - "capital": 0, - "ibgeState": 31, - "siafi": 4083, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2863, - -45.5373 - ] - } - }, - { - "ibge": 2601201, - "name": "Arcoverde", - "capital": 0, - "ibgeState": 26, - "siafi": 2323, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.41519, - -37.0577 - ] - } - }, - { - "ibge": 3104304, - "name": "Areado", - "capital": 0, - "ibgeState": 31, - "siafi": 4085, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3572, - -46.1421 - ] - } - }, - { - "ibge": 3300225, - "name": "Areal", - "capital": 0, - "ibgeState": 33, - "siafi": 2925, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2283, - -43.1118 - ] - } - }, - { - "ibge": 3503406, - "name": "Arealva", - "capital": 0, - "ibgeState": 35, - "siafi": 6167, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.031, - -48.9135 - ] - } - }, - { - "ibge": 2501104, - "name": "Areia", - "capital": 0, - "ibgeState": 25, - "siafi": 1921, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.96396, - -35.6977 - ] - } - }, - { - "ibge": 2401107, - "name": "Areia Branca", - "capital": 0, - "ibgeState": 24, - "siafi": 1621, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.95254, - -37.1252 - ] - } - }, - { - "ibge": 2800506, - "name": "Areia Branca", - "capital": 0, - "ibgeState": 28, - "siafi": 3109, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.758, - -37.3251 - ] - } - }, - { - "ibge": 2501153, - "name": "Areia de Baraúnas", - "capital": 0, - "ibgeState": 25, - "siafi": 448, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.11702, - -36.9404 - ] - } - }, - { - "ibge": 2501203, - "name": "Areial", - "capital": 0, - "ibgeState": 25, - "siafi": 1923, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.04789, - -35.9313 - ] - } - }, - { - "ibge": 3503505, - "name": "Areias", - "capital": 0, - "ibgeState": 35, - "siafi": 6169, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5786, - -44.6992 - ] - } - }, - { - "ibge": 3503604, - "name": "Areiópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6171, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6672, - -48.6681 - ] - } - }, - { - "ibge": 5101308, - "name": "Arenápolis", - "capital": 0, - "ibgeState": 51, - "siafi": 9025, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.4472, - -56.8437 - ] - } - }, - { - "ibge": 5202353, - "name": "Arenópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9671, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.3837, - -51.5563 - ] - } - }, - { - "ibge": 2401206, - "name": "Arês", - "capital": 0, - "ibgeState": 24, - "siafi": 1623, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.18831, - -35.1608 - ] - } - }, - { - "ibge": 3104403, - "name": "Argirita", - "capital": 0, - "ibgeState": 31, - "siafi": 4087, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6083, - -42.8292 - ] - } - }, - { - "ibge": 3104452, - "name": "Aricanduva", - "capital": 0, - "ibgeState": 31, - "siafi": 568, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.8666, - -42.5533 - ] - } - }, - { - "ibge": 3104502, - "name": "Arinos", - "capital": 0, - "ibgeState": 31, - "siafi": 4089, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.9187, - -46.1043 - ] - } - }, - { - "ibge": 5101407, - "name": "Aripuanã", - "capital": 0, - "ibgeState": 51, - "siafi": 9027, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.1723, - -59.4568 - ] - } - }, - { - "ibge": 1100023, - "name": "Ariquemes", - "capital": 0, - "ibgeState": 11, - "siafi": 7, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -9.90571, - -63.0325 - ] - } - }, - { - "ibge": 3503703, - "name": "Ariranha", - "capital": 0, - "ibgeState": 35, - "siafi": 6173, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1872, - -48.7904 - ] - } - }, - { - "ibge": 4101853, - "name": "Ariranha do Ivaí", - "capital": 0, - "ibgeState": 41, - "siafi": 832, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.3857, - -51.5839 - ] - } - }, - { - "ibge": 3300233, - "name": "Armação dos Búzios", - "capital": 0, - "ibgeState": 33, - "siafi": 770, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7528, - -41.8846 - ] - } - }, - { - "ibge": 4201505, - "name": "Armazém", - "capital": 0, - "ibgeState": 42, - "siafi": 8029, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.2448, - -49.0215 - ] - } - }, - { - "ibge": 2301505, - "name": "Arneiroz", - "capital": 0, - "ibgeState": 23, - "siafi": 1329, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.3165, - -40.1653 - ] - } - }, - { - "ibge": 2200905, - "name": "Aroazes", - "capital": 0, - "ibgeState": 22, - "siafi": 1017, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.11022, - -41.7822 - ] - } - }, - { - "ibge": 2501302, - "name": "Aroeiras", - "capital": 0, - "ibgeState": 25, - "siafi": 1925, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.54473, - -35.7066 - ] - } - }, - { - "ibge": 2200954, - "name": "Aroeiras do Itaim", - "capital": 0, - "ibgeState": 22, - "siafi": 1188, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.24502, - -41.5325 - ] - } - }, - { - "ibge": 2201002, - "name": "Arraial", - "capital": 0, - "ibgeState": 22, - "siafi": 1019, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.65075, - -42.5418 - ] - } - }, - { - "ibge": 3300258, - "name": "Arraial do Cabo", - "capital": 0, - "ibgeState": 33, - "siafi": 5927, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9774, - -42.0267 - ] - } - }, - { - "ibge": 1702406, - "name": "Arraias", - "capital": 0, - "ibgeState": 17, - "siafi": 9247, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.9287, - -46.9359 - ] - } - }, - { - "ibge": 4301008, - "name": "Arroio do Meio", - "capital": 0, - "ibgeState": 43, - "siafi": 8519, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4014, - -51.9557 - ] - } - }, - { - "ibge": 4301073, - "name": "Arroio do Padre", - "capital": 0, - "ibgeState": 43, - "siafi": 1122, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.4389, - -52.4246 - ] - } - }, - { - "ibge": 4301057, - "name": "Arroio do Sal", - "capital": 0, - "ibgeState": 43, - "siafi": 8489, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5439, - -49.8895 - ] - } - }, - { - "ibge": 4301206, - "name": "Arroio do Tigre", - "capital": 0, - "ibgeState": 43, - "siafi": 8523, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3348, - -53.0966 - ] - } - }, - { - "ibge": 4301107, - "name": "Arroio dos Ratos", - "capital": 0, - "ibgeState": 43, - "siafi": 8521, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.0875, - -51.7275 - ] - } - }, - { - "ibge": 4301305, - "name": "Arroio Grande", - "capital": 0, - "ibgeState": 43, - "siafi": 8525, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -32.2327, - -53.0862 - ] - } - }, - { - "ibge": 4201604, - "name": "Arroio Trinta", - "capital": 0, - "ibgeState": 42, - "siafi": 8031, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9257, - -51.3407 - ] - } - }, - { - "ibge": 3503802, - "name": "Artur Nogueira", - "capital": 0, - "ibgeState": 35, - "siafi": 6175, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5727, - -47.1727 - ] - } - }, - { - "ibge": 5202502, - "name": "Aruanã", - "capital": 0, - "ibgeState": 52, - "siafi": 9249, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.9166, - -51.075 - ] - } - }, - { - "ibge": 3503901, - "name": "Arujá", - "capital": 0, - "ibgeState": 35, - "siafi": 6177, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3965, - -46.32 - ] - } - }, - { - "ibge": 4201653, - "name": "Arvoredo", - "capital": 0, - "ibgeState": 42, - "siafi": 5599, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0748, - -52.4543 - ] - } - }, - { - "ibge": 4301404, - "name": "Arvorezinha", - "capital": 0, - "ibgeState": 43, - "siafi": 8527, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.8737, - -52.1781 - ] - } - }, - { - "ibge": 4201703, - "name": "Ascurra", - "capital": 0, - "ibgeState": 42, - "siafi": 8033, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9548, - -49.3783 - ] - } - }, - { - "ibge": 3503950, - "name": "Aspásia", - "capital": 0, - "ibgeState": 35, - "siafi": 2981, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.16, - -50.728 - ] - } - }, - { - "ibge": 4101903, - "name": "Assaí", - "capital": 0, - "ibgeState": 41, - "siafi": 7437, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3697, - -50.8459 - ] - } - }, - { - "ibge": 2301604, - "name": "Assaré", - "capital": 0, - "ibgeState": 23, - "siafi": 1331, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.8669, - -39.8689 - ] - } - }, - { - "ibge": 3504008, - "name": "Assis", - "capital": 0, - "ibgeState": 35, - "siafi": 6179, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.66, - -50.4183 - ] - } - }, - { - "ibge": 1200054, - "name": "Assis Brasil", - "capital": 0, - "ibgeState": 12, - "siafi": 157, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -10.9298, - -69.5738 - ] - } - }, - { - "ibge": 4102000, - "name": "Assis Chateaubriand", - "capital": 0, - "ibgeState": 41, - "siafi": 7953, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.4168, - -53.5213 - ] - } - }, - { - "ibge": 2501351, - "name": "Assunção", - "capital": 0, - "ibgeState": 25, - "siafi": 450, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.07231, - -36.725 - ] - } - }, - { - "ibge": 2201051, - "name": "Assunção do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 270, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.865, - -41.0389 - ] - } - }, - { - "ibge": 3104601, - "name": "Astolfo Dutra", - "capital": 0, - "ibgeState": 31, - "siafi": 4091, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3184, - -42.8572 - ] - } - }, - { - "ibge": 4102109, - "name": "Astorga", - "capital": 0, - "ibgeState": 41, - "siafi": 7439, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2318, - -51.6668 - ] - } - }, - { - "ibge": 4102208, - "name": "Atalaia", - "capital": 0, - "ibgeState": 41, - "siafi": 7441, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1517, - -52.0551 - ] - } - }, - { - "ibge": 2700409, - "name": "Atalaia", - "capital": 0, - "ibgeState": 27, - "siafi": 2707, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.5119, - -36.0086 - ] - } - }, - { - "ibge": 1300201, - "name": "Atalaia do Norte", - "capital": 0, - "ibgeState": 13, - "siafi": 205, - "ddd": 97, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -4.37055, - -70.1967 - ] - } - }, - { - "ibge": 4201802, - "name": "Atalanta", - "capital": 0, - "ibgeState": 42, - "siafi": 8035, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4219, - -49.7789 - ] - } - }, - { - "ibge": 3104700, - "name": "Ataléia", - "capital": 0, - "ibgeState": 31, - "siafi": 4093, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.0438, - -41.1149 - ] - } - }, - { - "ibge": 3504107, - "name": "Atibaia", - "capital": 0, - "ibgeState": 35, - "siafi": 6181, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1171, - -46.5563 - ] - } - }, - { - "ibge": 3200706, - "name": "Atilio Vivacqua", - "capital": 0, - "ibgeState": 32, - "siafi": 5613, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.913, - -41.1986 - ] - } - }, - { - "ibge": 1702554, - "name": "Augustinópolis", - "capital": 0, - "ibgeState": 17, - "siafi": 9685, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.46863, - -47.8863 - ] - } - }, - { - "ibge": 1500909, - "name": "Augusto Corrêa", - "capital": 0, - "ibgeState": 15, - "siafi": 417, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.05109, - -46.6147 - ] - } - }, - { - "ibge": 3104809, - "name": "Augusto de Lima", - "capital": 0, - "ibgeState": 31, - "siafi": 4095, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.0997, - -44.2655 - ] - } - }, - { - "ibge": 4301503, - "name": "Augusto Pestana", - "capital": 0, - "ibgeState": 43, - "siafi": 8529, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5172, - -53.9883 - ] - } - }, - { - "ibge": 2401305, - "name": "Augusto Severo (Campo Grande)", - "capital": 0, - "ibgeState": 24, - "siafi": 1625, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.86206, - -37.3135 - ] - } - }, - { - "ibge": 4301552, - "name": "Áurea", - "capital": 0, - "ibgeState": 43, - "siafi": 8487, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6936, - -52.0505 - ] - } - }, - { - "ibge": 2902401, - "name": "Aurelino Leal", - "capital": 0, - "ibgeState": 29, - "siafi": 3347, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.321, - -39.329 - ] - } - }, - { - "ibge": 3504206, - "name": "Auriflama", - "capital": 0, - "ibgeState": 35, - "siafi": 6183, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6836, - -50.5572 - ] - } - }, - { - "ibge": 5202601, - "name": "Aurilândia", - "capital": 0, - "ibgeState": 52, - "siafi": 9251, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.6773, - -50.4641 - ] - } - }, - { - "ibge": 2301703, - "name": "Aurora", - "capital": 0, - "ibgeState": 23, - "siafi": 1333, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.93349, - -38.9742 - ] - } - }, - { - "ibge": 4201901, - "name": "Aurora", - "capital": 0, - "ibgeState": 42, - "siafi": 8037, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3098, - -49.6295 - ] - } - }, - { - "ibge": 1500958, - "name": "Aurora do Pará", - "capital": 0, - "ibgeState": 15, - "siafi": 389, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.14898, - -47.5677 - ] - } - }, - { - "ibge": 1702703, - "name": "Aurora do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9253, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.7105, - -46.4076 - ] - } - }, - { - "ibge": 1300300, - "name": "Autazes", - "capital": 0, - "ibgeState": 13, - "siafi": 207, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.58574, - -59.1256 - ] - } - }, - { - "ibge": 3504305, - "name": "Avaí", - "capital": 0, - "ibgeState": 35, - "siafi": 6185, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1514, - -49.3356 - ] - } - }, - { - "ibge": 3504404, - "name": "Avanhandava", - "capital": 0, - "ibgeState": 35, - "siafi": 6187, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4584, - -49.9509 - ] - } - }, - { - "ibge": 3504503, - "name": "Avaré", - "capital": 0, - "ibgeState": 35, - "siafi": 6189, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1067, - -48.9251 - ] - } - }, - { - "ibge": 1501006, - "name": "Aveiro", - "capital": 0, - "ibgeState": 15, - "siafi": 419, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.60841, - -55.3199 - ] - } - }, - { - "ibge": 2201101, - "name": "Avelino Lopes", - "capital": 0, - "ibgeState": 22, - "siafi": 1021, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.1345, - -43.9563 - ] - } - }, - { - "ibge": 5202809, - "name": "Avelinópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9255, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.4672, - -49.7579 - ] - } - }, - { - "ibge": 2101103, - "name": "Axixá", - "capital": 0, - "ibgeState": 21, - "siafi": 721, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.83939, - -44.062 - ] - } - }, - { - "ibge": 1702901, - "name": "Axixá do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9257, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.61275, - -47.7701 - ] - } - }, - { - "ibge": 1703008, - "name": "Babaçulândia", - "capital": 0, - "ibgeState": 17, - "siafi": 9259, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.20923, - -47.7613 - ] - } - }, - { - "ibge": 2101202, - "name": "Bacabal", - "capital": 0, - "ibgeState": 21, - "siafi": 723, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.22447, - -44.7832 - ] - } - }, - { - "ibge": 2101251, - "name": "Bacabeira", - "capital": 0, - "ibgeState": 21, - "siafi": 116, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.96452, - -44.3164 - ] - } - }, - { - "ibge": 2101301, - "name": "Bacuri", - "capital": 0, - "ibgeState": 21, - "siafi": 725, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.6965, - -45.1328 - ] - } - }, - { - "ibge": 2101350, - "name": "Bacurituba", - "capital": 0, - "ibgeState": 21, - "siafi": 118, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.71, - -44.7329 - ] - } - }, - { - "ibge": 3504602, - "name": "Bady Bassitt", - "capital": 0, - "ibgeState": 35, - "siafi": 6191, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9197, - -49.4385 - ] - } - }, - { - "ibge": 3104908, - "name": "Baependi", - "capital": 0, - "ibgeState": 31, - "siafi": 4097, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.957, - -44.8874 - ] - } - }, - { - "ibge": 4301602, - "name": "Bagé", - "capital": 0, - "ibgeState": 43, - "siafi": 8531, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.3297, - -54.0999 - ] - } - }, - { - "ibge": 1501105, - "name": "Bagre", - "capital": 0, - "ibgeState": 15, - "siafi": 421, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.90057, - -50.1987 - ] - } - }, - { - "ibge": 2501401, - "name": "Baía da Traição", - "capital": 0, - "ibgeState": 25, - "siafi": 1929, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.69209, - -34.9381 - ] - } - }, - { - "ibge": 2401404, - "name": "Baía Formosa", - "capital": 0, - "ibgeState": 24, - "siafi": 1627, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.37161, - -35.0033 - ] - } - }, - { - "ibge": 2902500, - "name": "Baianópolis", - "capital": 0, - "ibgeState": 29, - "siafi": 3349, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.3016, - -44.5388 - ] - } - }, - { - "ibge": 1501204, - "name": "Baião", - "capital": 0, - "ibgeState": 15, - "siafi": 423, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.79021, - -49.6694 - ] - } - }, - { - "ibge": 2902609, - "name": "Baixa Grande", - "capital": 0, - "ibgeState": 29, - "siafi": 3351, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.9519, - -40.169 - ] - } - }, - { - "ibge": 2201150, - "name": "Baixa Grande do Ribeiro", - "capital": 0, - "ibgeState": 22, - "siafi": 2245, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.84903, - -45.219 - ] - } - }, - { - "ibge": 2301802, - "name": "Baixio", - "capital": 0, - "ibgeState": 23, - "siafi": 1335, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.71945, - -38.7134 - ] - } - }, - { - "ibge": 3200805, - "name": "Baixo Guandu", - "capital": 0, - "ibgeState": 32, - "siafi": 5615, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5213, - -41.0109 - ] - } - }, - { - "ibge": 3504701, - "name": "Balbinos", - "capital": 0, - "ibgeState": 35, - "siafi": 6193, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8963, - -49.3619 - ] - } - }, - { - "ibge": 3105004, - "name": "Baldim", - "capital": 0, - "ibgeState": 31, - "siafi": 4099, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2832, - -43.9613 - ] - } - }, - { - "ibge": 5203104, - "name": "Baliza", - "capital": 0, - "ibgeState": 52, - "siafi": 9261, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.1966, - -52.5393 - ] - } - }, - { - "ibge": 4201950, - "name": "Balneário Arroio do Silva", - "capital": 0, - "ibgeState": 42, - "siafi": 888, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.9806, - -49.4237 - ] - } - }, - { - "ibge": 4202057, - "name": "Balneário Barra do Sul", - "capital": 0, - "ibgeState": 42, - "siafi": 5549, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.4597, - -48.6123 - ] - } - }, - { - "ibge": 4202008, - "name": "Balneário Camboriú", - "capital": 0, - "ibgeState": 42, - "siafi": 8039, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9926, - -48.6352 - ] - } - }, - { - "ibge": 4202073, - "name": "Balneário Gaivota", - "capital": 0, - "ibgeState": 42, - "siafi": 890, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.1527, - -49.5841 - ] - } - }, - { - "ibge": 4212809, - "name": "Balneário Piçarras", - "capital": 0, - "ibgeState": 42, - "siafi": 8251, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7639, - -48.6717 - ] - } - }, - { - "ibge": 4301636, - "name": "Balneário Pinhal", - "capital": 0, - "ibgeState": 43, - "siafi": 954, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.2419, - -50.2337 - ] - } - }, - { - "ibge": 4220000, - "name": "Balneário Rincão", - "capital": 0, - "ibgeState": 42, - "siafi": 1192, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.8314, - -49.2352 - ] - } - }, - { - "ibge": 4102307, - "name": "Balsa Nova", - "capital": 0, - "ibgeState": 41, - "siafi": 7443, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.5804, - -49.6291 - ] - } - }, - { - "ibge": 3504800, - "name": "Bálsamo", - "capital": 0, - "ibgeState": 35, - "siafi": 6195, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7348, - -49.5865 - ] - } - }, - { - "ibge": 2101400, - "name": "Balsas", - "capital": 0, - "ibgeState": 21, - "siafi": 727, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.53214, - -46.0372 - ] - } - }, - { - "ibge": 3105103, - "name": "Bambuí", - "capital": 0, - "ibgeState": 31, - "siafi": 4101, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0166, - -45.9754 - ] - } - }, - { - "ibge": 2301851, - "name": "Banabuiú", - "capital": 0, - "ibgeState": 23, - "siafi": 1233, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.30454, - -38.9132 - ] - } - }, - { - "ibge": 3504909, - "name": "Bananal", - "capital": 0, - "ibgeState": 35, - "siafi": 6197, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6819, - -44.3281 - ] - } - }, - { - "ibge": 2501500, - "name": "Bananeiras", - "capital": 0, - "ibgeState": 25, - "siafi": 1931, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.74775, - -35.6246 - ] - } - }, - { - "ibge": 3105202, - "name": "Bandeira", - "capital": 0, - "ibgeState": 31, - "siafi": 4103, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.8783, - -40.5622 - ] - } - }, - { - "ibge": 3105301, - "name": "Bandeira do Sul", - "capital": 0, - "ibgeState": 31, - "siafi": 4105, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7308, - -46.3833 - ] - } - }, - { - "ibge": 4202081, - "name": "Bandeirante", - "capital": 0, - "ibgeState": 42, - "siafi": 892, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7705, - -53.6413 - ] - } - }, - { - "ibge": 5001508, - "name": "Bandeirantes", - "capital": 0, - "ibgeState": 50, - "siafi": 9029, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -19.9275, - -54.3585 - ] - } - }, - { - "ibge": 4102406, - "name": "Bandeirantes", - "capital": 0, - "ibgeState": 41, - "siafi": 7445, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1078, - -50.3704 - ] - } - }, - { - "ibge": 1703057, - "name": "Bandeirantes do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 74, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.75612, - -48.5836 - ] - } - }, - { - "ibge": 1501253, - "name": "Bannach", - "capital": 0, - "ibgeState": 15, - "siafi": 42, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.34779, - -50.3959 - ] - } - }, - { - "ibge": 2902658, - "name": "Banzaê", - "capital": 0, - "ibgeState": 29, - "siafi": 3261, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.5788, - -38.6212 - ] - } - }, - { - "ibge": 4301651, - "name": "Barão", - "capital": 0, - "ibgeState": 43, - "siafi": 8485, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3725, - -51.4949 - ] - } - }, - { - "ibge": 3505005, - "name": "Barão de Antonina", - "capital": 0, - "ibgeState": 35, - "siafi": 6201, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6284, - -49.5634 - ] - } - }, - { - "ibge": 3105400, - "name": "Barão de Cocais", - "capital": 0, - "ibgeState": 31, - "siafi": 4107, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9389, - -43.4755 - ] - } - }, - { - "ibge": 4301701, - "name": "Barão de Cotegipe", - "capital": 0, - "ibgeState": 43, - "siafi": 8533, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6208, - -52.3798 - ] - } - }, - { - "ibge": 2101509, - "name": "Barão de Grajaú", - "capital": 0, - "ibgeState": 21, - "siafi": 729, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.74463, - -43.0261 - ] - } - }, - { - "ibge": 5101605, - "name": "Barão de Melgaço", - "capital": 0, - "ibgeState": 51, - "siafi": 9031, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -16.2067, - -55.9623 - ] - } - }, - { - "ibge": 3105509, - "name": "Barão de Monte Alto", - "capital": 0, - "ibgeState": 31, - "siafi": 4109, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2444, - -42.2372 - ] - } - }, - { - "ibge": 4301750, - "name": "Barão do Triunfo", - "capital": 0, - "ibgeState": 43, - "siafi": 5771, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.3891, - -51.7384 - ] - } - }, - { - "ibge": 2401453, - "name": "Baraúna", - "capital": 0, - "ibgeState": 24, - "siafi": 3003, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.06977, - -37.6129 - ] - } - }, - { - "ibge": 2501534, - "name": "Baraúna", - "capital": 0, - "ibgeState": 25, - "siafi": 452, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.63484, - -36.2601 - ] - } - }, - { - "ibge": 3105608, - "name": "Barbacena", - "capital": 0, - "ibgeState": 31, - "siafi": 4111, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2214, - -43.7703 - ] - } - }, - { - "ibge": 2301901, - "name": "Barbalha", - "capital": 0, - "ibgeState": 23, - "siafi": 1337, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.2982, - -39.3021 - ] - } - }, - { - "ibge": 3505104, - "name": "Barbosa", - "capital": 0, - "ibgeState": 35, - "siafi": 6199, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2657, - -49.9518 - ] - } - }, - { - "ibge": 4102505, - "name": "Barbosa Ferraz", - "capital": 0, - "ibgeState": 41, - "siafi": 7447, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.0334, - -52.004 - ] - } - }, - { - "ibge": 1501303, - "name": "Barcarena", - "capital": 0, - "ibgeState": 15, - "siafi": 425, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.51187, - -48.6195 - ] - } - }, - { - "ibge": 2401503, - "name": "Barcelona", - "capital": 0, - "ibgeState": 24, - "siafi": 1629, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.94284, - -35.9247 - ] - } - }, - { - "ibge": 1300409, - "name": "Barcelos", - "capital": 0, - "ibgeState": 13, - "siafi": 209, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -0.983373, - -62.9311 - ] - } - }, - { - "ibge": 3505203, - "name": "Bariri", - "capital": 0, - "ibgeState": 35, - "siafi": 6203, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.073, - -48.7438 - ] - } - }, - { - "ibge": 2902708, - "name": "Barra", - "capital": 0, - "ibgeState": 29, - "siafi": 3353, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.0859, - -43.1459 - ] - } - }, - { - "ibge": 4202099, - "name": "Barra Bonita", - "capital": 0, - "ibgeState": 42, - "siafi": 894, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.654, - -53.44 - ] - } - }, - { - "ibge": 3505302, - "name": "Barra Bonita", - "capital": 0, - "ibgeState": 35, - "siafi": 6205, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4909, - -48.5583 - ] - } - }, - { - "ibge": 2201176, - "name": "Barra D'Alcântara", - "capital": 0, - "ibgeState": 22, - "siafi": 272, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.51645, - -42.1146 - ] - } - }, - { - "ibge": 2902807, - "name": "Barra da Estiva", - "capital": 0, - "ibgeState": 29, - "siafi": 3355, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.6237, - -41.3347 - ] - } - }, - { - "ibge": 2601300, - "name": "Barra de Guabiraba", - "capital": 0, - "ibgeState": 26, - "siafi": 2325, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.42075, - -35.6585 - ] - } - }, - { - "ibge": 2501609, - "name": "Barra de Santa Rosa", - "capital": 0, - "ibgeState": 25, - "siafi": 1933, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.71816, - -36.0671 - ] - } - }, - { - "ibge": 2501575, - "name": "Barra de Santana", - "capital": 0, - "ibgeState": 25, - "siafi": 454, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.51809, - -35.9913 - ] - } - }, - { - "ibge": 2700508, - "name": "Barra de Santo Antônio", - "capital": 0, - "ibgeState": 27, - "siafi": 2709, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.4023, - -35.5101 - ] - } - }, - { - "ibge": 3200904, - "name": "Barra de São Francisco", - "capital": 0, - "ibgeState": 32, - "siafi": 5617, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7548, - -40.8965 - ] - } - }, - { - "ibge": 2501708, - "name": "Barra de São Miguel", - "capital": 0, - "ibgeState": 25, - "siafi": 1935, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.74603, - -36.3209 - ] - } - }, - { - "ibge": 2700607, - "name": "Barra de São Miguel", - "capital": 0, - "ibgeState": 27, - "siafi": 2711, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.83842, - -35.9057 - ] - } - }, - { - "ibge": 5101704, - "name": "Barra do Bugres", - "capital": 0, - "ibgeState": 51, - "siafi": 9033, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.0702, - -57.1878 - ] - } - }, - { - "ibge": 3505351, - "name": "Barra do Chapéu", - "capital": 0, - "ibgeState": 35, - "siafi": 2997, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.4722, - -49.0238 - ] - } - }, - { - "ibge": 2902906, - "name": "Barra do Choça", - "capital": 0, - "ibgeState": 29, - "siafi": 3357, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.8654, - -40.5791 - ] - } - }, - { - "ibge": 2101608, - "name": "Barra do Corda", - "capital": 0, - "ibgeState": 21, - "siafi": 731, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.49682, - -45.2485 - ] - } - }, - { - "ibge": 5101803, - "name": "Barra do Garças", - "capital": 0, - "ibgeState": 51, - "siafi": 9035, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.8804, - -52.264 - ] - } - }, - { - "ibge": 4301859, - "name": "Barra do Guarita", - "capital": 0, - "ibgeState": 43, - "siafi": 6069, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1927, - -53.7109 - ] - } - }, - { - "ibge": 4102703, - "name": "Barra do Jacaré", - "capital": 0, - "ibgeState": 41, - "siafi": 7451, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.116, - -50.1842 - ] - } - }, - { - "ibge": 2903003, - "name": "Barra do Mendes", - "capital": 0, - "ibgeState": 29, - "siafi": 3359, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.81, - -42.059 - ] - } - }, - { - "ibge": 1703073, - "name": "Barra do Ouro", - "capital": 0, - "ibgeState": 17, - "siafi": 76, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.69593, - -47.6776 - ] - } - }, - { - "ibge": 3300308, - "name": "Barra do Piraí", - "capital": 0, - "ibgeState": 33, - "siafi": 5805, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4715, - -43.8269 - ] - } - }, - { - "ibge": 4301875, - "name": "Barra do Quaraí", - "capital": 0, - "ibgeState": 43, - "siafi": 956, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.2029, - -57.5497 - ] - } - }, - { - "ibge": 4301909, - "name": "Barra do Ribeiro", - "capital": 0, - "ibgeState": 43, - "siafi": 8537, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.2939, - -51.3014 - ] - } - }, - { - "ibge": 4301925, - "name": "Barra do Rio Azul", - "capital": 0, - "ibgeState": 43, - "siafi": 5959, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4069, - -52.4084 - ] - } - }, - { - "ibge": 2903102, - "name": "Barra do Rocha", - "capital": 0, - "ibgeState": 29, - "siafi": 3361, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.2, - -39.5991 - ] - } - }, - { - "ibge": 3505401, - "name": "Barra do Turvo", - "capital": 0, - "ibgeState": 35, - "siafi": 6207, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.759, - -48.5013 - ] - } - }, - { - "ibge": 2800605, - "name": "Barra dos Coqueiros", - "capital": 0, - "ibgeState": 28, - "siafi": 3111, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.8996, - -37.0323 - ] - } - }, - { - "ibge": 4301958, - "name": "Barra Funda", - "capital": 0, - "ibgeState": 43, - "siafi": 5943, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9205, - -53.0391 - ] - } - }, - { - "ibge": 3105707, - "name": "Barra Longa", - "capital": 0, - "ibgeState": 31, - "siafi": 4113, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2869, - -43.0402 - ] - } - }, - { - "ibge": 3300407, - "name": "Barra Mansa", - "capital": 0, - "ibgeState": 33, - "siafi": 5807, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5481, - -44.1752 - ] - } - }, - { - "ibge": 4202107, - "name": "Barra Velha", - "capital": 0, - "ibgeState": 42, - "siafi": 8041, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.637, - -48.6933 - ] - } - }, - { - "ibge": 4301800, - "name": "Barracão", - "capital": 0, - "ibgeState": 43, - "siafi": 8535, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6739, - -51.4585 - ] - } - }, - { - "ibge": 4102604, - "name": "Barracão", - "capital": 0, - "ibgeState": 41, - "siafi": 7449, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.2502, - -53.6324 - ] - } - }, - { - "ibge": 2201200, - "name": "Barras", - "capital": 0, - "ibgeState": 22, - "siafi": 1023, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.24468, - -42.2922 - ] - } - }, - { - "ibge": 2301950, - "name": "Barreira", - "capital": 0, - "ibgeState": 23, - "siafi": 1235, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.28921, - -38.6429 - ] - } - }, - { - "ibge": 2903201, - "name": "Barreiras", - "capital": 0, - "ibgeState": 29, - "siafi": 3363, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.1439, - -44.9968 - ] - } - }, - { - "ibge": 2201309, - "name": "Barreiras do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1025, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.9296, - -45.4702 - ] - } - }, - { - "ibge": 1300508, - "name": "Barreirinha", - "capital": 0, - "ibgeState": 13, - "siafi": 211, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -2.79886, - -57.0679 - ] - } - }, - { - "ibge": 2101707, - "name": "Barreirinhas", - "capital": 0, - "ibgeState": 21, - "siafi": 733, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.75863, - -42.8232 - ] - } - }, - { - "ibge": 2601409, - "name": "Barreiros", - "capital": 0, - "ibgeState": 26, - "siafi": 2327, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.81605, - -35.1832 - ] - } - }, - { - "ibge": 3505500, - "name": "Barretos", - "capital": 0, - "ibgeState": 35, - "siafi": 6209, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5531, - -48.5698 - ] - } - }, - { - "ibge": 3505609, - "name": "Barrinha", - "capital": 0, - "ibgeState": 35, - "siafi": 6211, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1864, - -48.1636 - ] - } - }, - { - "ibge": 2302008, - "name": "Barro", - "capital": 0, - "ibgeState": 23, - "siafi": 1339, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.17188, - -38.7741 - ] - } - }, - { - "ibge": 2903235, - "name": "Barro Alto", - "capital": 0, - "ibgeState": 29, - "siafi": 3075, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.7605, - -41.9054 - ] - } - }, - { - "ibge": 5203203, - "name": "Barro Alto", - "capital": 0, - "ibgeState": 52, - "siafi": 9263, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.9658, - -48.9086 - ] - } - }, - { - "ibge": 2201408, - "name": "Barro Duro", - "capital": 0, - "ibgeState": 22, - "siafi": 1027, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.81673, - -42.5147 - ] - } - }, - { - "ibge": 2903300, - "name": "Barro Preto", - "capital": 0, - "ibgeState": 29, - "siafi": 3365, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.7948, - -39.476 - ] - } - }, - { - "ibge": 2903276, - "name": "Barrocas", - "capital": 0, - "ibgeState": 29, - "siafi": 1110, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.5272, - -39.0776 - ] - } - }, - { - "ibge": 1703107, - "name": "Barrolândia", - "capital": 0, - "ibgeState": 17, - "siafi": 9693, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.83404, - -48.7252 - ] - } - }, - { - "ibge": 2302057, - "name": "Barroquinha", - "capital": 0, - "ibgeState": 23, - "siafi": 1237, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.02051, - -41.1358 - ] - } - }, - { - "ibge": 4302006, - "name": "Barros Cassal", - "capital": 0, - "ibgeState": 43, - "siafi": 8539, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.0947, - -52.5836 - ] - } - }, - { - "ibge": 3105905, - "name": "Barroso", - "capital": 0, - "ibgeState": 31, - "siafi": 4117, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1907, - -43.972 - ] - } - }, - { - "ibge": 3505708, - "name": "Barueri", - "capital": 0, - "ibgeState": 35, - "siafi": 6213, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5057, - -46.879 - ] - } - }, - { - "ibge": 3505807, - "name": "Bastos", - "capital": 0, - "ibgeState": 35, - "siafi": 6215, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.921, - -50.7357 - ] - } - }, - { - "ibge": 5001904, - "name": "Bataguassu", - "capital": 0, - "ibgeState": 50, - "siafi": 9037, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -21.7159, - -52.4221 - ] - } - }, - { - "ibge": 2201507, - "name": "Batalha", - "capital": 0, - "ibgeState": 22, - "siafi": 1029, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.0223, - -42.0787 - ] - } - }, - { - "ibge": 2700706, - "name": "Batalha", - "capital": 0, - "ibgeState": 27, - "siafi": 2713, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.6742, - -37.133 - ] - } - }, - { - "ibge": 3505906, - "name": "Batatais", - "capital": 0, - "ibgeState": 35, - "siafi": 6217, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8929, - -47.5921 - ] - } - }, - { - "ibge": 5002001, - "name": "Batayporã", - "capital": 0, - "ibgeState": 50, - "siafi": 9039, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.2944, - -53.2705 - ] - } - }, - { - "ibge": 2302107, - "name": "Baturité", - "capital": 0, - "ibgeState": 23, - "siafi": 1341, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.32598, - -38.8812 - ] - } - }, - { - "ibge": 3506003, - "name": "Bauru", - "capital": 0, - "ibgeState": 35, - "siafi": 6219, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3246, - -49.0871 - ] - } - }, - { - "ibge": 2501807, - "name": "Bayeux", - "capital": 0, - "ibgeState": 25, - "siafi": 1937, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.1238, - -34.9293 - ] - } - }, - { - "ibge": 3506102, - "name": "Bebedouro", - "capital": 0, - "ibgeState": 35, - "siafi": 6221, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9491, - -48.4791 - ] - } - }, - { - "ibge": 2302206, - "name": "Beberibe", - "capital": 0, - "ibgeState": 23, - "siafi": 1343, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.17741, - -38.1271 - ] - } - }, - { - "ibge": 2302305, - "name": "Bela Cruz", - "capital": 0, - "ibgeState": 23, - "siafi": 1345, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.04996, - -40.1671 - ] - } - }, - { - "ibge": 5002100, - "name": "Bela Vista", - "capital": 0, - "ibgeState": 50, - "siafi": 9041, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.1073, - -56.5263 - ] - } - }, - { - "ibge": 4102752, - "name": "Bela Vista da Caroba", - "capital": 0, - "ibgeState": 41, - "siafi": 834, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.8842, - -53.6725 - ] - } - }, - { - "ibge": 5203302, - "name": "Bela Vista de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9265, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.9693, - -48.9513 - ] - } - }, - { - "ibge": 3106002, - "name": "Bela Vista de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4119, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8302, - -43.0922 - ] - } - }, - { - "ibge": 2101772, - "name": "Bela Vista do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 122, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.72618, - -45.3075 - ] - } - }, - { - "ibge": 4102802, - "name": "Bela Vista do Paraíso", - "capital": 0, - "ibgeState": 41, - "siafi": 7453, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9937, - -51.1927 - ] - } - }, - { - "ibge": 2201556, - "name": "Bela Vista do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 274, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.98809, - -41.8675 - ] - } - }, - { - "ibge": 4202131, - "name": "Bela Vista do Toldo", - "capital": 0, - "ibgeState": 42, - "siafi": 896, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.2746, - -50.4664 - ] - } - }, - { - "ibge": 2101731, - "name": "Belágua", - "capital": 0, - "ibgeState": 21, - "siafi": 120, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.15485, - -43.5122 - ] - } - }, - { - "ibge": 1501402, - "name": "Belém", - "capital": 1, - "ibgeState": 15, - "siafi": 427, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.4554, - -48.4898 - ] - } - }, - { - "ibge": 2501906, - "name": "Belém", - "capital": 0, - "ibgeState": 25, - "siafi": 1939, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.74261, - -35.5166 - ] - } - }, - { - "ibge": 2700805, - "name": "Belém", - "capital": 0, - "ibgeState": 27, - "siafi": 2715, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.57047, - -36.4904 - ] - } - }, - { - "ibge": 2601508, - "name": "Belém de Maria", - "capital": 0, - "ibgeState": 26, - "siafi": 2329, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.62504, - -35.8335 - ] - } - }, - { - "ibge": 2502003, - "name": "Belém do Brejo do Cruz", - "capital": 0, - "ibgeState": 25, - "siafi": 1941, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.18515, - -37.5348 - ] - } - }, - { - "ibge": 2201572, - "name": "Belém do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 276, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.36652, - -40.9688 - ] - } - }, - { - "ibge": 2601607, - "name": "Belém do São Francisco", - "capital": 0, - "ibgeState": 26, - "siafi": 2331, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.75046, - -38.9623 - ] - } - }, - { - "ibge": 3300456, - "name": "Belford Roxo", - "capital": 0, - "ibgeState": 33, - "siafi": 2909, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.764, - -43.3992 - ] - } - }, - { - "ibge": 3106101, - "name": "Belmiro Braga", - "capital": 0, - "ibgeState": 31, - "siafi": 4121, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.944, - -43.4084 - ] - } - }, - { - "ibge": 4202156, - "name": "Belmonte", - "capital": 0, - "ibgeState": 42, - "siafi": 5745, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.843, - -53.5758 - ] - } - }, - { - "ibge": 2903409, - "name": "Belmonte", - "capital": 0, - "ibgeState": 29, - "siafi": 3367, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.8608, - -38.8758 - ] - } - }, - { - "ibge": 2903508, - "name": "Belo Campo", - "capital": 0, - "ibgeState": 29, - "siafi": 3369, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.0334, - -41.2652 - ] - } - }, - { - "ibge": 3106200, - "name": "Belo Horizonte", - "capital": 1, - "ibgeState": 31, - "siafi": 4123, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9102, - -43.9266 - ] - } - }, - { - "ibge": 2601706, - "name": "Belo Jardim", - "capital": 0, - "ibgeState": 26, - "siafi": 2333, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.3313, - -36.4258 - ] - } - }, - { - "ibge": 2700904, - "name": "Belo Monte", - "capital": 0, - "ibgeState": 27, - "siafi": 2717, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.82272, - -37.277 - ] - } - }, - { - "ibge": 3106309, - "name": "Belo Oriente", - "capital": 0, - "ibgeState": 31, - "siafi": 4125, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2199, - -42.4828 - ] - } - }, - { - "ibge": 3106408, - "name": "Belo Vale", - "capital": 0, - "ibgeState": 31, - "siafi": 4127, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4077, - -44.0275 - ] - } - }, - { - "ibge": 1501451, - "name": "Belterra", - "capital": 0, - "ibgeState": 15, - "siafi": 44, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.63609, - -54.9374 - ] - } - }, - { - "ibge": 2201606, - "name": "Beneditinos", - "capital": 0, - "ibgeState": 22, - "siafi": 1031, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.45676, - -42.3638 - ] - } - }, - { - "ibge": 2101806, - "name": "Benedito Leite", - "capital": 0, - "ibgeState": 21, - "siafi": 735, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.21037, - -44.5577 - ] - } - }, - { - "ibge": 4202206, - "name": "Benedito Novo", - "capital": 0, - "ibgeState": 42, - "siafi": 8043, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.781, - -49.3593 - ] - } - }, - { - "ibge": 1501501, - "name": "Benevides", - "capital": 0, - "ibgeState": 15, - "siafi": 429, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.36183, - -48.2434 - ] - } - }, - { - "ibge": 1300607, - "name": "Benjamin Constant", - "capital": 0, - "ibgeState": 13, - "siafi": 213, - "ddd": 97, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -4.37768, - -70.0342 - ] - } - }, - { - "ibge": 4302055, - "name": "Benjamin Constant do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 958, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5086, - -52.5995 - ] - } - }, - { - "ibge": 3506201, - "name": "Bento de Abreu", - "capital": 0, - "ibgeState": 35, - "siafi": 6223, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2686, - -50.814 - ] - } - }, - { - "ibge": 2401602, - "name": "Bento Fernandes", - "capital": 0, - "ibgeState": 24, - "siafi": 1631, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.69906, - -35.813 - ] - } - }, - { - "ibge": 4302105, - "name": "Bento Gonçalves", - "capital": 0, - "ibgeState": 43, - "siafi": 8541, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.1662, - -51.5165 - ] - } - }, - { - "ibge": 2101905, - "name": "Bequimão", - "capital": 0, - "ibgeState": 21, - "siafi": 737, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.44162, - -44.7842 - ] - } - }, - { - "ibge": 3106507, - "name": "Berilo", - "capital": 0, - "ibgeState": 31, - "siafi": 4129, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.9567, - -42.4606 - ] - } - }, - { - "ibge": 3106655, - "name": "Berizal", - "capital": 0, - "ibgeState": 31, - "siafi": 570, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.61, - -41.7432 - ] - } - }, - { - "ibge": 2502052, - "name": "Bernardino Batista", - "capital": 0, - "ibgeState": 25, - "siafi": 456, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.44572, - -38.5521 - ] - } - }, - { - "ibge": 3506300, - "name": "Bernardino de Campos", - "capital": 0, - "ibgeState": 35, - "siafi": 6225, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0164, - -49.4679 - ] - } - }, - { - "ibge": 2101939, - "name": "Bernardo do Mearim", - "capital": 0, - "ibgeState": 21, - "siafi": 124, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.62666, - -44.7608 - ] - } - }, - { - "ibge": 1703206, - "name": "Bernardo Sayão", - "capital": 0, - "ibgeState": 17, - "siafi": 9695, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.87481, - -48.8893 - ] - } - }, - { - "ibge": 3506359, - "name": "Bertioga", - "capital": 0, - "ibgeState": 35, - "siafi": 2965, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8486, - -46.1396 - ] - } - }, - { - "ibge": 2201705, - "name": "Bertolínia", - "capital": 0, - "ibgeState": 22, - "siafi": 1033, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.63338, - -43.9498 - ] - } - }, - { - "ibge": 3106606, - "name": "Bertópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 4131, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.059, - -40.58 - ] - } - }, - { - "ibge": 1300631, - "name": "Beruri", - "capital": 0, - "ibgeState": 13, - "siafi": 295, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.89874, - -61.3616 - ] - } - }, - { - "ibge": 2601805, - "name": "Betânia", - "capital": 0, - "ibgeState": 26, - "siafi": 2335, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.26787, - -38.0345 - ] - } - }, - { - "ibge": 2201739, - "name": "Betânia do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 278, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.14376, - -40.7989 - ] - } - }, - { - "ibge": 3106705, - "name": "Betim", - "capital": 0, - "ibgeState": 31, - "siafi": 4133, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9668, - -44.2008 - ] - } - }, - { - "ibge": 2601904, - "name": "Bezerros", - "capital": 0, - "ibgeState": 26, - "siafi": 2337, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.2328, - -35.796 - ] - } - }, - { - "ibge": 3106804, - "name": "Bias Fortes", - "capital": 0, - "ibgeState": 31, - "siafi": 4135, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.602, - -43.7574 - ] - } - }, - { - "ibge": 3106903, - "name": "Bicas", - "capital": 0, - "ibgeState": 31, - "siafi": 4137, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7232, - -43.056 - ] - } - }, - { - "ibge": 4202305, - "name": "Biguaçu", - "capital": 0, - "ibgeState": 42, - "siafi": 8045, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.496, - -48.6598 - ] - } - }, - { - "ibge": 3506409, - "name": "Bilac", - "capital": 0, - "ibgeState": 35, - "siafi": 6227, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.404, - -50.4746 - ] - } - }, - { - "ibge": 3107000, - "name": "Biquinhas", - "capital": 0, - "ibgeState": 31, - "siafi": 4139, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7754, - -45.4974 - ] - } - }, - { - "ibge": 3506508, - "name": "Birigui", - "capital": 0, - "ibgeState": 35, - "siafi": 6229, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.291, - -50.3432 - ] - } - }, - { - "ibge": 3506607, - "name": "Biritiba-Mirim", - "capital": 0, - "ibgeState": 35, - "siafi": 6231, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5698, - -46.0407 - ] - } - }, - { - "ibge": 2903607, - "name": "Biritinga", - "capital": 0, - "ibgeState": 29, - "siafi": 3371, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.6072, - -38.8051 - ] - } - }, - { - "ibge": 4102901, - "name": "Bituruna", - "capital": 0, - "ibgeState": 41, - "siafi": 7455, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.1607, - -51.5518 - ] - } - }, - { - "ibge": 4202404, - "name": "Blumenau", - "capital": 0, - "ibgeState": 42, - "siafi": 8047, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9155, - -49.0709 - ] - } - }, - { - "ibge": 4103008, - "name": "Boa Esperança", - "capital": 0, - "ibgeState": 41, - "siafi": 7457, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.2467, - -52.7876 - ] - } - }, - { - "ibge": 3107109, - "name": "Boa Esperança", - "capital": 0, - "ibgeState": 31, - "siafi": 4141, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0927, - -45.5612 - ] - } - }, - { - "ibge": 3201001, - "name": "Boa Esperança", - "capital": 0, - "ibgeState": 32, - "siafi": 5619, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5395, - -40.3025 - ] - } - }, - { - "ibge": 4103024, - "name": "Boa Esperança do Iguaçu", - "capital": 0, - "ibgeState": 41, - "siafi": 5471, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.6324, - -53.2108 - ] - } - }, - { - "ibge": 3506706, - "name": "Boa Esperança do Sul", - "capital": 0, - "ibgeState": 35, - "siafi": 6233, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9918, - -48.3906 - ] - } - }, - { - "ibge": 2201770, - "name": "Boa Hora", - "capital": 0, - "ibgeState": 22, - "siafi": 280, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.41404, - -42.1357 - ] - } - }, - { - "ibge": 2903706, - "name": "Boa Nova", - "capital": 0, - "ibgeState": 29, - "siafi": 3373, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.3598, - -40.2064 - ] - } - }, - { - "ibge": 2502102, - "name": "Boa Ventura", - "capital": 0, - "ibgeState": 25, - "siafi": 1943, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.40982, - -38.2113 - ] - } - }, - { - "ibge": 4103040, - "name": "Boa Ventura de São Roque", - "capital": 0, - "ibgeState": 41, - "siafi": 836, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.8688, - -51.6276 - ] - } - }, - { - "ibge": 2302404, - "name": "Boa Viagem", - "capital": 0, - "ibgeState": 23, - "siafi": 1347, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.11258, - -39.7337 - ] - } - }, - { - "ibge": 1400100, - "name": "Boa Vista", - "capital": 1, - "ibgeState": 14, - "siafi": 301, - "ddd": 95, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - 2.82384, - -60.6753 - ] - } - }, - { - "ibge": 2502151, - "name": "Boa Vista", - "capital": 0, - "ibgeState": 25, - "siafi": 458, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.26365, - -36.2357 - ] - } - }, - { - "ibge": 4103057, - "name": "Boa Vista da Aparecida", - "capital": 0, - "ibgeState": 41, - "siafi": 7981, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4308, - -53.4117 - ] - } - }, - { - "ibge": 4302154, - "name": "Boa Vista das Missões", - "capital": 0, - "ibgeState": 43, - "siafi": 5981, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6671, - -53.3102 - ] - } - }, - { - "ibge": 4302204, - "name": "Boa Vista do Buricá", - "capital": 0, - "ibgeState": 43, - "siafi": 8543, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6693, - -54.1082 - ] - } - }, - { - "ibge": 4302220, - "name": "Boa Vista do Cadeado", - "capital": 0, - "ibgeState": 43, - "siafi": 1124, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5791, - -53.8108 - ] - } - }, - { - "ibge": 2101970, - "name": "Boa Vista do Gurupi", - "capital": 0, - "ibgeState": 21, - "siafi": 126, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.77614, - -46.3002 - ] - } - }, - { - "ibge": 4302238, - "name": "Boa Vista do Incra", - "capital": 0, - "ibgeState": 43, - "siafi": 1126, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.8185, - -53.391 - ] - } - }, - { - "ibge": 1300680, - "name": "Boa Vista do Ramos", - "capital": 0, - "ibgeState": 13, - "siafi": 297, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -2.97409, - -57.5873 - ] - } - }, - { - "ibge": 4302253, - "name": "Boa Vista do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 960, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3544, - -51.6687 - ] - } - }, - { - "ibge": 2903805, - "name": "Boa Vista do Tupim", - "capital": 0, - "ibgeState": 29, - "siafi": 3375, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.6498, - -40.6064 - ] - } - }, - { - "ibge": 2701001, - "name": "Boca da Mata", - "capital": 0, - "ibgeState": 27, - "siafi": 2719, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.64308, - -36.2125 - ] - } - }, - { - "ibge": 1300706, - "name": "Boca do Acre", - "capital": 0, - "ibgeState": 13, - "siafi": 215, - "ddd": 97, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -8.74232, - -67.3919 - ] - } - }, - { - "ibge": 2201804, - "name": "Bocaina", - "capital": 0, - "ibgeState": 22, - "siafi": 1035, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.94124, - -41.3168 - ] - } - }, - { - "ibge": 3506805, - "name": "Bocaina", - "capital": 0, - "ibgeState": 35, - "siafi": 6235, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1365, - -48.523 - ] - } - }, - { - "ibge": 3107208, - "name": "Bocaina de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4143, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1697, - -44.3972 - ] - } - }, - { - "ibge": 4202438, - "name": "Bocaina do Sul", - "capital": 0, - "ibgeState": 42, - "siafi": 898, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7455, - -49.9423 - ] - } - }, - { - "ibge": 3107307, - "name": "Bocaiúva", - "capital": 0, - "ibgeState": 31, - "siafi": 4145, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.1135, - -43.8104 - ] - } - }, - { - "ibge": 4103107, - "name": "Bocaiúva do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 7459, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.2066, - -49.1141 - ] - } - }, - { - "ibge": 2401651, - "name": "Bodó", - "capital": 0, - "ibgeState": 24, - "siafi": 412, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.98027, - -36.4167 - ] - } - }, - { - "ibge": 2602001, - "name": "Bodocó", - "capital": 0, - "ibgeState": 26, - "siafi": 2339, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.77759, - -39.9338 - ] - } - }, - { - "ibge": 5002159, - "name": "Bodoquena", - "capital": 0, - "ibgeState": 50, - "siafi": 9801, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -20.537, - -56.7127 - ] - } - }, - { - "ibge": 3506904, - "name": "Bofete", - "capital": 0, - "ibgeState": 35, - "siafi": 6237, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1055, - -48.2582 - ] - } - }, - { - "ibge": 3507001, - "name": "Boituva", - "capital": 0, - "ibgeState": 35, - "siafi": 6239, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2855, - -47.6786 - ] - } - }, - { - "ibge": 2602100, - "name": "Bom Conselho", - "capital": 0, - "ibgeState": 26, - "siafi": 2341, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.16919, - -36.6857 - ] - } - }, - { - "ibge": 3107406, - "name": "Bom Despacho", - "capital": 0, - "ibgeState": 31, - "siafi": 4147, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7386, - -45.2622 - ] - } - }, - { - "ibge": 3300506, - "name": "Bom Jardim", - "capital": 0, - "ibgeState": 33, - "siafi": 5809, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1545, - -42.4251 - ] - } - }, - { - "ibge": 2602209, - "name": "Bom Jardim", - "capital": 0, - "ibgeState": 26, - "siafi": 2343, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.79695, - -35.5784 - ] - } - }, - { - "ibge": 2102002, - "name": "Bom Jardim", - "capital": 0, - "ibgeState": 21, - "siafi": 955, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.54129, - -45.606 - ] - } - }, - { - "ibge": 4202503, - "name": "Bom Jardim da Serra", - "capital": 0, - "ibgeState": 42, - "siafi": 8389, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3377, - -49.6373 - ] - } - }, - { - "ibge": 5203401, - "name": "Bom Jardim de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9267, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.2063, - -52.1728 - ] - } - }, - { - "ibge": 3107505, - "name": "Bom Jardim de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4149, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9479, - -44.1885 - ] - } - }, - { - "ibge": 4202537, - "name": "Bom Jesus", - "capital": 0, - "ibgeState": 42, - "siafi": 900, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7326, - -52.3919 - ] - } - }, - { - "ibge": 4302303, - "name": "Bom Jesus", - "capital": 0, - "ibgeState": 43, - "siafi": 8545, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6697, - -50.4295 - ] - } - }, - { - "ibge": 2201903, - "name": "Bom Jesus", - "capital": 0, - "ibgeState": 22, - "siafi": 1037, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.07124, - -44.359 - ] - } - }, - { - "ibge": 2401701, - "name": "Bom Jesus", - "capital": 0, - "ibgeState": 24, - "siafi": 1633, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.98648, - -35.5792 - ] - } - }, - { - "ibge": 2502201, - "name": "Bom Jesus", - "capital": 0, - "ibgeState": 25, - "siafi": 1945, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.81601, - -38.6453 - ] - } - }, - { - "ibge": 2903904, - "name": "Bom Jesus da Lapa", - "capital": 0, - "ibgeState": 29, - "siafi": 3377, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.2506, - -43.4108 - ] - } - }, - { - "ibge": 3107604, - "name": "Bom Jesus da Penha", - "capital": 0, - "ibgeState": 31, - "siafi": 4151, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0148, - -46.5174 - ] - } - }, - { - "ibge": 2903953, - "name": "Bom Jesus da Serra", - "capital": 0, - "ibgeState": 29, - "siafi": 3263, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.3663, - -40.5126 - ] - } - }, - { - "ibge": 2102036, - "name": "Bom Jesus das Selvas", - "capital": 0, - "ibgeState": 21, - "siafi": 128, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.47638, - -46.8641 - ] - } - }, - { - "ibge": 5203500, - "name": "Bom Jesus de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9269, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.2173, - -49.74 - ] - } - }, - { - "ibge": 3107703, - "name": "Bom Jesus do Amparo", - "capital": 0, - "ibgeState": 31, - "siafi": 4153, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7054, - -43.4782 - ] - } - }, - { - "ibge": 5101852, - "name": "Bom Jesus do Araguaia", - "capital": 0, - "ibgeState": 51, - "siafi": 1078, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.1706, - -51.5032 - ] - } - }, - { - "ibge": 3107802, - "name": "Bom Jesus do Galho", - "capital": 0, - "ibgeState": 31, - "siafi": 4155, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.836, - -42.3165 - ] - } - }, - { - "ibge": 3300605, - "name": "Bom Jesus do Itabapoana", - "capital": 0, - "ibgeState": 33, - "siafi": 5811, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1449, - -41.6822 - ] - } - }, - { - "ibge": 3201100, - "name": "Bom Jesus do Norte", - "capital": 0, - "ibgeState": 32, - "siafi": 5621, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1173, - -41.6731 - ] - } - }, - { - "ibge": 4202578, - "name": "Bom Jesus do Oeste", - "capital": 0, - "ibgeState": 42, - "siafi": 902, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.6927, - -53.0967 - ] - } - }, - { - "ibge": 4103156, - "name": "Bom Jesus do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 838, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.1958, - -53.5955 - ] - } - }, - { - "ibge": 1501576, - "name": "Bom Jesus do Tocantins", - "capital": 0, - "ibgeState": 15, - "siafi": 575, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.0424, - -48.6047 - ] - } - }, - { - "ibge": 1703305, - "name": "Bom Jesus do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 341, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.96306, - -48.165 - ] - } - }, - { - "ibge": 3507100, - "name": "Bom Jesus dos Perdões", - "capital": 0, - "ibgeState": 35, - "siafi": 6241, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1356, - -46.4675 - ] - } - }, - { - "ibge": 2102077, - "name": "Bom Lugar", - "capital": 0, - "ibgeState": 21, - "siafi": 130, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.37311, - -45.0326 - ] - } - }, - { - "ibge": 4302352, - "name": "Bom Princípio", - "capital": 0, - "ibgeState": 43, - "siafi": 9823, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4856, - -51.3548 - ] - } - }, - { - "ibge": 2201919, - "name": "Bom Princípio do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 2287, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.19631, - -41.6403 - ] - } - }, - { - "ibge": 4302378, - "name": "Bom Progresso", - "capital": 0, - "ibgeState": 43, - "siafi": 6071, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5399, - -53.8716 - ] - } - }, - { - "ibge": 3107901, - "name": "Bom Repouso", - "capital": 0, - "ibgeState": 31, - "siafi": 4157, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4675, - -46.144 - ] - } - }, - { - "ibge": 4202602, - "name": "Bom Retiro", - "capital": 0, - "ibgeState": 42, - "siafi": 8049, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.799, - -49.487 - ] - } - }, - { - "ibge": 4302402, - "name": "Bom Retiro do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8547, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6071, - -51.9456 - ] - } - }, - { - "ibge": 3108008, - "name": "Bom Sucesso", - "capital": 0, - "ibgeState": 31, - "siafi": 4159, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0329, - -44.7537 - ] - } - }, - { - "ibge": 4103206, - "name": "Bom Sucesso", - "capital": 0, - "ibgeState": 41, - "siafi": 7461, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7063, - -51.7671 - ] - } - }, - { - "ibge": 2502300, - "name": "Bom Sucesso", - "capital": 0, - "ibgeState": 25, - "siafi": 1947, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.44176, - -37.9234 - ] - } - }, - { - "ibge": 3507159, - "name": "Bom Sucesso de Itararé", - "capital": 0, - "ibgeState": 35, - "siafi": 3059, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.3155, - -49.1451 - ] - } - }, - { - "ibge": 4103222, - "name": "Bom Sucesso do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 9979, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.0731, - -52.8353 - ] - } - }, - { - "ibge": 4202453, - "name": "Bombinhas", - "capital": 0, - "ibgeState": 42, - "siafi": 5537, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1382, - -48.5146 - ] - } - }, - { - "ibge": 1400159, - "name": "Bonfim", - "capital": 0, - "ibgeState": 14, - "siafi": 307, - "ddd": 95, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - 3.36161, - -59.8333 - ] - } - }, - { - "ibge": 3108107, - "name": "Bonfim", - "capital": 0, - "ibgeState": 31, - "siafi": 4161, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3302, - -44.2366 - ] - } - }, - { - "ibge": 2201929, - "name": "Bonfim do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 2251, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.1605, - -42.8865 - ] - } - }, - { - "ibge": 5203559, - "name": "Bonfinópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9775, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.6173, - -48.9616 - ] - } - }, - { - "ibge": 3108206, - "name": "Bonfinópolis de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4163, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.568, - -45.9839 - ] - } - }, - { - "ibge": 2904001, - "name": "Boninal", - "capital": 0, - "ibgeState": 29, - "siafi": 3379, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.7069, - -41.8286 - ] - } - }, - { - "ibge": 2602308, - "name": "Bonito", - "capital": 0, - "ibgeState": 26, - "siafi": 2345, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.47163, - -35.7292 - ] - } - }, - { - "ibge": 2904050, - "name": "Bonito", - "capital": 0, - "ibgeState": 29, - "siafi": 3265, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.9668, - -41.2647 - ] - } - }, - { - "ibge": 1501600, - "name": "Bonito", - "capital": 0, - "ibgeState": 15, - "siafi": 431, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.36745, - -47.3066 - ] - } - }, - { - "ibge": 5002209, - "name": "Bonito", - "capital": 0, - "ibgeState": 50, - "siafi": 9043, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -21.1261, - -56.4836 - ] - } - }, - { - "ibge": 3108255, - "name": "Bonito de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 572, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.3231, - -44.7543 - ] - } - }, - { - "ibge": 2502409, - "name": "Bonito de Santa Fé", - "capital": 0, - "ibgeState": 25, - "siafi": 1949, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.31341, - -38.5133 - ] - } - }, - { - "ibge": 5203575, - "name": "Bonópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 1056, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.6329, - -49.8106 - ] - } - }, - { - "ibge": 2502508, - "name": "Boqueirão", - "capital": 0, - "ibgeState": 25, - "siafi": 1951, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.487, - -36.1309 - ] - } - }, - { - "ibge": 4302451, - "name": "Boqueirão do Leão", - "capital": 0, - "ibgeState": 43, - "siafi": 8483, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3046, - -52.4284 - ] - } - }, - { - "ibge": 2201945, - "name": "Boqueirão do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 282, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.48181, - -42.1212 - ] - } - }, - { - "ibge": 2800670, - "name": "Boquim", - "capital": 0, - "ibgeState": 28, - "siafi": 3115, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.1397, - -37.6195 - ] - } - }, - { - "ibge": 2904100, - "name": "Boquira", - "capital": 0, - "ibgeState": 29, - "siafi": 3381, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.8205, - -42.7324 - ] - } - }, - { - "ibge": 3507209, - "name": "Borá", - "capital": 0, - "ibgeState": 35, - "siafi": 6243, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2696, - -50.5409 - ] - } - }, - { - "ibge": 3507308, - "name": "Boracéia", - "capital": 0, - "ibgeState": 35, - "siafi": 6245, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1926, - -48.7808 - ] - } - }, - { - "ibge": 1300805, - "name": "Borba", - "capital": 0, - "ibgeState": 13, - "siafi": 217, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -4.39154, - -59.5874 - ] - } - }, - { - "ibge": 2502706, - "name": "Borborema", - "capital": 0, - "ibgeState": 25, - "siafi": 1955, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.80199, - -35.6187 - ] - } - }, - { - "ibge": 3507407, - "name": "Borborema", - "capital": 0, - "ibgeState": 35, - "siafi": 6247, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6214, - -49.0741 - ] - } - }, - { - "ibge": 3108305, - "name": "Borda da Mata", - "capital": 0, - "ibgeState": 31, - "siafi": 4165, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2707, - -46.1653 - ] - } - }, - { - "ibge": 3507456, - "name": "Borebi", - "capital": 0, - "ibgeState": 35, - "siafi": 7247, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5728, - -48.9707 - ] - } - }, - { - "ibge": 4103305, - "name": "Borrazópolis", - "capital": 0, - "ibgeState": 41, - "siafi": 7463, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.9366, - -51.5875 - ] - } - }, - { - "ibge": 4302501, - "name": "Bossoroca", - "capital": 0, - "ibgeState": 43, - "siafi": 8549, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.7291, - -54.9035 - ] - } - }, - { - "ibge": 3108404, - "name": "Botelhos", - "capital": 0, - "ibgeState": 31, - "siafi": 4167, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6412, - -46.391 - ] - } - }, - { - "ibge": 3507506, - "name": "Botucatu", - "capital": 0, - "ibgeState": 35, - "siafi": 6249, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8837, - -48.4437 - ] - } - }, - { - "ibge": 3108503, - "name": "Botumirim", - "capital": 0, - "ibgeState": 31, - "siafi": 4169, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.8657, - -43.0086 - ] - } - }, - { - "ibge": 2904209, - "name": "Botuporã", - "capital": 0, - "ibgeState": 29, - "siafi": 3383, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.3772, - -42.5163 - ] - } - }, - { - "ibge": 4202701, - "name": "Botuverá", - "capital": 0, - "ibgeState": 42, - "siafi": 8051, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2007, - -49.0689 - ] - } - }, - { - "ibge": 4302584, - "name": "Bozano", - "capital": 0, - "ibgeState": 43, - "siafi": 1128, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3659, - -53.772 - ] - } - }, - { - "ibge": 4202800, - "name": "Braço do Norte", - "capital": 0, - "ibgeState": 42, - "siafi": 8053, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.2681, - -49.1701 - ] - } - }, - { - "ibge": 4202859, - "name": "Braço do Trombudo", - "capital": 0, - "ibgeState": 42, - "siafi": 5557, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3586, - -49.8821 - ] - } - }, - { - "ibge": 4302600, - "name": "Braga", - "capital": 0, - "ibgeState": 43, - "siafi": 8551, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6173, - -53.7405 - ] - } - }, - { - "ibge": 1501709, - "name": "Bragança", - "capital": 0, - "ibgeState": 15, - "siafi": 433, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.06126, - -46.7826 - ] - } - }, - { - "ibge": 3507605, - "name": "Bragança Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 6251, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9527, - -46.5419 - ] - } - }, - { - "ibge": 4103354, - "name": "Braganey", - "capital": 0, - "ibgeState": 41, - "siafi": 7983, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.8173, - -53.1218 - ] - } - }, - { - "ibge": 2701100, - "name": "Branquinha", - "capital": 0, - "ibgeState": 27, - "siafi": 2721, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.23342, - -36.0162 - ] - } - }, - { - "ibge": 3108701, - "name": "Brás Pires", - "capital": 0, - "ibgeState": 31, - "siafi": 4173, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8419, - -43.2406 - ] - } - }, - { - "ibge": 1501725, - "name": "Brasil Novo", - "capital": 0, - "ibgeState": 15, - "siafi": 639, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.29792, - -52.534 - ] - } - }, - { - "ibge": 5002308, - "name": "Brasilândia", - "capital": 0, - "ibgeState": 50, - "siafi": 9045, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -21.2544, - -52.0365 - ] - } - }, - { - "ibge": 3108552, - "name": "Brasilândia de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 574, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.9999, - -46.0081 - ] - } - }, - { - "ibge": 4103370, - "name": "Brasilândia do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 5521, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.1978, - -53.5275 - ] - } - }, - { - "ibge": 1703602, - "name": "Brasilândia do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 339, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.38918, - -48.4822 - ] - } - }, - { - "ibge": 1200104, - "name": "Brasiléia", - "capital": 0, - "ibgeState": 12, - "siafi": 105, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -10.995, - -68.7497 - ] - } - }, - { - "ibge": 2201960, - "name": "Brasileira", - "capital": 0, - "ibgeState": 22, - "siafi": 2283, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.1337, - -41.7859 - ] - } - }, - { - "ibge": 5300108, - "name": "Brasília", - "capital": 1, - "ibgeState": 53, - "siafi": 9701, - "ddd": 61, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.7795, - -47.9297 - ] - } - }, - { - "ibge": 3108602, - "name": "Brasília de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4171, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.2104, - -44.4299 - ] - } - }, - { - "ibge": 5101902, - "name": "Brasnorte", - "capital": 0, - "ibgeState": 51, - "siafi": 9873, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.1474, - -57.9833 - ] - } - }, - { - "ibge": 3507704, - "name": "Braúna", - "capital": 0, - "ibgeState": 35, - "siafi": 6255, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.499, - -50.3175 - ] - } - }, - { - "ibge": 3108800, - "name": "Braúnas", - "capital": 0, - "ibgeState": 31, - "siafi": 4175, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.0562, - -42.7099 - ] - } - }, - { - "ibge": 5203609, - "name": "Brazabrantes", - "capital": 0, - "ibgeState": 52, - "siafi": 9271, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.4281, - -49.3863 - ] - } - }, - { - "ibge": 3108909, - "name": "Brazópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 4177, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4743, - -45.6166 - ] - } - }, - { - "ibge": 2602407, - "name": "Brejão", - "capital": 0, - "ibgeState": 26, - "siafi": 2347, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.02915, - -36.566 - ] - } - }, - { - "ibge": 3201159, - "name": "Brejetuba", - "capital": 0, - "ibgeState": 32, - "siafi": 758, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1395, - -41.2954 - ] - } - }, - { - "ibge": 2401800, - "name": "Brejinho", - "capital": 0, - "ibgeState": 24, - "siafi": 1635, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.18566, - -35.3591 - ] - } - }, - { - "ibge": 2602506, - "name": "Brejinho", - "capital": 0, - "ibgeState": 26, - "siafi": 2349, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.34694, - -37.2865 - ] - } - }, - { - "ibge": 1703701, - "name": "Brejinho de Nazaré", - "capital": 0, - "ibgeState": 17, - "siafi": 9273, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.0058, - -48.5683 - ] - } - }, - { - "ibge": 2102101, - "name": "Brejo", - "capital": 0, - "ibgeState": 21, - "siafi": 739, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.67796, - -42.7527 - ] - } - }, - { - "ibge": 3507753, - "name": "Brejo Alegre", - "capital": 0, - "ibgeState": 35, - "siafi": 792, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1651, - -50.1861 - ] - } - }, - { - "ibge": 2602605, - "name": "Brejo da Madre de Deus", - "capital": 0, - "ibgeState": 26, - "siafi": 2351, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.14933, - -36.3741 - ] - } - }, - { - "ibge": 2102150, - "name": "Brejo de Areia", - "capital": 0, - "ibgeState": 21, - "siafi": 132, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.334, - -45.581 - ] - } - }, - { - "ibge": 2502805, - "name": "Brejo do Cruz", - "capital": 0, - "ibgeState": 25, - "siafi": 1957, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.34185, - -37.4943 - ] - } - }, - { - "ibge": 2201988, - "name": "Brejo do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 284, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.20314, - -42.8229 - ] - } - }, - { - "ibge": 2502904, - "name": "Brejo dos Santos", - "capital": 0, - "ibgeState": 25, - "siafi": 1959, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.37065, - -37.8253 - ] - } - }, - { - "ibge": 2800704, - "name": "Brejo Grande", - "capital": 0, - "ibgeState": 28, - "siafi": 3113, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.4297, - -36.4611 - ] - } - }, - { - "ibge": 1501758, - "name": "Brejo Grande do Araguaia", - "capital": 0, - "ibgeState": 15, - "siafi": 577, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.69822, - -48.4103 - ] - } - }, - { - "ibge": 2302503, - "name": "Brejo Santo", - "capital": 0, - "ibgeState": 23, - "siafi": 1349, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.48469, - -38.9799 - ] - } - }, - { - "ibge": 2904308, - "name": "Brejões", - "capital": 0, - "ibgeState": 29, - "siafi": 3385, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.1039, - -39.7988 - ] - } - }, - { - "ibge": 2904407, - "name": "Brejolândia", - "capital": 0, - "ibgeState": 29, - "siafi": 3387, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.4815, - -43.9679 - ] - } - }, - { - "ibge": 1501782, - "name": "Breu Branco", - "capital": 0, - "ibgeState": 15, - "siafi": 625, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.77191, - -49.5735 - ] - } - }, - { - "ibge": 1501808, - "name": "Breves", - "capital": 0, - "ibgeState": 15, - "siafi": 435, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.68036, - -50.4791 - ] - } - }, - { - "ibge": 5203807, - "name": "Britânia", - "capital": 0, - "ibgeState": 52, - "siafi": 9275, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.2428, - -51.1602 - ] - } - }, - { - "ibge": 4302659, - "name": "Brochier", - "capital": 0, - "ibgeState": 43, - "siafi": 8449, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5501, - -51.5945 - ] - } - }, - { - "ibge": 3507803, - "name": "Brodowski", - "capital": 0, - "ibgeState": 35, - "siafi": 6257, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9845, - -47.6572 - ] - } - }, - { - "ibge": 3507902, - "name": "Brotas", - "capital": 0, - "ibgeState": 35, - "siafi": 6259, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2795, - -48.1251 - ] - } - }, - { - "ibge": 2904506, - "name": "Brotas de Macaúbas", - "capital": 0, - "ibgeState": 29, - "siafi": 3389, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.9915, - -42.6326 - ] - } - }, - { - "ibge": 3109006, - "name": "Brumadinho", - "capital": 0, - "ibgeState": 31, - "siafi": 4179, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.151, - -44.2007 - ] - } - }, - { - "ibge": 2904605, - "name": "Brumado", - "capital": 0, - "ibgeState": 29, - "siafi": 3391, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.2021, - -41.6696 - ] - } - }, - { - "ibge": 4202875, - "name": "Brunópolis", - "capital": 0, - "ibgeState": 42, - "siafi": 904, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3058, - -50.8684 - ] - } - }, - { - "ibge": 4202909, - "name": "Brusque", - "capital": 0, - "ibgeState": 42, - "siafi": 8055, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0977, - -48.9107 - ] - } - }, - { - "ibge": 3109105, - "name": "Bueno Brandão", - "capital": 0, - "ibgeState": 31, - "siafi": 4181, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4383, - -46.3491 - ] - } - }, - { - "ibge": 3109204, - "name": "Buenópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 4183, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.8744, - -44.1775 - ] - } - }, - { - "ibge": 2602704, - "name": "Buenos Aires", - "capital": 0, - "ibgeState": 26, - "siafi": 2353, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.72449, - -35.3182 - ] - } - }, - { - "ibge": 2904704, - "name": "Buerarema", - "capital": 0, - "ibgeState": 29, - "siafi": 3393, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.9595, - -39.3028 - ] - } - }, - { - "ibge": 3109253, - "name": "Bugre", - "capital": 0, - "ibgeState": 31, - "siafi": 576, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.4231, - -42.2552 - ] - } - }, - { - "ibge": 2602803, - "name": "Buíque", - "capital": 0, - "ibgeState": 26, - "siafi": 2355, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.61954, - -37.1606 - ] - } - }, - { - "ibge": 1200138, - "name": "Bujari", - "capital": 0, - "ibgeState": 12, - "siafi": 645, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -9.81528, - -67.955 - ] - } - }, - { - "ibge": 1501907, - "name": "Bujaru", - "capital": 0, - "ibgeState": 15, - "siafi": 437, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.51762, - -48.0381 - ] - } - }, - { - "ibge": 3508009, - "name": "Buri", - "capital": 0, - "ibgeState": 35, - "siafi": 6261, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7977, - -48.5958 - ] - } - }, - { - "ibge": 3508108, - "name": "Buritama", - "capital": 0, - "ibgeState": 35, - "siafi": 6263, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0661, - -50.1475 - ] - } - }, - { - "ibge": 2102200, - "name": "Buriti", - "capital": 0, - "ibgeState": 21, - "siafi": 741, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.94169, - -42.9179 - ] - } - }, - { - "ibge": 5203906, - "name": "Buriti Alegre", - "capital": 0, - "ibgeState": 52, - "siafi": 9277, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.1378, - -49.0404 - ] - } - }, - { - "ibge": 2102309, - "name": "Buriti Bravo", - "capital": 0, - "ibgeState": 21, - "siafi": 743, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.83239, - -43.8353 - ] - } - }, - { - "ibge": 5203939, - "name": "Buriti de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 63, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.1792, - -50.4302 - ] - } - }, - { - "ibge": 1703800, - "name": "Buriti do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9715, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.31448, - -48.2271 - ] - } - }, - { - "ibge": 2202000, - "name": "Buriti dos Lopes", - "capital": 0, - "ibgeState": 22, - "siafi": 1039, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.18259, - -41.8695 - ] - } - }, - { - "ibge": 2202026, - "name": "Buriti dos Montes", - "capital": 0, - "ibgeState": 22, - "siafi": 1297, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.30584, - -41.0933 - ] - } - }, - { - "ibge": 2102325, - "name": "Buriticupu", - "capital": 0, - "ibgeState": 21, - "siafi": 134, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.32375, - -46.4409 - ] - } - }, - { - "ibge": 5203962, - "name": "Buritinópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 61, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.4772, - -46.4076 - ] - } - }, - { - "ibge": 2904753, - "name": "Buritirama", - "capital": 0, - "ibgeState": 29, - "siafi": 3079, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7171, - -43.6302 - ] - } - }, - { - "ibge": 2102358, - "name": "Buritirana", - "capital": 0, - "ibgeState": 21, - "siafi": 136, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.59823, - -47.0131 - ] - } - }, - { - "ibge": 1100452, - "name": "Buritis", - "capital": 0, - "ibgeState": 11, - "siafi": 4, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.1943, - -63.8324 - ] - } - }, - { - "ibge": 3109303, - "name": "Buritis", - "capital": 0, - "ibgeState": 31, - "siafi": 4185, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.6218, - -46.4221 - ] - } - }, - { - "ibge": 3508207, - "name": "Buritizal", - "capital": 0, - "ibgeState": 35, - "siafi": 6265, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1911, - -47.7096 - ] - } - }, - { - "ibge": 3109402, - "name": "Buritizeiro", - "capital": 0, - "ibgeState": 31, - "siafi": 4187, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.3656, - -44.9606 - ] - } - }, - { - "ibge": 4302709, - "name": "Butiá", - "capital": 0, - "ibgeState": 43, - "siafi": 8553, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.1179, - -51.9601 - ] - } - }, - { - "ibge": 1300839, - "name": "Caapiranga", - "capital": 0, - "ibgeState": 13, - "siafi": 299, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.31537, - -61.2206 - ] - } - }, - { - "ibge": 2503001, - "name": "Caaporã", - "capital": 0, - "ibgeState": 25, - "siafi": 1961, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.51351, - -34.9055 - ] - } - }, - { - "ibge": 5002407, - "name": "Caarapó", - "capital": 0, - "ibgeState": 50, - "siafi": 9055, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.6368, - -54.8209 - ] - } - }, - { - "ibge": 2904803, - "name": "Caatiba", - "capital": 0, - "ibgeState": 29, - "siafi": 3395, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.9699, - -40.4092 - ] - } - }, - { - "ibge": 2503100, - "name": "Cabaceiras", - "capital": 0, - "ibgeState": 25, - "siafi": 1963, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.48899, - -36.287 - ] - } - }, - { - "ibge": 2904852, - "name": "Cabaceiras do Paraguaçu", - "capital": 0, - "ibgeState": 29, - "siafi": 3267, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.5317, - -39.1902 - ] - } - }, - { - "ibge": 3109451, - "name": "Cabeceira Grande", - "capital": 0, - "ibgeState": 31, - "siafi": 578, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0335, - -47.0862 - ] - } - }, - { - "ibge": 5204003, - "name": "Cabeceiras", - "capital": 0, - "ibgeState": 52, - "siafi": 9279, - "ddd": 61, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.7995, - -46.9265 - ] - } - }, - { - "ibge": 2202059, - "name": "Cabeceiras do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1299, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.4773, - -42.3069 - ] - } - }, - { - "ibge": 2503209, - "name": "Cabedelo", - "capital": 0, - "ibgeState": 25, - "siafi": 1965, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.98731, - -34.8284 - ] - } - }, - { - "ibge": 1100031, - "name": "Cabixi", - "capital": 0, - "ibgeState": 11, - "siafi": 37, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -13.4945, - -60.552 - ] - } - }, - { - "ibge": 2602902, - "name": "Cabo de Santo Agostinho", - "capital": 0, - "ibgeState": 26, - "siafi": 2357, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.28218, - -35.0253 - ] - } - }, - { - "ibge": 3300704, - "name": "Cabo Frio", - "capital": 0, - "ibgeState": 33, - "siafi": 5813, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8894, - -42.0286 - ] - } - }, - { - "ibge": 3109501, - "name": "Cabo Verde", - "capital": 0, - "ibgeState": 31, - "siafi": 4189, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4699, - -46.3919 - ] - } - }, - { - "ibge": 3508306, - "name": "Cabrália Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 6267, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4576, - -49.3393 - ] - } - }, - { - "ibge": 3508405, - "name": "Cabreúva", - "capital": 0, - "ibgeState": 35, - "siafi": 6269, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3053, - -47.1362 - ] - } - }, - { - "ibge": 2603009, - "name": "Cabrobó", - "capital": 0, - "ibgeState": 26, - "siafi": 2359, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.50548, - -39.3094 - ] - } - }, - { - "ibge": 4203006, - "name": "Caçador", - "capital": 0, - "ibgeState": 42, - "siafi": 8057, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7757, - -51.012 - ] - } - }, - { - "ibge": 3508504, - "name": "Caçapava", - "capital": 0, - "ibgeState": 35, - "siafi": 6271, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0992, - -45.7076 - ] - } - }, - { - "ibge": 4302808, - "name": "Caçapava do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8555, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.5144, - -53.4827 - ] - } - }, - { - "ibge": 1100601, - "name": "Cacaulândia", - "capital": 0, - "ibgeState": 11, - "siafi": 677, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.349, - -62.9043 - ] - } - }, - { - "ibge": 4302907, - "name": "Cacequi", - "capital": 0, - "ibgeState": 43, - "siafi": 8557, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.8883, - -54.822 - ] - } - }, - { - "ibge": 5102504, - "name": "Cáceres", - "capital": 0, - "ibgeState": 51, - "siafi": 9047, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -16.0764, - -57.6818 - ] - } - }, - { - "ibge": 2904902, - "name": "Cachoeira", - "capital": 0, - "ibgeState": 29, - "siafi": 3397, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.5994, - -38.9587 - ] - } - }, - { - "ibge": 5204102, - "name": "Cachoeira Alta", - "capital": 0, - "ibgeState": 52, - "siafi": 9281, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7618, - -50.9432 - ] - } - }, - { - "ibge": 3109600, - "name": "Cachoeira da Prata", - "capital": 0, - "ibgeState": 31, - "siafi": 4191, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.521, - -44.4544 - ] - } - }, - { - "ibge": 5204201, - "name": "Cachoeira de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9283, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.6635, - -50.646 - ] - } - }, - { - "ibge": 3109709, - "name": "Cachoeira de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4193, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3511, - -45.7809 - ] - } - }, - { - "ibge": 3102704, - "name": "Cachoeira de Pajeú", - "capital": 0, - "ibgeState": 31, - "siafi": 4053, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.9688, - -41.4948 - ] - } - }, - { - "ibge": 1502004, - "name": "Cachoeira do Arari", - "capital": 0, - "ibgeState": 15, - "siafi": 439, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.01226, - -48.9503 - ] - } - }, - { - "ibge": 1501956, - "name": "Cachoeira do Piriá", - "capital": 0, - "ibgeState": 15, - "siafi": 46, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.75974, - -46.5459 - ] - } - }, - { - "ibge": 4303004, - "name": "Cachoeira do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8559, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.033, - -52.8928 - ] - } - }, - { - "ibge": 2503308, - "name": "Cachoeira dos Índios", - "capital": 0, - "ibgeState": 25, - "siafi": 1967, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.91353, - -38.676 - ] - } - }, - { - "ibge": 5204250, - "name": "Cachoeira Dourada", - "capital": 0, - "ibgeState": 52, - "siafi": 9673, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4859, - -49.4766 - ] - } - }, - { - "ibge": 3109808, - "name": "Cachoeira Dourada", - "capital": 0, - "ibgeState": 31, - "siafi": 4195, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5161, - -49.5039 - ] - } - }, - { - "ibge": 2102374, - "name": "Cachoeira Grande", - "capital": 0, - "ibgeState": 21, - "siafi": 138, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.93074, - -44.0528 - ] - } - }, - { - "ibge": 3508603, - "name": "Cachoeira Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 6273, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6665, - -45.0154 - ] - } - }, - { - "ibge": 3300803, - "name": "Cachoeiras de Macacu", - "capital": 0, - "ibgeState": 33, - "siafi": 5815, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4658, - -42.6523 - ] - } - }, - { - "ibge": 1703826, - "name": "Cachoeirinha", - "capital": 0, - "ibgeState": 17, - "siafi": 171, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.1156, - -47.9234 - ] - } - }, - { - "ibge": 2603108, - "name": "Cachoeirinha", - "capital": 0, - "ibgeState": 26, - "siafi": 2361, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.48668, - -36.2402 - ] - } - }, - { - "ibge": 4303103, - "name": "Cachoeirinha", - "capital": 0, - "ibgeState": 43, - "siafi": 8561, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.9472, - -51.1016 - ] - } - }, - { - "ibge": 3201209, - "name": "Cachoeiro de Itapemirim", - "capital": 0, - "ibgeState": 32, - "siafi": 5623, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8462, - -41.1198 - ] - } - }, - { - "ibge": 2503407, - "name": "Cacimba de Areia", - "capital": 0, - "ibgeState": 25, - "siafi": 1969, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.12128, - -37.1563 - ] - } - }, - { - "ibge": 2503506, - "name": "Cacimba de Dentro", - "capital": 0, - "ibgeState": 25, - "siafi": 1971, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.6386, - -35.7778 - ] - } - }, - { - "ibge": 2503555, - "name": "Cacimbas", - "capital": 0, - "ibgeState": 25, - "siafi": 460, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.20721, - -37.0604 - ] - } - }, - { - "ibge": 2701209, - "name": "Cacimbinhas", - "capital": 0, - "ibgeState": 27, - "siafi": 2723, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.40121, - -36.9911 - ] - } - }, - { - "ibge": 4303202, - "name": "Cacique Doble", - "capital": 0, - "ibgeState": 43, - "siafi": 8563, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.767, - -51.6597 - ] - } - }, - { - "ibge": 1100049, - "name": "Cacoal", - "capital": 0, - "ibgeState": 11, - "siafi": 9, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.4343, - -61.4562 - ] - } - }, - { - "ibge": 3508702, - "name": "Caconde", - "capital": 0, - "ibgeState": 35, - "siafi": 6275, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.528, - -46.6437 - ] - } - }, - { - "ibge": 5204300, - "name": "Caçu", - "capital": 0, - "ibgeState": 52, - "siafi": 9285, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5594, - -51.1328 - ] - } - }, - { - "ibge": 2905008, - "name": "Caculé", - "capital": 0, - "ibgeState": 29, - "siafi": 3399, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.5003, - -42.2229 - ] - } - }, - { - "ibge": 2905107, - "name": "Caém", - "capital": 0, - "ibgeState": 29, - "siafi": 3401, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.0677, - -40.432 - ] - } - }, - { - "ibge": 3109907, - "name": "Caetanópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 4197, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2971, - -44.4189 - ] - } - }, - { - "ibge": 2905156, - "name": "Caetanos", - "capital": 0, - "ibgeState": 29, - "siafi": 3269, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.3347, - -40.9175 - ] - } - }, - { - "ibge": 3110004, - "name": "Caeté", - "capital": 0, - "ibgeState": 31, - "siafi": 4199, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8826, - -43.6704 - ] - } - }, - { - "ibge": 2603207, - "name": "Caetés", - "capital": 0, - "ibgeState": 26, - "siafi": 2363, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.7803, - -36.6268 - ] - } - }, - { - "ibge": 2905206, - "name": "Caetité", - "capital": 0, - "ibgeState": 29, - "siafi": 3403, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.0684, - -42.4861 - ] - } - }, - { - "ibge": 2905305, - "name": "Cafarnaum", - "capital": 0, - "ibgeState": 29, - "siafi": 3405, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.6914, - -41.4688 - ] - } - }, - { - "ibge": 4103404, - "name": "Cafeara", - "capital": 0, - "ibgeState": 41, - "siafi": 7465, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.789, - -51.7142 - ] - } - }, - { - "ibge": 3508801, - "name": "Cafelândia", - "capital": 0, - "ibgeState": 35, - "siafi": 6277, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8031, - -49.6092 - ] - } - }, - { - "ibge": 4103453, - "name": "Cafelândia", - "capital": 0, - "ibgeState": 41, - "siafi": 7985, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.6189, - -53.3207 - ] - } - }, - { - "ibge": 4103479, - "name": "Cafezal do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 5491, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.9005, - -53.5124 - ] - } - }, - { - "ibge": 3508900, - "name": "Caiabu", - "capital": 0, - "ibgeState": 35, - "siafi": 6279, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0127, - -51.2394 - ] - } - }, - { - "ibge": 3110103, - "name": "Caiana", - "capital": 0, - "ibgeState": 31, - "siafi": 4201, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6956, - -41.9292 - ] - } - }, - { - "ibge": 5204409, - "name": "Caiapônia", - "capital": 0, - "ibgeState": 52, - "siafi": 9287, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.9539, - -51.8091 - ] - } - }, - { - "ibge": 4303301, - "name": "Caibaté", - "capital": 0, - "ibgeState": 43, - "siafi": 8565, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.2905, - -54.6454 - ] - } - }, - { - "ibge": 4203105, - "name": "Caibi", - "capital": 0, - "ibgeState": 42, - "siafi": 8059, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0741, - -53.2458 - ] - } - }, - { - "ibge": 4303400, - "name": "Caiçara", - "capital": 0, - "ibgeState": 43, - "siafi": 8567, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2791, - -53.4257 - ] - } - }, - { - "ibge": 2503605, - "name": "Caiçara", - "capital": 0, - "ibgeState": 25, - "siafi": 1973, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.62115, - -35.4581 - ] - } - }, - { - "ibge": 2401859, - "name": "Caiçara do Norte", - "capital": 0, - "ibgeState": 24, - "siafi": 414, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.07091, - -36.0717 - ] - } - }, - { - "ibge": 2401909, - "name": "Caiçara do Rio do Vento", - "capital": 0, - "ibgeState": 24, - "siafi": 1637, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.76541, - -35.9938 - ] - } - }, - { - "ibge": 2402006, - "name": "Caicó", - "capital": 0, - "ibgeState": 24, - "siafi": 1639, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.45441, - -37.1067 - ] - } - }, - { - "ibge": 3509007, - "name": "Caieiras", - "capital": 0, - "ibgeState": 35, - "siafi": 6281, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3607, - -46.7397 - ] - } - }, - { - "ibge": 2905404, - "name": "Cairu", - "capital": 0, - "ibgeState": 29, - "siafi": 3407, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.4904, - -39.0465 - ] - } - }, - { - "ibge": 3509106, - "name": "Caiuá", - "capital": 0, - "ibgeState": 35, - "siafi": 6283, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8322, - -51.9969 - ] - } - }, - { - "ibge": 3509205, - "name": "Cajamar", - "capital": 0, - "ibgeState": 35, - "siafi": 6285, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.355, - -46.8781 - ] - } - }, - { - "ibge": 2102408, - "name": "Cajapió", - "capital": 0, - "ibgeState": 21, - "siafi": 745, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.87326, - -44.6741 - ] - } - }, - { - "ibge": 2102507, - "name": "Cajari", - "capital": 0, - "ibgeState": 21, - "siafi": 747, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.32742, - -45.0145 - ] - } - }, - { - "ibge": 3509254, - "name": "Cajati", - "capital": 0, - "ibgeState": 35, - "siafi": 2967, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.7324, - -48.1223 - ] - } - }, - { - "ibge": 2503704, - "name": "Cajazeiras", - "capital": 0, - "ibgeState": 25, - "siafi": 1975, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.88004, - -38.5577 - ] - } - }, - { - "ibge": 2202075, - "name": "Cajazeiras do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 286, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.79667, - -42.3903 - ] - } - }, - { - "ibge": 2503753, - "name": "Cajazeirinhas", - "capital": 0, - "ibgeState": 25, - "siafi": 462, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.96016, - -37.8009 - ] - } - }, - { - "ibge": 3509304, - "name": "Cajobi", - "capital": 0, - "ibgeState": 35, - "siafi": 6287, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8773, - -48.8063 - ] - } - }, - { - "ibge": 2701308, - "name": "Cajueiro", - "capital": 0, - "ibgeState": 27, - "siafi": 2725, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.3994, - -36.1559 - ] - } - }, - { - "ibge": 2202083, - "name": "Cajueiro da Praia", - "capital": 0, - "ibgeState": 22, - "siafi": 288, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.93111, - -41.3408 - ] - } - }, - { - "ibge": 3110202, - "name": "Cajuri", - "capital": 0, - "ibgeState": 31, - "siafi": 4203, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7903, - -42.7925 - ] - } - }, - { - "ibge": 3509403, - "name": "Cajuru", - "capital": 0, - "ibgeState": 35, - "siafi": 6289, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2749, - -47.303 - ] - } - }, - { - "ibge": 2603306, - "name": "Calçado", - "capital": 0, - "ibgeState": 26, - "siafi": 2365, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.73108, - -36.3366 - ] - } - }, - { - "ibge": 1600204, - "name": "Calçoene", - "capital": 0, - "ibgeState": 16, - "siafi": 603, - "ddd": 96, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - 2.50475, - -50.9512 - ] - } - }, - { - "ibge": 3110301, - "name": "Caldas", - "capital": 0, - "ibgeState": 31, - "siafi": 4205, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9183, - -46.3843 - ] - } - }, - { - "ibge": 2503803, - "name": "Caldas Brandão", - "capital": 0, - "ibgeState": 25, - "siafi": 1977, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.1025, - -35.3272 - ] - } - }, - { - "ibge": 5204508, - "name": "Caldas Novas", - "capital": 0, - "ibgeState": 52, - "siafi": 9289, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.7441, - -48.6246 - ] - } - }, - { - "ibge": 5204557, - "name": "Caldazinha", - "capital": 0, - "ibgeState": 52, - "siafi": 31, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.7117, - -49.0013 - ] - } - }, - { - "ibge": 2905503, - "name": "Caldeirão Grande", - "capital": 0, - "ibgeState": 29, - "siafi": 3409, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.0208, - -40.2956 - ] - } - }, - { - "ibge": 2202091, - "name": "Caldeirão Grande do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 2271, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.3314, - -40.6366 - ] - } - }, - { - "ibge": 4103503, - "name": "Califórnia", - "capital": 0, - "ibgeState": 41, - "siafi": 7467, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6566, - -51.3574 - ] - } - }, - { - "ibge": 4203154, - "name": "Calmon", - "capital": 0, - "ibgeState": 42, - "siafi": 5553, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.5942, - -51.095 - ] - } - }, - { - "ibge": 2603405, - "name": "Calumbi", - "capital": 0, - "ibgeState": 26, - "siafi": 2367, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.93551, - -38.1482 - ] - } - }, - { - "ibge": 2905602, - "name": "Camacan", - "capital": 0, - "ibgeState": 29, - "siafi": 3411, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.4142, - -39.4919 - ] - } - }, - { - "ibge": 2905701, - "name": "Camaçari", - "capital": 0, - "ibgeState": 29, - "siafi": 3413, - "ddd": 71, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.6996, - -38.3263 - ] - } - }, - { - "ibge": 3110400, - "name": "Camacho", - "capital": 0, - "ibgeState": 31, - "siafi": 4207, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6294, - -45.1593 - ] - } - }, - { - "ibge": 2503902, - "name": "Camalaú", - "capital": 0, - "ibgeState": 25, - "siafi": 1979, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.88503, - -36.8242 - ] - } - }, - { - "ibge": 2905800, - "name": "Camamu", - "capital": 0, - "ibgeState": 29, - "siafi": 3415, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.9398, - -39.1071 - ] - } - }, - { - "ibge": 3110509, - "name": "Camanducaia", - "capital": 0, - "ibgeState": 31, - "siafi": 4209, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7515, - -46.1494 - ] - } - }, - { - "ibge": 5002605, - "name": "Camapuã", - "capital": 0, - "ibgeState": 50, - "siafi": 9049, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -19.5347, - -54.0431 - ] - } - }, - { - "ibge": 4303509, - "name": "Camaquã", - "capital": 0, - "ibgeState": 43, - "siafi": 8569, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.8489, - -51.8043 - ] - } - }, - { - "ibge": 2603454, - "name": "Camaragibe", - "capital": 0, - "ibgeState": 26, - "siafi": 2629, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.02351, - -34.9782 - ] - } - }, - { - "ibge": 4303558, - "name": "Camargo", - "capital": 0, - "ibgeState": 43, - "siafi": 8447, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.588, - -52.2003 - ] - } - }, - { - "ibge": 4103602, - "name": "Cambará", - "capital": 0, - "ibgeState": 41, - "siafi": 7469, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0423, - -50.0753 - ] - } - }, - { - "ibge": 4303608, - "name": "Cambará do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8571, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.0474, - -50.1465 - ] - } - }, - { - "ibge": 4103701, - "name": "Cambé", - "capital": 0, - "ibgeState": 41, - "siafi": 7471, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2766, - -51.2798 - ] - } - }, - { - "ibge": 4103800, - "name": "Cambira", - "capital": 0, - "ibgeState": 41, - "siafi": 7473, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.589, - -51.5792 - ] - } - }, - { - "ibge": 4203204, - "name": "Camboriú", - "capital": 0, - "ibgeState": 42, - "siafi": 8061, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0241, - -48.6503 - ] - } - }, - { - "ibge": 3300902, - "name": "Cambuci", - "capital": 0, - "ibgeState": 33, - "siafi": 5817, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5691, - -41.9187 - ] - } - }, - { - "ibge": 3110608, - "name": "Cambuí", - "capital": 0, - "ibgeState": 31, - "siafi": 4211, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6115, - -46.0572 - ] - } - }, - { - "ibge": 3110707, - "name": "Cambuquira", - "capital": 0, - "ibgeState": 31, - "siafi": 4213, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.854, - -45.2896 - ] - } - }, - { - "ibge": 1502103, - "name": "Cametá", - "capital": 0, - "ibgeState": 15, - "siafi": 441, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.24295, - -49.4979 - ] - } - }, - { - "ibge": 2302602, - "name": "Camocim", - "capital": 0, - "ibgeState": 23, - "siafi": 1351, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.9005, - -40.8544 - ] - } - }, - { - "ibge": 2603504, - "name": "Camocim de São Félix", - "capital": 0, - "ibgeState": 26, - "siafi": 2369, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.35865, - -35.7653 - ] - } - }, - { - "ibge": 3110806, - "name": "Campanário", - "capital": 0, - "ibgeState": 31, - "siafi": 4215, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.2427, - -41.7355 - ] - } - }, - { - "ibge": 3110905, - "name": "Campanha", - "capital": 0, - "ibgeState": 31, - "siafi": 4217, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.836, - -45.4004 - ] - } - }, - { - "ibge": 3111002, - "name": "Campestre", - "capital": 0, - "ibgeState": 31, - "siafi": 4219, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7079, - -46.2381 - ] - } - }, - { - "ibge": 2701357, - "name": "Campestre", - "capital": 0, - "ibgeState": 27, - "siafi": 560, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.84723, - -35.5685 - ] - } - }, - { - "ibge": 4303673, - "name": "Campestre da Serra", - "capital": 0, - "ibgeState": 43, - "siafi": 6013, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.7926, - -51.0941 - ] - } - }, - { - "ibge": 5204607, - "name": "Campestre de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9291, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.7624, - -49.695 - ] - } - }, - { - "ibge": 2102556, - "name": "Campestre do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 140, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.17075, - -47.3625 - ] - } - }, - { - "ibge": 4103909, - "name": "Campina da Lagoa", - "capital": 0, - "ibgeState": 41, - "siafi": 7475, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.5893, - -52.7976 - ] - } - }, - { - "ibge": 4303707, - "name": "Campina das Missões", - "capital": 0, - "ibgeState": 43, - "siafi": 8573, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9888, - -54.8416 - ] - } - }, - { - "ibge": 3509452, - "name": "Campina do Monte Alegre", - "capital": 0, - "ibgeState": 35, - "siafi": 2999, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5895, - -48.4758 - ] - } - }, - { - "ibge": 4103958, - "name": "Campina do Simão", - "capital": 0, - "ibgeState": 41, - "siafi": 840, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.0802, - -51.8237 - ] - } - }, - { - "ibge": 2504009, - "name": "Campina Grande", - "capital": 0, - "ibgeState": 25, - "siafi": 1981, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.22196, - -35.8731 - ] - } - }, - { - "ibge": 4104006, - "name": "Campina Grande do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 7477, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.3044, - -49.0551 - ] - } - }, - { - "ibge": 3111101, - "name": "Campina Verde", - "capital": 0, - "ibgeState": 31, - "siafi": 4221, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5382, - -49.4862 - ] - } - }, - { - "ibge": 5204656, - "name": "Campinaçu", - "capital": 0, - "ibgeState": 52, - "siafi": 9687, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.787, - -48.5704 - ] - } - }, - { - "ibge": 5102603, - "name": "Campinápolis", - "capital": 0, - "ibgeState": 51, - "siafi": 9863, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.5162, - -52.893 - ] - } - }, - { - "ibge": 3509502, - "name": "Campinas", - "capital": 0, - "ibgeState": 35, - "siafi": 6291, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9053, - -47.0659 - ] - } - }, - { - "ibge": 2202109, - "name": "Campinas do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1041, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.6593, - -41.8775 - ] - } - }, - { - "ibge": 4303806, - "name": "Campinas do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8575, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7174, - -52.6248 - ] - } - }, - { - "ibge": 5204706, - "name": "Campinorte", - "capital": 0, - "ibgeState": 52, - "siafi": 9293, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.3137, - -49.1511 - ] - } - }, - { - "ibge": 4203303, - "name": "Campo Alegre", - "capital": 0, - "ibgeState": 42, - "siafi": 8063, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.195, - -49.2676 - ] - } - }, - { - "ibge": 2701407, - "name": "Campo Alegre", - "capital": 0, - "ibgeState": 27, - "siafi": 2727, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.78451, - -36.3525 - ] - } - }, - { - "ibge": 5204805, - "name": "Campo Alegre de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9295, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.6363, - -47.7768 - ] - } - }, - { - "ibge": 2905909, - "name": "Campo Alegre de Lourdes", - "capital": 0, - "ibgeState": 29, - "siafi": 3417, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.52221, - -43.0126 - ] - } - }, - { - "ibge": 2202117, - "name": "Campo Alegre do Fidalgo", - "capital": 0, - "ibgeState": 22, - "siafi": 290, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.38236, - -41.8344 - ] - } - }, - { - "ibge": 3111150, - "name": "Campo Azul", - "capital": 0, - "ibgeState": 31, - "siafi": 580, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.5028, - -44.8096 - ] - } - }, - { - "ibge": 3111200, - "name": "Campo Belo", - "capital": 0, - "ibgeState": 31, - "siafi": 4223, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8932, - -45.2699 - ] - } - }, - { - "ibge": 4203402, - "name": "Campo Belo do Sul", - "capital": 0, - "ibgeState": 42, - "siafi": 8065, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.8975, - -50.7595 - ] - } - }, - { - "ibge": 4303905, - "name": "Campo Bom", - "capital": 0, - "ibgeState": 43, - "siafi": 8577, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6747, - -51.0606 - ] - } - }, - { - "ibge": 4104055, - "name": "Campo Bonito", - "capital": 0, - "ibgeState": 41, - "siafi": 8475, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.0294, - -52.9939 - ] - } - }, - { - "ibge": 2801009, - "name": "Campo do Brito", - "capital": 0, - "ibgeState": 28, - "siafi": 3119, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7392, - -37.4954 - ] - } - }, - { - "ibge": 3111309, - "name": "Campo do Meio", - "capital": 0, - "ibgeState": 31, - "siafi": 4225, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1127, - -45.8273 - ] - } - }, - { - "ibge": 4104105, - "name": "Campo do Tenente", - "capital": 0, - "ibgeState": 41, - "siafi": 7479, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.98, - -49.6844 - ] - } - }, - { - "ibge": 4203501, - "name": "Campo Erê", - "capital": 0, - "ibgeState": 42, - "siafi": 8067, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.3931, - -53.0856 - ] - } - }, - { - "ibge": 3111408, - "name": "Campo Florido", - "capital": 0, - "ibgeState": 31, - "siafi": 4227, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7631, - -48.5716 - ] - } - }, - { - "ibge": 2906006, - "name": "Campo Formoso", - "capital": 0, - "ibgeState": 29, - "siafi": 3419, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.5105, - -40.32 - ] - } - }, - { - "ibge": 2701506, - "name": "Campo Grande", - "capital": 0, - "ibgeState": 27, - "siafi": 2729, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.95542, - -36.7926 - ] - } - }, - { - "ibge": 5002704, - "name": "Campo Grande", - "capital": 1, - "ibgeState": 50, - "siafi": 9051, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -20.4486, - -54.6295 - ] - } - }, - { - "ibge": 2202133, - "name": "Campo Grande do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 292, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.12827, - -41.0315 - ] - } - }, - { - "ibge": 4104204, - "name": "Campo Largo", - "capital": 0, - "ibgeState": 41, - "siafi": 7481, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4525, - -49.529 - ] - } - }, - { - "ibge": 2202174, - "name": "Campo Largo do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 294, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.80441, - -42.64 - ] - } - }, - { - "ibge": 5204854, - "name": "Campo Limpo de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 1070, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.2971, - -49.0895 - ] - } - }, - { - "ibge": 3509601, - "name": "Campo Limpo Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 6293, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2078, - -46.7889 - ] - } - }, - { - "ibge": 4104253, - "name": "Campo Magro", - "capital": 0, - "ibgeState": 41, - "siafi": 842, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.3687, - -49.4501 - ] - } - }, - { - "ibge": 2202208, - "name": "Campo Maior", - "capital": 0, - "ibgeState": 22, - "siafi": 1043, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.8217, - -42.1641 - ] - } - }, - { - "ibge": 4104303, - "name": "Campo Mourão", - "capital": 0, - "ibgeState": 41, - "siafi": 7483, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.0463, - -52.378 - ] - } - }, - { - "ibge": 4304002, - "name": "Campo Novo", - "capital": 0, - "ibgeState": 43, - "siafi": 8579, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6792, - -53.8052 - ] - } - }, - { - "ibge": 1100700, - "name": "Campo Novo de Rondônia", - "capital": 0, - "ibgeState": 11, - "siafi": 679, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.5712, - -63.6266 - ] - } - }, - { - "ibge": 5102637, - "name": "Campo Novo do Parecis", - "capital": 0, - "ibgeState": 51, - "siafi": 9777, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -13.6587, - -57.8907 - ] - } - }, - { - "ibge": 2402105, - "name": "Campo Redondo", - "capital": 0, - "ibgeState": 24, - "siafi": 1641, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.23829, - -36.1888 - ] - } - }, - { - "ibge": 5102678, - "name": "Campo Verde", - "capital": 0, - "ibgeState": 51, - "siafi": 9779, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.545, - -55.1626 - ] - } - }, - { - "ibge": 3111507, - "name": "Campos Altos", - "capital": 0, - "ibgeState": 31, - "siafi": 4229, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6914, - -46.1725 - ] - } - }, - { - "ibge": 5204904, - "name": "Campos Belos", - "capital": 0, - "ibgeState": 52, - "siafi": 9297, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.035, - -46.7681 - ] - } - }, - { - "ibge": 4304101, - "name": "Campos Borges", - "capital": 0, - "ibgeState": 43, - "siafi": 8445, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.8871, - -53.0008 - ] - } - }, - { - "ibge": 5102686, - "name": "Campos de Júlio", - "capital": 0, - "ibgeState": 51, - "siafi": 1032, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -13.7242, - -59.2858 - ] - } - }, - { - "ibge": 3509700, - "name": "Campos do Jordão", - "capital": 0, - "ibgeState": 35, - "siafi": 6295, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7296, - -45.5833 - ] - } - }, - { - "ibge": 3301009, - "name": "Campos dos Goytacazes", - "capital": 0, - "ibgeState": 33, - "siafi": 5819, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7622, - -41.3181 - ] - } - }, - { - "ibge": 3111606, - "name": "Campos Gerais", - "capital": 0, - "ibgeState": 31, - "siafi": 4231, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.237, - -45.7569 - ] - } - }, - { - "ibge": 1703842, - "name": "Campos Lindos", - "capital": 0, - "ibgeState": 17, - "siafi": 173, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.98956, - -46.8645 - ] - } - }, - { - "ibge": 4203600, - "name": "Campos Novos", - "capital": 0, - "ibgeState": 42, - "siafi": 8069, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4002, - -51.2276 - ] - } - }, - { - "ibge": 3509809, - "name": "Campos Novos Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 6297, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.602, - -49.9987 - ] - } - }, - { - "ibge": 2302701, - "name": "Campos Sales", - "capital": 0, - "ibgeState": 23, - "siafi": 1353, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.06761, - -40.3687 - ] - } - }, - { - "ibge": 5204953, - "name": "Campos Verdes", - "capital": 0, - "ibgeState": 52, - "siafi": 9781, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.2442, - -49.6528 - ] - } - }, - { - "ibge": 2603603, - "name": "Camutanga", - "capital": 0, - "ibgeState": 26, - "siafi": 2371, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.40545, - -35.2664 - ] - } - }, - { - "ibge": 3111903, - "name": "Cana Verde", - "capital": 0, - "ibgeState": 31, - "siafi": 4237, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0232, - -45.1801 - ] - } - }, - { - "ibge": 3111705, - "name": "Canaã", - "capital": 0, - "ibgeState": 31, - "siafi": 4233, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6869, - -42.6167 - ] - } - }, - { - "ibge": 1502152, - "name": "Canaã dos Carajás", - "capital": 0, - "ibgeState": 15, - "siafi": 48, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.49659, - -49.8776 - ] - } - }, - { - "ibge": 5102694, - "name": "Canabrava do Norte", - "capital": 0, - "ibgeState": 51, - "siafi": 129, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.0556, - -51.8209 - ] - } - }, - { - "ibge": 3509908, - "name": "Cananéia", - "capital": 0, - "ibgeState": 35, - "siafi": 6299, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.0144, - -47.9341 - ] - } - }, - { - "ibge": 2701605, - "name": "Canapi", - "capital": 0, - "ibgeState": 27, - "siafi": 2731, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.11932, - -37.5967 - ] - } - }, - { - "ibge": 2906105, - "name": "Canápolis", - "capital": 0, - "ibgeState": 29, - "siafi": 3421, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.0725, - -44.201 - ] - } - }, - { - "ibge": 3111804, - "name": "Canápolis", - "capital": 0, - "ibgeState": 31, - "siafi": 4235, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7212, - -49.2035 - ] - } - }, - { - "ibge": 2906204, - "name": "Canarana", - "capital": 0, - "ibgeState": 29, - "siafi": 3423, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.6858, - -41.7677 - ] - } - }, - { - "ibge": 5102702, - "name": "Canarana", - "capital": 0, - "ibgeState": 51, - "siafi": 9193, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -13.5515, - -52.2705 - ] - } - }, - { - "ibge": 3509957, - "name": "Canas", - "capital": 0, - "ibgeState": 35, - "siafi": 794, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7003, - -45.0521 - ] - } - }, - { - "ibge": 2202251, - "name": "Canavieira", - "capital": 0, - "ibgeState": 22, - "siafi": 2247, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.68821, - -43.7233 - ] - } - }, - { - "ibge": 2906303, - "name": "Canavieiras", - "capital": 0, - "ibgeState": 29, - "siafi": 3425, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.6722, - -38.9536 - ] - } - }, - { - "ibge": 2906402, - "name": "Candeal", - "capital": 0, - "ibgeState": 29, - "siafi": 3427, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.8049, - -39.1203 - ] - } - }, - { - "ibge": 2906501, - "name": "Candeias", - "capital": 0, - "ibgeState": 29, - "siafi": 3429, - "ddd": 71, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.6716, - -38.5472 - ] - } - }, - { - "ibge": 3112000, - "name": "Candeias", - "capital": 0, - "ibgeState": 31, - "siafi": 4239, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7692, - -45.2765 - ] - } - }, - { - "ibge": 1100809, - "name": "Candeias do Jamari", - "capital": 0, - "ibgeState": 11, - "siafi": 681, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -8.7907, - -63.7005 - ] - } - }, - { - "ibge": 4304200, - "name": "Candelária", - "capital": 0, - "ibgeState": 43, - "siafi": 8581, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6684, - -52.7895 - ] - } - }, - { - "ibge": 2906600, - "name": "Candiba", - "capital": 0, - "ibgeState": 29, - "siafi": 3431, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.4097, - -42.8667 - ] - } - }, - { - "ibge": 4104402, - "name": "Cândido de Abreu", - "capital": 0, - "ibgeState": 41, - "siafi": 7485, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.5649, - -51.3372 - ] - } - }, - { - "ibge": 4304309, - "name": "Cândido Godói", - "capital": 0, - "ibgeState": 43, - "siafi": 8583, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9515, - -54.7517 - ] - } - }, - { - "ibge": 2102606, - "name": "Cândido Mendes", - "capital": 0, - "ibgeState": 21, - "siafi": 749, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.43265, - -45.7161 - ] - } - }, - { - "ibge": 3510005, - "name": "Cândido Mota", - "capital": 0, - "ibgeState": 35, - "siafi": 6301, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7471, - -50.3873 - ] - } - }, - { - "ibge": 3510104, - "name": "Cândido Rodrigues", - "capital": 0, - "ibgeState": 35, - "siafi": 6303, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3275, - -48.6327 - ] - } - }, - { - "ibge": 2906709, - "name": "Cândido Sales", - "capital": 0, - "ibgeState": 29, - "siafi": 3433, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.4993, - -41.2414 - ] - } - }, - { - "ibge": 4304358, - "name": "Candiota", - "capital": 0, - "ibgeState": 43, - "siafi": 6083, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.5516, - -53.6773 - ] - } - }, - { - "ibge": 4104428, - "name": "Candói", - "capital": 0, - "ibgeState": 41, - "siafi": 5499, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.5758, - -52.0409 - ] - } - }, - { - "ibge": 4304408, - "name": "Canela", - "capital": 0, - "ibgeState": 43, - "siafi": 8585, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.356, - -50.8119 - ] - } - }, - { - "ibge": 4203709, - "name": "Canelinha", - "capital": 0, - "ibgeState": 42, - "siafi": 8071, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2616, - -48.7658 - ] - } - }, - { - "ibge": 2402204, - "name": "Canguaretama", - "capital": 0, - "ibgeState": 24, - "siafi": 1643, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.37193, - -35.1281 - ] - } - }, - { - "ibge": 4304507, - "name": "Canguçu", - "capital": 0, - "ibgeState": 43, - "siafi": 8587, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.396, - -52.6783 - ] - } - }, - { - "ibge": 2801108, - "name": "Canhoba", - "capital": 0, - "ibgeState": 28, - "siafi": 3121, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.1365, - -36.9806 - ] - } - }, - { - "ibge": 2603702, - "name": "Canhotinho", - "capital": 0, - "ibgeState": 26, - "siafi": 2373, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.87652, - -36.1979 - ] - } - }, - { - "ibge": 2302800, - "name": "Canindé", - "capital": 0, - "ibgeState": 23, - "siafi": 1355, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.35162, - -39.3155 - ] - } - }, - { - "ibge": 2801207, - "name": "Canindé de São Francisco", - "capital": 0, - "ibgeState": 28, - "siafi": 3123, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.64882, - -37.7923 - ] - } - }, - { - "ibge": 3510153, - "name": "Canitar", - "capital": 0, - "ibgeState": 35, - "siafi": 2947, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.004, - -49.7839 - ] - } - }, - { - "ibge": 4304606, - "name": "Canoas", - "capital": 0, - "ibgeState": 43, - "siafi": 8589, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.9128, - -51.1857 - ] - } - }, - { - "ibge": 4203808, - "name": "Canoinhas", - "capital": 0, - "ibgeState": 42, - "siafi": 8073, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.1766, - -50.395 - ] - } - }, - { - "ibge": 2906808, - "name": "Cansanção", - "capital": 0, - "ibgeState": 29, - "siafi": 3435, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.6647, - -39.4944 - ] - } - }, - { - "ibge": 1400175, - "name": "Cantá", - "capital": 0, - "ibgeState": 14, - "siafi": 28, - "ddd": 95, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - 2.60994, - -60.6058 - ] - } - }, - { - "ibge": 3301108, - "name": "Cantagalo", - "capital": 0, - "ibgeState": 33, - "siafi": 5821, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9797, - -42.3664 - ] - } - }, - { - "ibge": 4104451, - "name": "Cantagalo", - "capital": 0, - "ibgeState": 41, - "siafi": 8451, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.3734, - -52.1198 - ] - } - }, - { - "ibge": 3112059, - "name": "Cantagalo", - "capital": 0, - "ibgeState": 31, - "siafi": 582, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5248, - -42.6223 - ] - } - }, - { - "ibge": 2102705, - "name": "Cantanhede", - "capital": 0, - "ibgeState": 21, - "siafi": 751, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.63757, - -44.383 - ] - } - }, - { - "ibge": 2202307, - "name": "Canto do Buriti", - "capital": 0, - "ibgeState": 22, - "siafi": 1045, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.1111, - -42.9517 - ] - } - }, - { - "ibge": 2906824, - "name": "Canudos", - "capital": 0, - "ibgeState": 29, - "siafi": 3085, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.90014, - -39.1471 - ] - } - }, - { - "ibge": 4304614, - "name": "Canudos do Vale", - "capital": 0, - "ibgeState": 43, - "siafi": 1130, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3271, - -52.2374 - ] - } - }, - { - "ibge": 1300904, - "name": "Canutama", - "capital": 0, - "ibgeState": 13, - "siafi": 219, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -6.52582, - -64.3953 - ] - } - }, - { - "ibge": 1502202, - "name": "Capanema", - "capital": 0, - "ibgeState": 15, - "siafi": 443, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.20529, - -47.1778 - ] - } - }, - { - "ibge": 4104501, - "name": "Capanema", - "capital": 0, - "ibgeState": 41, - "siafi": 7487, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.6691, - -53.8055 - ] - } - }, - { - "ibge": 4203253, - "name": "Capão Alto", - "capital": 0, - "ibgeState": 42, - "siafi": 906, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9389, - -50.5098 - ] - } - }, - { - "ibge": 3510203, - "name": "Capão Bonito", - "capital": 0, - "ibgeState": 35, - "siafi": 6305, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.0113, - -48.3482 - ] - } - }, - { - "ibge": 4304622, - "name": "Capão Bonito do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 1132, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.1254, - -51.3961 - ] - } - }, - { - "ibge": 4304630, - "name": "Capão da Canoa", - "capital": 0, - "ibgeState": 43, - "siafi": 8915, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.7642, - -50.0282 - ] - } - }, - { - "ibge": 4304655, - "name": "Capão do Cipó", - "capital": 0, - "ibgeState": 43, - "siafi": 1134, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.9312, - -54.5558 - ] - } - }, - { - "ibge": 4304663, - "name": "Capão do Leão", - "capital": 0, - "ibgeState": 43, - "siafi": 8973, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.7565, - -52.4889 - ] - } - }, - { - "ibge": 3112109, - "name": "Caparaó", - "capital": 0, - "ibgeState": 31, - "siafi": 4241, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5289, - -41.9061 - ] - } - }, - { - "ibge": 2701704, - "name": "Capela", - "capital": 0, - "ibgeState": 27, - "siafi": 2733, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.41504, - -36.0826 - ] - } - }, - { - "ibge": 2801306, - "name": "Capela", - "capital": 0, - "ibgeState": 28, - "siafi": 3125, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.5069, - -37.0628 - ] - } - }, - { - "ibge": 4304689, - "name": "Capela de Santana", - "capital": 0, - "ibgeState": 43, - "siafi": 8443, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6961, - -51.328 - ] - } - }, - { - "ibge": 3510302, - "name": "Capela do Alto", - "capital": 0, - "ibgeState": 35, - "siafi": 6307, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4685, - -47.7388 - ] - } - }, - { - "ibge": 2906857, - "name": "Capela do Alto Alegre", - "capital": 0, - "ibgeState": 29, - "siafi": 3081, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.6658, - -39.8349 - ] - } - }, - { - "ibge": 3112208, - "name": "Capela Nova", - "capital": 0, - "ibgeState": 31, - "siafi": 4243, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9179, - -43.622 - ] - } - }, - { - "ibge": 3112307, - "name": "Capelinha", - "capital": 0, - "ibgeState": 31, - "siafi": 4245, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.6888, - -42.5147 - ] - } - }, - { - "ibge": 3112406, - "name": "Capetinga", - "capital": 0, - "ibgeState": 31, - "siafi": 4247, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6163, - -47.0571 - ] - } - }, - { - "ibge": 2504033, - "name": "Capim", - "capital": 0, - "ibgeState": 25, - "siafi": 464, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.91624, - -35.1673 - ] - } - }, - { - "ibge": 3112505, - "name": "Capim Branco", - "capital": 0, - "ibgeState": 31, - "siafi": 4249, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5471, - -44.1304 - ] - } - }, - { - "ibge": 2906873, - "name": "Capim Grosso", - "capital": 0, - "ibgeState": 29, - "siafi": 3083, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.3797, - -40.0089 - ] - } - }, - { - "ibge": 3112604, - "name": "Capinópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 4251, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.6862, - -49.5706 - ] - } - }, - { - "ibge": 4203907, - "name": "Capinzal", - "capital": 0, - "ibgeState": 42, - "siafi": 8075, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3473, - -51.6057 - ] - } - }, - { - "ibge": 2102754, - "name": "Capinzal do Norte", - "capital": 0, - "ibgeState": 21, - "siafi": 142, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.7236, - -44.328 - ] - } - }, - { - "ibge": 2302909, - "name": "Capistrano", - "capital": 0, - "ibgeState": 23, - "siafi": 1357, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.45569, - -38.9048 - ] - } - }, - { - "ibge": 4304697, - "name": "Capitão", - "capital": 0, - "ibgeState": 43, - "siafi": 6025, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.2674, - -51.9853 - ] - } - }, - { - "ibge": 3112653, - "name": "Capitão Andrade", - "capital": 0, - "ibgeState": 31, - "siafi": 2651, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.0748, - -41.8614 - ] - } - }, - { - "ibge": 2202406, - "name": "Capitão de Campos", - "capital": 0, - "ibgeState": 22, - "siafi": 1047, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.457, - -41.944 - ] - } - }, - { - "ibge": 3112703, - "name": "Capitão Enéas", - "capital": 0, - "ibgeState": 31, - "siafi": 4253, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.3265, - -43.7084 - ] - } - }, - { - "ibge": 2202455, - "name": "Capitão Gervásio Oliveira", - "capital": 0, - "ibgeState": 22, - "siafi": 296, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.49655, - -41.814 - ] - } - }, - { - "ibge": 4104600, - "name": "Capitão Leônidas Marques", - "capital": 0, - "ibgeState": 41, - "siafi": 7489, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4816, - -53.6112 - ] - } - }, - { - "ibge": 1502301, - "name": "Capitão Poço", - "capital": 0, - "ibgeState": 15, - "siafi": 445, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.74785, - -47.0629 - ] - } - }, - { - "ibge": 3112802, - "name": "Capitólio", - "capital": 0, - "ibgeState": 31, - "siafi": 4255, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6164, - -46.0493 - ] - } - }, - { - "ibge": 3510401, - "name": "Capivari", - "capital": 0, - "ibgeState": 35, - "siafi": 6309, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9951, - -47.5071 - ] - } - }, - { - "ibge": 4203956, - "name": "Capivari de Baixo", - "capital": 0, - "ibgeState": 42, - "siafi": 5545, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.4498, - -48.9631 - ] - } - }, - { - "ibge": 4304671, - "name": "Capivari do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 962, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.1383, - -50.5152 - ] - } - }, - { - "ibge": 1200179, - "name": "Capixaba", - "capital": 0, - "ibgeState": 12, - "siafi": 647, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -10.566, - -67.686 - ] - } - }, - { - "ibge": 2603801, - "name": "Capoeiras", - "capital": 0, - "ibgeState": 26, - "siafi": 2375, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.73423, - -36.6306 - ] - } - }, - { - "ibge": 3112901, - "name": "Caputira", - "capital": 0, - "ibgeState": 31, - "siafi": 4257, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1703, - -42.2683 - ] - } - }, - { - "ibge": 4304713, - "name": "Caraá", - "capital": 0, - "ibgeState": 43, - "siafi": 964, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.7869, - -50.4316 - ] - } - }, - { - "ibge": 1400209, - "name": "Caracaraí", - "capital": 0, - "ibgeState": 14, - "siafi": 303, - "ddd": 95, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - 1.82766, - -61.1304 - ] - } - }, - { - "ibge": 2202505, - "name": "Caracol", - "capital": 0, - "ibgeState": 22, - "siafi": 1049, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.27933, - -43.329 - ] - } - }, - { - "ibge": 5002803, - "name": "Caracol", - "capital": 0, - "ibgeState": 50, - "siafi": 9053, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.011, - -57.0277 - ] - } - }, - { - "ibge": 3510500, - "name": "Caraguatatuba", - "capital": 0, - "ibgeState": 35, - "siafi": 6311, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6125, - -45.4125 - ] - } - }, - { - "ibge": 3113008, - "name": "Caraí", - "capital": 0, - "ibgeState": 31, - "siafi": 4259, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.1862, - -41.7004 - ] - } - }, - { - "ibge": 2906899, - "name": "Caraíbas", - "capital": 0, - "ibgeState": 29, - "siafi": 3271, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.7177, - -41.2603 - ] - } - }, - { - "ibge": 4104659, - "name": "Carambeí", - "capital": 0, - "ibgeState": 41, - "siafi": 844, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.9152, - -50.0986 - ] - } - }, - { - "ibge": 3113107, - "name": "Caranaíba", - "capital": 0, - "ibgeState": 31, - "siafi": 4261, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8707, - -43.7417 - ] - } - }, - { - "ibge": 3113206, - "name": "Carandaí", - "capital": 0, - "ibgeState": 31, - "siafi": 4263, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9566, - -43.811 - ] - } - }, - { - "ibge": 3113305, - "name": "Carangola", - "capital": 0, - "ibgeState": 31, - "siafi": 4265, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7343, - -42.0313 - ] - } - }, - { - "ibge": 3300936, - "name": "Carapebus", - "capital": 0, - "ibgeState": 33, - "siafi": 772, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1821, - -41.663 - ] - } - }, - { - "ibge": 3510609, - "name": "Carapicuíba", - "capital": 0, - "ibgeState": 35, - "siafi": 6313, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5235, - -46.8407 - ] - } - }, - { - "ibge": 3113404, - "name": "Caratinga", - "capital": 0, - "ibgeState": 31, - "siafi": 4267, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7868, - -42.1292 - ] - } - }, - { - "ibge": 1301001, - "name": "Carauari", - "capital": 0, - "ibgeState": 13, - "siafi": 221, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -4.88161, - -66.9086 - ] - } - }, - { - "ibge": 2402303, - "name": "Caraúbas", - "capital": 0, - "ibgeState": 24, - "siafi": 1645, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.78387, - -37.5586 - ] - } - }, - { - "ibge": 2504074, - "name": "Caraúbas", - "capital": 0, - "ibgeState": 25, - "siafi": 466, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.72049, - -36.492 - ] - } - }, - { - "ibge": 2202539, - "name": "Caraúbas do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 298, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.47525, - -41.8425 - ] - } - }, - { - "ibge": 2906907, - "name": "Caravelas", - "capital": 0, - "ibgeState": 29, - "siafi": 3437, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.7268, - -39.2597 - ] - } - }, - { - "ibge": 4304705, - "name": "Carazinho", - "capital": 0, - "ibgeState": 43, - "siafi": 8591, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.2958, - -52.7933 - ] - } - }, - { - "ibge": 3113503, - "name": "Carbonita", - "capital": 0, - "ibgeState": 31, - "siafi": 4269, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.5255, - -43.0137 - ] - } - }, - { - "ibge": 2907004, - "name": "Cardeal da Silva", - "capital": 0, - "ibgeState": 29, - "siafi": 3439, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.9472, - -37.9469 - ] - } - }, - { - "ibge": 3510708, - "name": "Cardoso", - "capital": 0, - "ibgeState": 35, - "siafi": 6315, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.08, - -49.9183 - ] - } - }, - { - "ibge": 3301157, - "name": "Cardoso Moreira", - "capital": 0, - "ibgeState": 33, - "siafi": 2915, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4846, - -41.6165 - ] - } - }, - { - "ibge": 3113602, - "name": "Careaçu", - "capital": 0, - "ibgeState": 31, - "siafi": 4271, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0424, - -45.696 - ] - } - }, - { - "ibge": 1301100, - "name": "Careiro", - "capital": 0, - "ibgeState": 13, - "siafi": 223, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.76803, - -60.369 - ] - } - }, - { - "ibge": 1301159, - "name": "Careiro da Várzea", - "capital": 0, - "ibgeState": 13, - "siafi": 965, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.314, - -59.5557 - ] - } - }, - { - "ibge": 3201308, - "name": "Cariacica", - "capital": 0, - "ibgeState": 32, - "siafi": 5625, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2632, - -40.4165 - ] - } - }, - { - "ibge": 2303006, - "name": "Caridade", - "capital": 0, - "ibgeState": 23, - "siafi": 1359, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.22514, - -39.1912 - ] - } - }, - { - "ibge": 2202554, - "name": "Caridade do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 300, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.73435, - -40.9848 - ] - } - }, - { - "ibge": 2907103, - "name": "Carinhanha", - "capital": 0, - "ibgeState": 29, - "siafi": 3441, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.2985, - -43.7724 - ] - } - }, - { - "ibge": 2801405, - "name": "Carira", - "capital": 0, - "ibgeState": 28, - "siafi": 3127, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.3524, - -37.7002 - ] - } - }, - { - "ibge": 2303105, - "name": "Cariré", - "capital": 0, - "ibgeState": 23, - "siafi": 1361, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.94858, - -40.476 - ] - } - }, - { - "ibge": 1703867, - "name": "Cariri do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 327, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.8881, - -49.1609 - ] - } - }, - { - "ibge": 2303204, - "name": "Caririaçu", - "capital": 0, - "ibgeState": 23, - "siafi": 1363, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.02808, - -39.2828 - ] - } - }, - { - "ibge": 2303303, - "name": "Cariús", - "capital": 0, - "ibgeState": 23, - "siafi": 1365, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.52428, - -39.4916 - ] - } - }, - { - "ibge": 5102793, - "name": "Carlinda", - "capital": 0, - "ibgeState": 51, - "siafi": 1034, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -9.94912, - -55.8417 - ] - } - }, - { - "ibge": 4104709, - "name": "Carlópolis", - "capital": 0, - "ibgeState": 41, - "siafi": 7491, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4269, - -49.7235 - ] - } - }, - { - "ibge": 4304804, - "name": "Carlos Barbosa", - "capital": 0, - "ibgeState": 43, - "siafi": 8593, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.2969, - -51.5028 - ] - } - }, - { - "ibge": 3113701, - "name": "Carlos Chagas", - "capital": 0, - "ibgeState": 31, - "siafi": 4273, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.6973, - -40.7723 - ] - } - }, - { - "ibge": 4304853, - "name": "Carlos Gomes", - "capital": 0, - "ibgeState": 43, - "siafi": 5961, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7167, - -51.9121 - ] - } - }, - { - "ibge": 3113800, - "name": "Carmésia", - "capital": 0, - "ibgeState": 31, - "siafi": 4275, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.0877, - -43.1382 - ] - } - }, - { - "ibge": 3301207, - "name": "Carmo", - "capital": 0, - "ibgeState": 33, - "siafi": 5823, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.931, - -42.6046 - ] - } - }, - { - "ibge": 3113909, - "name": "Carmo da Cachoeira", - "capital": 0, - "ibgeState": 31, - "siafi": 4277, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4633, - -45.2201 - ] - } - }, - { - "ibge": 3114006, - "name": "Carmo da Mata", - "capital": 0, - "ibgeState": 31, - "siafi": 4279, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5575, - -44.8735 - ] - } - }, - { - "ibge": 3114105, - "name": "Carmo de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4281, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1204, - -45.1307 - ] - } - }, - { - "ibge": 3114204, - "name": "Carmo do Cajuru", - "capital": 0, - "ibgeState": 31, - "siafi": 4283, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1912, - -44.7664 - ] - } - }, - { - "ibge": 3114303, - "name": "Carmo do Paranaíba", - "capital": 0, - "ibgeState": 31, - "siafi": 4285, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.991, - -46.3167 - ] - } - }, - { - "ibge": 3114402, - "name": "Carmo do Rio Claro", - "capital": 0, - "ibgeState": 31, - "siafi": 4287, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9736, - -46.1149 - ] - } - }, - { - "ibge": 5205000, - "name": "Carmo do Rio Verde", - "capital": 0, - "ibgeState": 52, - "siafi": 9299, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.3549, - -49.708 - ] - } - }, - { - "ibge": 1703883, - "name": "Carmolândia", - "capital": 0, - "ibgeState": 17, - "siafi": 175, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.03262, - -48.3978 - ] - } - }, - { - "ibge": 2801504, - "name": "Carmópolis", - "capital": 0, - "ibgeState": 28, - "siafi": 3129, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.6449, - -36.9887 - ] - } - }, - { - "ibge": 3114501, - "name": "Carmópolis de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4289, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5396, - -44.6336 - ] - } - }, - { - "ibge": 2603900, - "name": "Carnaíba", - "capital": 0, - "ibgeState": 26, - "siafi": 2377, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.79342, - -37.7946 - ] - } - }, - { - "ibge": 2402402, - "name": "Carnaúba dos Dantas", - "capital": 0, - "ibgeState": 24, - "siafi": 1647, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.55015, - -36.5868 - ] - } - }, - { - "ibge": 2402501, - "name": "Carnaubais", - "capital": 0, - "ibgeState": 24, - "siafi": 1649, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.34181, - -36.8335 - ] - } - }, - { - "ibge": 2303402, - "name": "Carnaubal", - "capital": 0, - "ibgeState": 23, - "siafi": 1367, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.15985, - -40.9413 - ] - } - }, - { - "ibge": 2603926, - "name": "Carnaubeira da Penha", - "capital": 0, - "ibgeState": 26, - "siafi": 2635, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.31799, - -38.7512 - ] - } - }, - { - "ibge": 3114550, - "name": "Carneirinho", - "capital": 0, - "ibgeState": 31, - "siafi": 2685, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6987, - -50.6894 - ] - } - }, - { - "ibge": 2701803, - "name": "Carneiros", - "capital": 0, - "ibgeState": 27, - "siafi": 2735, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.48476, - -37.3773 - ] - } - }, - { - "ibge": 1400233, - "name": "Caroebe", - "capital": 0, - "ibgeState": 14, - "siafi": 30, - "ddd": 95, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - 0.884203, - -59.6959 - ] - } - }, - { - "ibge": 2102804, - "name": "Carolina", - "capital": 0, - "ibgeState": 21, - "siafi": 753, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.33584, - -47.4634 - ] - } - }, - { - "ibge": 2604007, - "name": "Carpina", - "capital": 0, - "ibgeState": 26, - "siafi": 2379, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.84566, - -35.2514 - ] - } - }, - { - "ibge": 3114600, - "name": "Carrancas", - "capital": 0, - "ibgeState": 31, - "siafi": 4291, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4898, - -44.6446 - ] - } - }, - { - "ibge": 2504108, - "name": "Carrapateira", - "capital": 0, - "ibgeState": 25, - "siafi": 1983, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.03414, - -38.3399 - ] - } - }, - { - "ibge": 1703891, - "name": "Carrasco Bonito", - "capital": 0, - "ibgeState": 17, - "siafi": 177, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.31415, - -48.0314 - ] - } - }, - { - "ibge": 2604106, - "name": "Caruaru", - "capital": 0, - "ibgeState": 26, - "siafi": 2381, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.28455, - -35.9699 - ] - } - }, - { - "ibge": 2102903, - "name": "Carutapera", - "capital": 0, - "ibgeState": 21, - "siafi": 755, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.19696, - -46.0085 - ] - } - }, - { - "ibge": 3114709, - "name": "Carvalhópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 4293, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7735, - -45.8421 - ] - } - }, - { - "ibge": 3114808, - "name": "Carvalhos", - "capital": 0, - "ibgeState": 31, - "siafi": 4295, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22, - -44.4632 - ] - } - }, - { - "ibge": 3510807, - "name": "Casa Branca", - "capital": 0, - "ibgeState": 35, - "siafi": 6317, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7708, - -47.0852 - ] - } - }, - { - "ibge": 3114907, - "name": "Casa Grande", - "capital": 0, - "ibgeState": 31, - "siafi": 4297, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7925, - -43.9343 - ] - } - }, - { - "ibge": 2907202, - "name": "Casa Nova", - "capital": 0, - "ibgeState": 29, - "siafi": 3443, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.16408, - -40.974 - ] - } - }, - { - "ibge": 4304903, - "name": "Casca", - "capital": 0, - "ibgeState": 43, - "siafi": 8595, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5605, - -51.9815 - ] - } - }, - { - "ibge": 3115003, - "name": "Cascalho Rico", - "capital": 0, - "ibgeState": 31, - "siafi": 4299, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5772, - -47.8716 - ] - } - }, - { - "ibge": 4104808, - "name": "Cascavel", - "capital": 0, - "ibgeState": 41, - "siafi": 7493, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.9573, - -53.459 - ] - } - }, - { - "ibge": 2303501, - "name": "Cascavel", - "capital": 0, - "ibgeState": 23, - "siafi": 1369, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.12967, - -38.2412 - ] - } - }, - { - "ibge": 1703909, - "name": "Caseara", - "capital": 0, - "ibgeState": 17, - "siafi": 9717, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.27612, - -49.9521 - ] - } - }, - { - "ibge": 4304952, - "name": "Caseiros", - "capital": 0, - "ibgeState": 43, - "siafi": 8441, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.2582, - -51.6861 - ] - } - }, - { - "ibge": 3301306, - "name": "Casimiro de Abreu", - "capital": 0, - "ibgeState": 33, - "siafi": 5825, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4812, - -42.2066 - ] - } - }, - { - "ibge": 2604155, - "name": "Casinhas", - "capital": 0, - "ibgeState": 26, - "siafi": 546, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.74084, - -35.7206 - ] - } - }, - { - "ibge": 2504157, - "name": "Casserengue", - "capital": 0, - "ibgeState": 25, - "siafi": 468, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.77954, - -35.8179 - ] - } - }, - { - "ibge": 3115102, - "name": "Cássia", - "capital": 0, - "ibgeState": 31, - "siafi": 4301, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5831, - -46.9201 - ] - } - }, - { - "ibge": 3510906, - "name": "Cássia dos Coqueiros", - "capital": 0, - "ibgeState": 35, - "siafi": 6319, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2801, - -47.1643 - ] - } - }, - { - "ibge": 5002902, - "name": "Cassilândia", - "capital": 0, - "ibgeState": 50, - "siafi": 9057, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -19.1179, - -51.7313 - ] - } - }, - { - "ibge": 1502400, - "name": "Castanhal", - "capital": 0, - "ibgeState": 15, - "siafi": 447, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.29797, - -47.9167 - ] - } - }, - { - "ibge": 5102850, - "name": "Castanheira", - "capital": 0, - "ibgeState": 51, - "siafi": 9783, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.1251, - -58.6081 - ] - } - }, - { - "ibge": 1100908, - "name": "Castanheiras", - "capital": 0, - "ibgeState": 11, - "siafi": 691, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.4253, - -61.9482 - ] - } - }, - { - "ibge": 5205059, - "name": "Castelândia", - "capital": 0, - "ibgeState": 52, - "siafi": 81, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.0921, - -50.203 - ] - } - }, - { - "ibge": 3201407, - "name": "Castelo", - "capital": 0, - "ibgeState": 32, - "siafi": 5627, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6033, - -41.2031 - ] - } - }, - { - "ibge": 2202604, - "name": "Castelo do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1051, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.31869, - -41.5499 - ] - } - }, - { - "ibge": 3511003, - "name": "Castilho", - "capital": 0, - "ibgeState": 35, - "siafi": 6321, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8689, - -51.4884 - ] - } - }, - { - "ibge": 4104907, - "name": "Castro", - "capital": 0, - "ibgeState": 41, - "siafi": 7495, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.7891, - -50.0108 - ] - } - }, - { - "ibge": 2907301, - "name": "Castro Alves", - "capital": 0, - "ibgeState": 29, - "siafi": 3445, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.7579, - -39.4248 - ] - } - }, - { - "ibge": 3115300, - "name": "Cataguases", - "capital": 0, - "ibgeState": 31, - "siafi": 4305, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3924, - -42.6896 - ] - } - }, - { - "ibge": 5205109, - "name": "Catalão", - "capital": 0, - "ibgeState": 52, - "siafi": 9301, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.1656, - -47.944 - ] - } - }, - { - "ibge": 3511102, - "name": "Catanduva", - "capital": 0, - "ibgeState": 35, - "siafi": 6323, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1314, - -48.977 - ] - } - }, - { - "ibge": 4105003, - "name": "Catanduvas", - "capital": 0, - "ibgeState": 41, - "siafi": 7497, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.2044, - -53.1548 - ] - } - }, - { - "ibge": 4204004, - "name": "Catanduvas", - "capital": 0, - "ibgeState": 42, - "siafi": 8077, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.069, - -51.6602 - ] - } - }, - { - "ibge": 2303600, - "name": "Catarina", - "capital": 0, - "ibgeState": 23, - "siafi": 1371, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.12291, - -39.8736 - ] - } - }, - { - "ibge": 3115359, - "name": "Catas Altas", - "capital": 0, - "ibgeState": 31, - "siafi": 584, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0734, - -43.4061 - ] - } - }, - { - "ibge": 3115409, - "name": "Catas Altas da Noruega", - "capital": 0, - "ibgeState": 31, - "siafi": 4307, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6901, - -43.4939 - ] - } - }, - { - "ibge": 2604205, - "name": "Catende", - "capital": 0, - "ibgeState": 26, - "siafi": 2383, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.67509, - -35.7024 - ] - } - }, - { - "ibge": 3511201, - "name": "Catiguá", - "capital": 0, - "ibgeState": 35, - "siafi": 6325, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0519, - -49.0616 - ] - } - }, - { - "ibge": 2504207, - "name": "Catingueira", - "capital": 0, - "ibgeState": 25, - "siafi": 1985, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.12008, - -37.6064 - ] - } - }, - { - "ibge": 2907400, - "name": "Catolândia", - "capital": 0, - "ibgeState": 29, - "siafi": 3447, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.31, - -44.8648 - ] - } - }, - { - "ibge": 2504306, - "name": "Catolé do Rocha", - "capital": 0, - "ibgeState": 25, - "siafi": 1987, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.34062, - -37.747 - ] - } - }, - { - "ibge": 2907509, - "name": "Catu", - "capital": 0, - "ibgeState": 29, - "siafi": 3449, - "ddd": 71, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.3513, - -38.3791 - ] - } - }, - { - "ibge": 4305009, - "name": "Catuípe", - "capital": 0, - "ibgeState": 43, - "siafi": 8597, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.2554, - -54.0132 - ] - } - }, - { - "ibge": 3115458, - "name": "Catuji", - "capital": 0, - "ibgeState": 31, - "siafi": 2653, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.3018, - -41.5276 - ] - } - }, - { - "ibge": 2303659, - "name": "Catunda", - "capital": 0, - "ibgeState": 23, - "siafi": 983, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.64336, - -40.2 - ] - } - }, - { - "ibge": 5205208, - "name": "Caturaí", - "capital": 0, - "ibgeState": 52, - "siafi": 9303, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.4447, - -49.4936 - ] - } - }, - { - "ibge": 2907558, - "name": "Caturama", - "capital": 0, - "ibgeState": 29, - "siafi": 3273, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.3239, - -42.2904 - ] - } - }, - { - "ibge": 2504355, - "name": "Caturité", - "capital": 0, - "ibgeState": 25, - "siafi": 470, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.41659, - -36.0306 - ] - } - }, - { - "ibge": 3115474, - "name": "Catuti", - "capital": 0, - "ibgeState": 31, - "siafi": 586, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.3616, - -42.9627 - ] - } - }, - { - "ibge": 2303709, - "name": "Caucaia", - "capital": 0, - "ibgeState": 23, - "siafi": 1373, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.72797, - -38.6619 - ] - } - }, - { - "ibge": 5205307, - "name": "Cavalcante", - "capital": 0, - "ibgeState": 52, - "siafi": 9305, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.7976, - -47.4566 - ] - } - }, - { - "ibge": 3115508, - "name": "Caxambu", - "capital": 0, - "ibgeState": 31, - "siafi": 4309, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9753, - -44.9319 - ] - } - }, - { - "ibge": 4204103, - "name": "Caxambu do Sul", - "capital": 0, - "ibgeState": 42, - "siafi": 8079, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1624, - -52.8807 - ] - } - }, - { - "ibge": 2103000, - "name": "Caxias", - "capital": 0, - "ibgeState": 21, - "siafi": 757, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.86505, - -43.3617 - ] - } - }, - { - "ibge": 4305108, - "name": "Caxias do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8599, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.1629, - -51.1792 - ] - } - }, - { - "ibge": 2202653, - "name": "Caxingó", - "capital": 0, - "ibgeState": 22, - "siafi": 302, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.41904, - -41.8955 - ] - } - }, - { - "ibge": 2402600, - "name": "Ceará-Mirim", - "capital": 0, - "ibgeState": 24, - "siafi": 1651, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.64323, - -35.4247 - ] - } - }, - { - "ibge": 2103109, - "name": "Cedral", - "capital": 0, - "ibgeState": 21, - "siafi": 759, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.00027, - -44.5281 - ] - } - }, - { - "ibge": 3511300, - "name": "Cedral", - "capital": 0, - "ibgeState": 35, - "siafi": 6327, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9009, - -49.2664 - ] - } - }, - { - "ibge": 2303808, - "name": "Cedro", - "capital": 0, - "ibgeState": 23, - "siafi": 1375, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.60034, - -39.0609 - ] - } - }, - { - "ibge": 2604304, - "name": "Cedro", - "capital": 0, - "ibgeState": 26, - "siafi": 2385, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.71179, - -39.2367 - ] - } - }, - { - "ibge": 2801603, - "name": "Cedro de São João", - "capital": 0, - "ibgeState": 28, - "siafi": 3131, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.2534, - -36.8856 - ] - } - }, - { - "ibge": 3115607, - "name": "Cedro do Abaeté", - "capital": 0, - "ibgeState": 31, - "siafi": 4311, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.1458, - -45.712 - ] - } - }, - { - "ibge": 4204152, - "name": "Celso Ramos", - "capital": 0, - "ibgeState": 42, - "siafi": 9943, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6327, - -51.335 - ] - } - }, - { - "ibge": 4305116, - "name": "Centenário", - "capital": 0, - "ibgeState": 43, - "siafi": 5963, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7615, - -51.9984 - ] - } - }, - { - "ibge": 1704105, - "name": "Centenário", - "capital": 0, - "ibgeState": 17, - "siafi": 343, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.96103, - -47.3304 - ] - } - }, - { - "ibge": 4105102, - "name": "Centenário do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 7499, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8188, - -51.5973 - ] - } - }, - { - "ibge": 2907608, - "name": "Central", - "capital": 0, - "ibgeState": 29, - "siafi": 3451, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.1376, - -42.1116 - ] - } - }, - { - "ibge": 3115706, - "name": "Central de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4313, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7612, - -41.3143 - ] - } - }, - { - "ibge": 2103125, - "name": "Central do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 144, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.19831, - -44.8254 - ] - } - }, - { - "ibge": 3115805, - "name": "Centralina", - "capital": 0, - "ibgeState": 31, - "siafi": 4315, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5852, - -49.2014 - ] - } - }, - { - "ibge": 2103158, - "name": "Centro do Guilherme", - "capital": 0, - "ibgeState": 21, - "siafi": 146, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.44891, - -46.0345 - ] - } - }, - { - "ibge": 2103174, - "name": "Centro Novo do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 148, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.12696, - -46.1228 - ] - } - }, - { - "ibge": 1100056, - "name": "Cerejeiras", - "capital": 0, - "ibgeState": 11, - "siafi": 27, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -13.187, - -60.8168 - ] - } - }, - { - "ibge": 5205406, - "name": "Ceres", - "capital": 0, - "ibgeState": 52, - "siafi": 9307, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.3061, - -49.6 - ] - } - }, - { - "ibge": 3511409, - "name": "Cerqueira César", - "capital": 0, - "ibgeState": 35, - "siafi": 6329, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.038, - -49.1655 - ] - } - }, - { - "ibge": 3511508, - "name": "Cerquilho", - "capital": 0, - "ibgeState": 35, - "siafi": 6331, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1665, - -47.7459 - ] - } - }, - { - "ibge": 4305124, - "name": "Cerrito", - "capital": 0, - "ibgeState": 43, - "siafi": 966, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.8419, - -52.8004 - ] - } - }, - { - "ibge": 4105201, - "name": "Cerro Azul", - "capital": 0, - "ibgeState": 41, - "siafi": 7501, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.0891, - -52.8691 - ] - } - }, - { - "ibge": 4305132, - "name": "Cerro Branco", - "capital": 0, - "ibgeState": 43, - "siafi": 8439, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.657, - -52.9406 - ] - } - }, - { - "ibge": 2402709, - "name": "Cerro Corá", - "capital": 0, - "ibgeState": 24, - "siafi": 1653, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.03503, - -36.3503 - ] - } - }, - { - "ibge": 4305157, - "name": "Cerro Grande", - "capital": 0, - "ibgeState": 43, - "siafi": 8437, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6106, - -53.1672 - ] - } - }, - { - "ibge": 4305173, - "name": "Cerro Grande do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8435, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.5905, - -51.7418 - ] - } - }, - { - "ibge": 4305207, - "name": "Cerro Largo", - "capital": 0, - "ibgeState": 43, - "siafi": 8601, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.1463, - -54.7428 - ] - } - }, - { - "ibge": 4204178, - "name": "Cerro Negro", - "capital": 0, - "ibgeState": 42, - "siafi": 5567, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7942, - -50.8673 - ] - } - }, - { - "ibge": 3511607, - "name": "Cesário Lange", - "capital": 0, - "ibgeState": 35, - "siafi": 6333, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.226, - -47.9545 - ] - } - }, - { - "ibge": 4105300, - "name": "Céu Azul", - "capital": 0, - "ibgeState": 41, - "siafi": 7957, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.1489, - -53.8415 - ] - } - }, - { - "ibge": 5205455, - "name": "Cezarina", - "capital": 0, - "ibgeState": 52, - "siafi": 9785, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.9718, - -49.7758 - ] - } - }, - { - "ibge": 2604403, - "name": "Chã de Alegria", - "capital": 0, - "ibgeState": 26, - "siafi": 2387, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.00679, - -35.204 - ] - } - }, - { - "ibge": 2604502, - "name": "Chã Grande", - "capital": 0, - "ibgeState": 26, - "siafi": 2389, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.23827, - -35.4571 - ] - } - }, - { - "ibge": 2701902, - "name": "Chã Preta", - "capital": 0, - "ibgeState": 27, - "siafi": 2737, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.2556, - -36.2983 - ] - } - }, - { - "ibge": 3115904, - "name": "Chácara", - "capital": 0, - "ibgeState": 31, - "siafi": 4317, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6733, - -43.215 - ] - } - }, - { - "ibge": 3116001, - "name": "Chalé", - "capital": 0, - "ibgeState": 31, - "siafi": 4319, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0453, - -41.6897 - ] - } - }, - { - "ibge": 4305306, - "name": "Chapada", - "capital": 0, - "ibgeState": 43, - "siafi": 8603, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.0559, - -53.0665 - ] - } - }, - { - "ibge": 1705102, - "name": "Chapada da Natividade", - "capital": 0, - "ibgeState": 17, - "siafi": 80, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.6175, - -47.7486 - ] - } - }, - { - "ibge": 1704600, - "name": "Chapada de Areia", - "capital": 0, - "ibgeState": 17, - "siafi": 78, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.1419, - -49.1403 - ] - } - }, - { - "ibge": 3116100, - "name": "Chapada do Norte", - "capital": 0, - "ibgeState": 31, - "siafi": 4321, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.0881, - -42.5392 - ] - } - }, - { - "ibge": 5103007, - "name": "Chapada dos Guimarães", - "capital": 0, - "ibgeState": 51, - "siafi": 9059, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.4643, - -55.7499 - ] - } - }, - { - "ibge": 3116159, - "name": "Chapada Gaúcha", - "capital": 0, - "ibgeState": 31, - "siafi": 588, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.3014, - -45.6116 - ] - } - }, - { - "ibge": 5205471, - "name": "Chapadão do Céu", - "capital": 0, - "ibgeState": 52, - "siafi": 73, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4073, - -52.549 - ] - } - }, - { - "ibge": 4204194, - "name": "Chapadão do Lageado", - "capital": 0, - "ibgeState": 42, - "siafi": 908, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5905, - -49.5539 - ] - } - }, - { - "ibge": 5002951, - "name": "Chapadão do Sul", - "capital": 0, - "ibgeState": 50, - "siafi": 9787, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -18.788, - -52.6263 - ] - } - }, - { - "ibge": 2103208, - "name": "Chapadinha", - "capital": 0, - "ibgeState": 21, - "siafi": 761, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.73875, - -43.3538 - ] - } - }, - { - "ibge": 4204202, - "name": "Chapecó", - "capital": 0, - "ibgeState": 42, - "siafi": 8081, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1004, - -52.6152 - ] - } - }, - { - "ibge": 3511706, - "name": "Charqueada", - "capital": 0, - "ibgeState": 35, - "siafi": 6335, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5096, - -47.7755 - ] - } - }, - { - "ibge": 4305355, - "name": "Charqueadas", - "capital": 0, - "ibgeState": 43, - "siafi": 8693, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.9625, - -51.6289 - ] - } - }, - { - "ibge": 4305371, - "name": "Charrua", - "capital": 0, - "ibgeState": 43, - "siafi": 5965, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9493, - -52.015 - ] - } - }, - { - "ibge": 2303907, - "name": "Chaval", - "capital": 0, - "ibgeState": 23, - "siafi": 1377, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.03571, - -41.2435 - ] - } - }, - { - "ibge": 3557204, - "name": "Chavantes", - "capital": 0, - "ibgeState": 35, - "siafi": 6337, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0366, - -49.7096 - ] - } - }, - { - "ibge": 1502509, - "name": "Chaves", - "capital": 0, - "ibgeState": 15, - "siafi": 449, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.164154, - -49.987 - ] - } - }, - { - "ibge": 3116209, - "name": "Chiador", - "capital": 0, - "ibgeState": 31, - "siafi": 4323, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9996, - -43.0617 - ] - } - }, - { - "ibge": 4305405, - "name": "Chiapetta", - "capital": 0, - "ibgeState": 43, - "siafi": 8605, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.923, - -53.9419 - ] - } - }, - { - "ibge": 4105409, - "name": "Chopinzinho", - "capital": 0, - "ibgeState": 41, - "siafi": 7503, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.8515, - -52.5173 - ] - } - }, - { - "ibge": 2303931, - "name": "Choró", - "capital": 0, - "ibgeState": 23, - "siafi": 993, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.83906, - -39.1344 - ] - } - }, - { - "ibge": 2303956, - "name": "Chorozinho", - "capital": 0, - "ibgeState": 23, - "siafi": 1239, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.28873, - -38.4986 - ] - } - }, - { - "ibge": 2907707, - "name": "Chorrochó", - "capital": 0, - "ibgeState": 29, - "siafi": 3453, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.9695, - -39.0979 - ] - } - }, - { - "ibge": 4305439, - "name": "Chuí", - "capital": 0, - "ibgeState": 43, - "siafi": 968, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -33.6866, - -53.4594 - ] - } - }, - { - "ibge": 1100924, - "name": "Chupinguaia", - "capital": 0, - "ibgeState": 11, - "siafi": 6, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.5611, - -60.8877 - ] - } - }, - { - "ibge": 4305447, - "name": "Chuvisca", - "capital": 0, - "ibgeState": 43, - "siafi": 970, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.7504, - -51.9737 - ] - } - }, - { - "ibge": 4105508, - "name": "Cianorte", - "capital": 0, - "ibgeState": 41, - "siafi": 7505, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6599, - -52.6054 - ] - } - }, - { - "ibge": 2907806, - "name": "Cícero Dantas", - "capital": 0, - "ibgeState": 29, - "siafi": 3455, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.5897, - -38.3794 - ] - } - }, - { - "ibge": 4105607, - "name": "Cidade Gaúcha", - "capital": 0, - "ibgeState": 41, - "siafi": 7507, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3772, - -52.9436 - ] - } - }, - { - "ibge": 5205497, - "name": "Cidade Ocidental", - "capital": 0, - "ibgeState": 52, - "siafi": 77, - "ddd": 61, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0765, - -47.9252 - ] - } - }, - { - "ibge": 2103257, - "name": "Cidelândia", - "capital": 0, - "ibgeState": 21, - "siafi": 150, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.17465, - -47.7781 - ] - } - }, - { - "ibge": 4305454, - "name": "Cidreira", - "capital": 0, - "ibgeState": 43, - "siafi": 8433, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.1604, - -50.2337 - ] - } - }, - { - "ibge": 2907905, - "name": "Cipó", - "capital": 0, - "ibgeState": 29, - "siafi": 3457, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.1032, - -38.5179 - ] - } - }, - { - "ibge": 3116308, - "name": "Cipotânea", - "capital": 0, - "ibgeState": 31, - "siafi": 4325, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9026, - -43.3629 - ] - } - }, - { - "ibge": 4305504, - "name": "Ciríaco", - "capital": 0, - "ibgeState": 43, - "siafi": 8607, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3419, - -51.8741 - ] - } - }, - { - "ibge": 3116407, - "name": "Claraval", - "capital": 0, - "ibgeState": 31, - "siafi": 4327, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.397, - -47.2768 - ] - } - }, - { - "ibge": 3116506, - "name": "Claro dos Poções", - "capital": 0, - "ibgeState": 31, - "siafi": 4329, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.082, - -44.2061 - ] - } - }, - { - "ibge": 5103056, - "name": "Cláudia", - "capital": 0, - "ibgeState": 51, - "siafi": 9789, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.5075, - -54.8835 - ] - } - }, - { - "ibge": 3116605, - "name": "Cláudio", - "capital": 0, - "ibgeState": 31, - "siafi": 4331, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4437, - -44.7673 - ] - } - }, - { - "ibge": 3511904, - "name": "Clementina", - "capital": 0, - "ibgeState": 35, - "siafi": 6339, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5604, - -50.4525 - ] - } - }, - { - "ibge": 4105706, - "name": "Clevelândia", - "capital": 0, - "ibgeState": 41, - "siafi": 7509, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.4043, - -52.3508 - ] - } - }, - { - "ibge": 2908002, - "name": "Coaraci", - "capital": 0, - "ibgeState": 29, - "siafi": 3459, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.637, - -39.5556 - ] - } - }, - { - "ibge": 1301209, - "name": "Coari", - "capital": 0, - "ibgeState": 13, - "siafi": 225, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -4.09412, - -63.1441 - ] - } - }, - { - "ibge": 2202703, - "name": "Cocal", - "capital": 0, - "ibgeState": 22, - "siafi": 1053, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.47279, - -41.5546 - ] - } - }, - { - "ibge": 2202711, - "name": "Cocal de Telha", - "capital": 0, - "ibgeState": 22, - "siafi": 304, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.5571, - -41.9587 - ] - } - }, - { - "ibge": 4204251, - "name": "Cocal do Sul", - "capital": 0, - "ibgeState": 42, - "siafi": 5543, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5986, - -49.3335 - ] - } - }, - { - "ibge": 2202729, - "name": "Cocal dos Alves", - "capital": 0, - "ibgeState": 22, - "siafi": 306, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.62047, - -41.4402 - ] - } - }, - { - "ibge": 5103106, - "name": "Cocalinho", - "capital": 0, - "ibgeState": 51, - "siafi": 9865, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.3903, - -51.0001 - ] - } - }, - { - "ibge": 5205513, - "name": "Cocalzinho de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 55, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.7914, - -48.7747 - ] - } - }, - { - "ibge": 2908101, - "name": "Cocos", - "capital": 0, - "ibgeState": 29, - "siafi": 3461, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.1814, - -44.5352 - ] - } - }, - { - "ibge": 1301308, - "name": "Codajás", - "capital": 0, - "ibgeState": 13, - "siafi": 227, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.83053, - -62.0658 - ] - } - }, - { - "ibge": 2103307, - "name": "Codó", - "capital": 0, - "ibgeState": 21, - "siafi": 763, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.45562, - -43.8924 - ] - } - }, - { - "ibge": 2103406, - "name": "Coelho Neto", - "capital": 0, - "ibgeState": 21, - "siafi": 765, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.25245, - -43.0108 - ] - } - }, - { - "ibge": 3116704, - "name": "Coimbra", - "capital": 0, - "ibgeState": 31, - "siafi": 4333, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8535, - -42.8008 - ] - } - }, - { - "ibge": 2702009, - "name": "Coité do Nóia", - "capital": 0, - "ibgeState": 27, - "siafi": 2739, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.63348, - -36.5845 - ] - } - }, - { - "ibge": 2202737, - "name": "Coivaras", - "capital": 0, - "ibgeState": 22, - "siafi": 995, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.09224, - -42.208 - ] - } - }, - { - "ibge": 1502608, - "name": "Colares", - "capital": 0, - "ibgeState": 15, - "siafi": 451, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.936423, - -48.2803 - ] - } - }, - { - "ibge": 3201506, - "name": "Colatina", - "capital": 0, - "ibgeState": 32, - "siafi": 5629, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5493, - -40.6269 - ] - } - }, - { - "ibge": 5103205, - "name": "Colíder", - "capital": 0, - "ibgeState": 51, - "siafi": 8979, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.8135, - -55.461 - ] - } - }, - { - "ibge": 3512001, - "name": "Colina", - "capital": 0, - "ibgeState": 35, - "siafi": 6341, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7114, - -48.5387 - ] - } - }, - { - "ibge": 4305587, - "name": "Colinas", - "capital": 0, - "ibgeState": 43, - "siafi": 6029, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3948, - -51.8556 - ] - } - }, - { - "ibge": 2103505, - "name": "Colinas", - "capital": 0, - "ibgeState": 21, - "siafi": 767, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.03199, - -44.2543 - ] - } - }, - { - "ibge": 5205521, - "name": "Colinas do Sul", - "capital": 0, - "ibgeState": 52, - "siafi": 9791, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.1528, - -48.076 - ] - } - }, - { - "ibge": 1705508, - "name": "Colinas do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9311, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.05764, - -48.4757 - ] - } - }, - { - "ibge": 1716703, - "name": "Colméia", - "capital": 0, - "ibgeState": 17, - "siafi": 9529, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.72463, - -48.7638 - ] - } - }, - { - "ibge": 5103254, - "name": "Colniza", - "capital": 0, - "ibgeState": 51, - "siafi": 1080, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -9.46121, - -59.2252 - ] - } - }, - { - "ibge": 3512100, - "name": "Colômbia", - "capital": 0, - "ibgeState": 35, - "siafi": 6343, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1768, - -48.6865 - ] - } - }, - { - "ibge": 4105805, - "name": "Colombo", - "capital": 0, - "ibgeState": 41, - "siafi": 7513, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.2925, - -49.2262 - ] - } - }, - { - "ibge": 2202752, - "name": "Colônia do Gurguéia", - "capital": 0, - "ibgeState": 22, - "siafi": 2249, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.1837, - -43.794 - ] - } - }, - { - "ibge": 2202778, - "name": "Colônia do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 2253, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.22651, - -42.1756 - ] - } - }, - { - "ibge": 2702108, - "name": "Colônia Leopoldina", - "capital": 0, - "ibgeState": 27, - "siafi": 2741, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.91806, - -35.7214 - ] - } - }, - { - "ibge": 4305603, - "name": "Colorado", - "capital": 0, - "ibgeState": 43, - "siafi": 8609, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5258, - -52.9928 - ] - } - }, - { - "ibge": 4105904, - "name": "Colorado", - "capital": 0, - "ibgeState": 41, - "siafi": 7515, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8374, - -51.9743 - ] - } - }, - { - "ibge": 1100064, - "name": "Colorado do Oeste", - "capital": 0, - "ibgeState": 11, - "siafi": 23, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -13.1174, - -60.5454 - ] - } - }, - { - "ibge": 3116803, - "name": "Coluna", - "capital": 0, - "ibgeState": 31, - "siafi": 4335, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.2311, - -42.8352 - ] - } - }, - { - "ibge": 1705557, - "name": "Combinado", - "capital": 0, - "ibgeState": 17, - "siafi": 9697, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.7917, - -46.5388 - ] - } - }, - { - "ibge": 3116902, - "name": "Comendador Gomes", - "capital": 0, - "ibgeState": 31, - "siafi": 4337, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6973, - -49.0789 - ] - } - }, - { - "ibge": 3300951, - "name": "Comendador Levy Gasparian", - "capital": 0, - "ibgeState": 33, - "siafi": 2927, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0404, - -43.214 - ] - } - }, - { - "ibge": 3117009, - "name": "Comercinho", - "capital": 0, - "ibgeState": 31, - "siafi": 4339, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.2963, - -41.7945 - ] - } - }, - { - "ibge": 5103304, - "name": "Comodoro", - "capital": 0, - "ibgeState": 51, - "siafi": 9883, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -13.6614, - -59.7848 - ] - } - }, - { - "ibge": 2504405, - "name": "Conceição", - "capital": 0, - "ibgeState": 25, - "siafi": 1989, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.55106, - -38.5014 - ] - } - }, - { - "ibge": 3117108, - "name": "Conceição da Aparecida", - "capital": 0, - "ibgeState": 31, - "siafi": 4341, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.096, - -46.2049 - ] - } - }, - { - "ibge": 3201605, - "name": "Conceição da Barra", - "capital": 0, - "ibgeState": 32, - "siafi": 5631, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5883, - -39.7362 - ] - } - }, - { - "ibge": 3115201, - "name": "Conceição da Barra de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4303, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1316, - -44.4729 - ] - } - }, - { - "ibge": 2908200, - "name": "Conceição da Feira", - "capital": 0, - "ibgeState": 29, - "siafi": 3463, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.5078, - -38.9978 - ] - } - }, - { - "ibge": 3117306, - "name": "Conceição das Alagoas", - "capital": 0, - "ibgeState": 31, - "siafi": 4345, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9172, - -48.3839 - ] - } - }, - { - "ibge": 3117207, - "name": "Conceição das Pedras", - "capital": 0, - "ibgeState": 31, - "siafi": 4343, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1576, - -45.4562 - ] - } - }, - { - "ibge": 3117405, - "name": "Conceição de Ipanema", - "capital": 0, - "ibgeState": 31, - "siafi": 4347, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9326, - -41.6908 - ] - } - }, - { - "ibge": 3301405, - "name": "Conceição de Macabu", - "capital": 0, - "ibgeState": 33, - "siafi": 5827, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0834, - -41.8719 - ] - } - }, - { - "ibge": 2908309, - "name": "Conceição do Almeida", - "capital": 0, - "ibgeState": 29, - "siafi": 3465, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.7836, - -39.1715 - ] - } - }, - { - "ibge": 1502707, - "name": "Conceição do Araguaia", - "capital": 0, - "ibgeState": 15, - "siafi": 453, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.26136, - -49.2689 - ] - } - }, - { - "ibge": 2202802, - "name": "Conceição do Canindé", - "capital": 0, - "ibgeState": 22, - "siafi": 1055, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.87638, - -41.5942 - ] - } - }, - { - "ibge": 3201704, - "name": "Conceição do Castelo", - "capital": 0, - "ibgeState": 32, - "siafi": 5633, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3639, - -41.2417 - ] - } - }, - { - "ibge": 2908408, - "name": "Conceição do Coité", - "capital": 0, - "ibgeState": 29, - "siafi": 3467, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.56, - -39.2808 - ] - } - }, - { - "ibge": 2908507, - "name": "Conceição do Jacuípe", - "capital": 0, - "ibgeState": 29, - "siafi": 3469, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.3268, - -38.7684 - ] - } - }, - { - "ibge": 2103554, - "name": "Conceição do Lago-Açu", - "capital": 0, - "ibgeState": 21, - "siafi": 152, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.85142, - -44.8895 - ] - } - }, - { - "ibge": 3117504, - "name": "Conceição do Mato Dentro", - "capital": 0, - "ibgeState": 31, - "siafi": 4349, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.0344, - -43.4221 - ] - } - }, - { - "ibge": 3117603, - "name": "Conceição do Pará", - "capital": 0, - "ibgeState": 31, - "siafi": 4351, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7456, - -44.8945 - ] - } - }, - { - "ibge": 3117702, - "name": "Conceição do Rio Verde", - "capital": 0, - "ibgeState": 31, - "siafi": 4353, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8778, - -45.087 - ] - } - }, - { - "ibge": 1705607, - "name": "Conceição do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9313, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.2209, - -47.2951 - ] - } - }, - { - "ibge": 3117801, - "name": "Conceição dos Ouros", - "capital": 0, - "ibgeState": 31, - "siafi": 4355, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4078, - -45.7996 - ] - } - }, - { - "ibge": 3512209, - "name": "Conchal", - "capital": 0, - "ibgeState": 35, - "siafi": 6345, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3375, - -47.1729 - ] - } - }, - { - "ibge": 3512308, - "name": "Conchas", - "capital": 0, - "ibgeState": 35, - "siafi": 6347, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0154, - -48.0134 - ] - } - }, - { - "ibge": 4204301, - "name": "Concórdia", - "capital": 0, - "ibgeState": 42, - "siafi": 8083, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2335, - -52.026 - ] - } - }, - { - "ibge": 1502756, - "name": "Concórdia do Pará", - "capital": 0, - "ibgeState": 15, - "siafi": 579, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.99238, - -47.9422 - ] - } - }, - { - "ibge": 2504504, - "name": "Condado", - "capital": 0, - "ibgeState": 25, - "siafi": 1991, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.89831, - -37.606 - ] - } - }, - { - "ibge": 2604601, - "name": "Condado", - "capital": 0, - "ibgeState": 26, - "siafi": 2391, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.58787, - -35.0999 - ] - } - }, - { - "ibge": 2504603, - "name": "Conde", - "capital": 0, - "ibgeState": 25, - "siafi": 1993, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.25746, - -34.8999 - ] - } - }, - { - "ibge": 2908606, - "name": "Conde", - "capital": 0, - "ibgeState": 29, - "siafi": 3471, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.8179, - -37.6131 - ] - } - }, - { - "ibge": 2908705, - "name": "Condeúba", - "capital": 0, - "ibgeState": 29, - "siafi": 3473, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.9022, - -41.9718 - ] - } - }, - { - "ibge": 4305702, - "name": "Condor", - "capital": 0, - "ibgeState": 43, - "siafi": 8611, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.2075, - -53.4905 - ] - } - }, - { - "ibge": 3117836, - "name": "Cônego Marinho", - "capital": 0, - "ibgeState": 31, - "siafi": 590, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.2892, - -44.4181 - ] - } - }, - { - "ibge": 3117876, - "name": "Confins", - "capital": 0, - "ibgeState": 31, - "siafi": 592, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6282, - -43.9931 - ] - } - }, - { - "ibge": 5103353, - "name": "Confresa", - "capital": 0, - "ibgeState": 51, - "siafi": 131, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.6437, - -51.5699 - ] - } - }, - { - "ibge": 2504702, - "name": "Congo", - "capital": 0, - "ibgeState": 25, - "siafi": 1995, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.79078, - -36.6581 - ] - } - }, - { - "ibge": 3117900, - "name": "Congonhal", - "capital": 0, - "ibgeState": 31, - "siafi": 4357, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1488, - -46.043 - ] - } - }, - { - "ibge": 3118007, - "name": "Congonhas", - "capital": 0, - "ibgeState": 31, - "siafi": 4359, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4958, - -43.851 - ] - } - }, - { - "ibge": 3118106, - "name": "Congonhas do Norte", - "capital": 0, - "ibgeState": 31, - "siafi": 4361, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.8021, - -43.6767 - ] - } - }, - { - "ibge": 4106001, - "name": "Congonhinhas", - "capital": 0, - "ibgeState": 41, - "siafi": 7517, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5493, - -50.5569 - ] - } - }, - { - "ibge": 3118205, - "name": "Conquista", - "capital": 0, - "ibgeState": 31, - "siafi": 4363, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9312, - -47.5492 - ] - } - }, - { - "ibge": 5103361, - "name": "Conquista D'Oeste", - "capital": 0, - "ibgeState": 51, - "siafi": 1082, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.5381, - -59.5444 - ] - } - }, - { - "ibge": 3118304, - "name": "Conselheiro Lafaiete", - "capital": 0, - "ibgeState": 31, - "siafi": 4365, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6634, - -43.7846 - ] - } - }, - { - "ibge": 4106100, - "name": "Conselheiro Mairinck", - "capital": 0, - "ibgeState": 41, - "siafi": 7519, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.623, - -50.1707 - ] - } - }, - { - "ibge": 3118403, - "name": "Conselheiro Pena", - "capital": 0, - "ibgeState": 31, - "siafi": 4367, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.1789, - -41.4736 - ] - } - }, - { - "ibge": 3118502, - "name": "Consolação", - "capital": 0, - "ibgeState": 31, - "siafi": 4369, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5493, - -45.9255 - ] - } - }, - { - "ibge": 4305801, - "name": "Constantina", - "capital": 0, - "ibgeState": 43, - "siafi": 8613, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.732, - -52.9938 - ] - } - }, - { - "ibge": 3118601, - "name": "Contagem", - "capital": 0, - "ibgeState": 31, - "siafi": 4371, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9321, - -44.0539 - ] - } - }, - { - "ibge": 4106209, - "name": "Contenda", - "capital": 0, - "ibgeState": 41, - "siafi": 7521, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.6788, - -49.535 - ] - } - }, - { - "ibge": 2908804, - "name": "Contendas do Sincorá", - "capital": 0, - "ibgeState": 29, - "siafi": 3475, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.7537, - -41.048 - ] - } - }, - { - "ibge": 3118700, - "name": "Coqueiral", - "capital": 0, - "ibgeState": 31, - "siafi": 4373, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1858, - -45.4366 - ] - } - }, - { - "ibge": 4305835, - "name": "Coqueiro Baixo", - "capital": 0, - "ibgeState": 43, - "siafi": 1136, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.1802, - -52.0942 - ] - } - }, - { - "ibge": 2702207, - "name": "Coqueiro Seco", - "capital": 0, - "ibgeState": 27, - "siafi": 2743, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.63715, - -35.7994 - ] - } - }, - { - "ibge": 4305850, - "name": "Coqueiros do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 5945, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.1194, - -52.7842 - ] - } - }, - { - "ibge": 3118809, - "name": "Coração de Jesus", - "capital": 0, - "ibgeState": 31, - "siafi": 4375, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.6841, - -44.3635 - ] - } - }, - { - "ibge": 2908903, - "name": "Coração de Maria", - "capital": 0, - "ibgeState": 29, - "siafi": 3477, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.2333, - -38.7487 - ] - } - }, - { - "ibge": 4106308, - "name": "Corbélia", - "capital": 0, - "ibgeState": 41, - "siafi": 7523, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.7971, - -53.3006 - ] - } - }, - { - "ibge": 3301504, - "name": "Cordeiro", - "capital": 0, - "ibgeState": 33, - "siafi": 5829, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0267, - -42.3648 - ] - } - }, - { - "ibge": 3512407, - "name": "Cordeirópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6349, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4778, - -47.4519 - ] - } - }, - { - "ibge": 2909000, - "name": "Cordeiros", - "capital": 0, - "ibgeState": 29, - "siafi": 3479, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.0356, - -41.9308 - ] - } - }, - { - "ibge": 4204350, - "name": "Cordilheira Alta", - "capital": 0, - "ibgeState": 42, - "siafi": 5579, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9844, - -52.6056 - ] - } - }, - { - "ibge": 3118908, - "name": "Cordisburgo", - "capital": 0, - "ibgeState": 31, - "siafi": 4377, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.1224, - -44.3224 - ] - } - }, - { - "ibge": 3119005, - "name": "Cordislândia", - "capital": 0, - "ibgeState": 31, - "siafi": 4379, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7891, - -45.6999 - ] - } - }, - { - "ibge": 2304004, - "name": "Coreaú", - "capital": 0, - "ibgeState": 23, - "siafi": 1381, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.5415, - -40.6587 - ] - } - }, - { - "ibge": 2504801, - "name": "Coremas", - "capital": 0, - "ibgeState": 25, - "siafi": 1997, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.00712, - -37.9346 - ] - } - }, - { - "ibge": 5003108, - "name": "Corguinho", - "capital": 0, - "ibgeState": 50, - "siafi": 9061, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -19.8243, - -54.8281 - ] - } - }, - { - "ibge": 2909109, - "name": "Coribe", - "capital": 0, - "ibgeState": 29, - "siafi": 3481, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.8232, - -44.4586 - ] - } - }, - { - "ibge": 3119104, - "name": "Corinto", - "capital": 0, - "ibgeState": 31, - "siafi": 4381, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.369, - -44.4542 - ] - } - }, - { - "ibge": 4106407, - "name": "Cornélio Procópio", - "capital": 0, - "ibgeState": 41, - "siafi": 7525, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1829, - -50.6498 - ] - } - }, - { - "ibge": 3119203, - "name": "Coroaci", - "capital": 0, - "ibgeState": 31, - "siafi": 4383, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.6156, - -42.2791 - ] - } - }, - { - "ibge": 3512506, - "name": "Coroados", - "capital": 0, - "ibgeState": 35, - "siafi": 6351, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3521, - -50.2859 - ] - } - }, - { - "ibge": 2103604, - "name": "Coroatá", - "capital": 0, - "ibgeState": 21, - "siafi": 769, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.13442, - -44.1244 - ] - } - }, - { - "ibge": 3119302, - "name": "Coromandel", - "capital": 0, - "ibgeState": 31, - "siafi": 4385, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4734, - -47.1933 - ] - } - }, - { - "ibge": 4305871, - "name": "Coronel Barros", - "capital": 0, - "ibgeState": 43, - "siafi": 6055, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3921, - -54.0686 - ] - } - }, - { - "ibge": 4305900, - "name": "Coronel Bicaco", - "capital": 0, - "ibgeState": 43, - "siafi": 8615, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7197, - -53.7022 - ] - } - }, - { - "ibge": 4106456, - "name": "Coronel Domingos Soares", - "capital": 0, - "ibgeState": 41, - "siafi": 846, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.2277, - -52.0356 - ] - } - }, - { - "ibge": 2402808, - "name": "Coronel Ezequiel", - "capital": 0, - "ibgeState": 24, - "siafi": 1655, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.3748, - -36.2223 - ] - } - }, - { - "ibge": 3119401, - "name": "Coronel Fabriciano", - "capital": 0, - "ibgeState": 31, - "siafi": 4387, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5179, - -42.6276 - ] - } - }, - { - "ibge": 4204400, - "name": "Coronel Freitas", - "capital": 0, - "ibgeState": 42, - "siafi": 8085, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9057, - -52.7011 - ] - } - }, - { - "ibge": 2402907, - "name": "Coronel João Pessoa", - "capital": 0, - "ibgeState": 24, - "siafi": 1657, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.24974, - -38.4441 - ] - } - }, - { - "ibge": 2909208, - "name": "Coronel João Sá", - "capital": 0, - "ibgeState": 29, - "siafi": 3483, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.2847, - -37.9198 - ] - } - }, - { - "ibge": 2202851, - "name": "Coronel José Dias", - "capital": 0, - "ibgeState": 22, - "siafi": 2255, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.81397, - -42.5232 - ] - } - }, - { - "ibge": 3512605, - "name": "Coronel Macedo", - "capital": 0, - "ibgeState": 35, - "siafi": 6353, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6261, - -49.31 - ] - } - }, - { - "ibge": 4204459, - "name": "Coronel Martins", - "capital": 0, - "ibgeState": 42, - "siafi": 5735, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.511, - -52.6694 - ] - } - }, - { - "ibge": 3119500, - "name": "Coronel Murta", - "capital": 0, - "ibgeState": 31, - "siafi": 4389, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.6148, - -42.184 - ] - } - }, - { - "ibge": 3119609, - "name": "Coronel Pacheco", - "capital": 0, - "ibgeState": 31, - "siafi": 4391, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5898, - -43.256 - ] - } - }, - { - "ibge": 4305934, - "name": "Coronel Pilar", - "capital": 0, - "ibgeState": 43, - "siafi": 1138, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.2695, - -51.6847 - ] - } - }, - { - "ibge": 5003157, - "name": "Coronel Sapucaia", - "capital": 0, - "ibgeState": 50, - "siafi": 9997, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -23.2724, - -55.5278 - ] - } - }, - { - "ibge": 4106506, - "name": "Coronel Vivida", - "capital": 0, - "ibgeState": 41, - "siafi": 7527, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.9767, - -52.5641 - ] - } - }, - { - "ibge": 3119708, - "name": "Coronel Xavier Chaves", - "capital": 0, - "ibgeState": 31, - "siafi": 4393, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0277, - -44.2206 - ] - } - }, - { - "ibge": 3119807, - "name": "Córrego Danta", - "capital": 0, - "ibgeState": 31, - "siafi": 4395, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8198, - -45.9032 - ] - } - }, - { - "ibge": 3119906, - "name": "Córrego do Bom Jesus", - "capital": 0, - "ibgeState": 31, - "siafi": 4397, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6269, - -46.0241 - ] - } - }, - { - "ibge": 5205703, - "name": "Córrego do Ouro", - "capital": 0, - "ibgeState": 52, - "siafi": 9315, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.2918, - -50.5503 - ] - } - }, - { - "ibge": 3119955, - "name": "Córrego Fundo", - "capital": 0, - "ibgeState": 31, - "siafi": 594, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4474, - -45.5617 - ] - } - }, - { - "ibge": 3120003, - "name": "Córrego Novo", - "capital": 0, - "ibgeState": 31, - "siafi": 4399, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8361, - -42.3988 - ] - } - }, - { - "ibge": 4204558, - "name": "Correia Pinto", - "capital": 0, - "ibgeState": 42, - "siafi": 8395, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5877, - -50.3614 - ] - } - }, - { - "ibge": 2202901, - "name": "Corrente", - "capital": 0, - "ibgeState": 22, - "siafi": 1057, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.4333, - -45.1633 - ] - } - }, - { - "ibge": 2604700, - "name": "Correntes", - "capital": 0, - "ibgeState": 26, - "siafi": 2393, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.12117, - -36.3244 - ] - } - }, - { - "ibge": 2909307, - "name": "Correntina", - "capital": 0, - "ibgeState": 29, - "siafi": 3485, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.3477, - -44.6333 - ] - } - }, - { - "ibge": 2604809, - "name": "Cortês", - "capital": 0, - "ibgeState": 26, - "siafi": 2395, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.47443, - -35.5468 - ] - } - }, - { - "ibge": 5003207, - "name": "Corumbá", - "capital": 0, - "ibgeState": 50, - "siafi": 9063, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -19.0077, - -57.651 - ] - } - }, - { - "ibge": 5205802, - "name": "Corumbá de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9317, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.9245, - -48.8117 - ] - } - }, - { - "ibge": 5205901, - "name": "Corumbaíba", - "capital": 0, - "ibgeState": 52, - "siafi": 9319, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.1415, - -48.5626 - ] - } - }, - { - "ibge": 3512704, - "name": "Corumbataí", - "capital": 0, - "ibgeState": 35, - "siafi": 6355, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2213, - -47.6215 - ] - } - }, - { - "ibge": 4106555, - "name": "Corumbataí do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 8479, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.101, - -52.1177 - ] - } - }, - { - "ibge": 1100072, - "name": "Corumbiara", - "capital": 0, - "ibgeState": 11, - "siafi": 981, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.9551, - -60.8947 - ] - } - }, - { - "ibge": 4204509, - "name": "Corupá", - "capital": 0, - "ibgeState": 42, - "siafi": 8087, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.4246, - -49.246 - ] - } - }, - { - "ibge": 2702306, - "name": "Coruripe", - "capital": 0, - "ibgeState": 27, - "siafi": 2745, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.1276, - -36.1717 - ] - } - }, - { - "ibge": 3512803, - "name": "Cosmópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6357, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6419, - -47.1926 - ] - } - }, - { - "ibge": 3512902, - "name": "Cosmorama", - "capital": 0, - "ibgeState": 35, - "siafi": 6359, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4755, - -49.7827 - ] - } - }, - { - "ibge": 1100080, - "name": "Costa Marques", - "capital": 0, - "ibgeState": 11, - "siafi": 21, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.4367, - -64.228 - ] - } - }, - { - "ibge": 5003256, - "name": "Costa Rica", - "capital": 0, - "ibgeState": 50, - "siafi": 9803, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -18.5432, - -53.1287 - ] - } - }, - { - "ibge": 2909406, - "name": "Cotegipe", - "capital": 0, - "ibgeState": 29, - "siafi": 3487, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.0228, - -44.2566 - ] - } - }, - { - "ibge": 3513009, - "name": "Cotia", - "capital": 0, - "ibgeState": 35, - "siafi": 6361, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6022, - -46.919 - ] - } - }, - { - "ibge": 4305959, - "name": "Cotiporã", - "capital": 0, - "ibgeState": 43, - "siafi": 8977, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.9891, - -51.6971 - ] - } - }, - { - "ibge": 5103379, - "name": "Cotriguaçu", - "capital": 0, - "ibgeState": 51, - "siafi": 89, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -9.85656, - -58.4192 - ] - } - }, - { - "ibge": 3120102, - "name": "Couto de Magalhães de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4401, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.0727, - -43.4648 - ] - } - }, - { - "ibge": 1706001, - "name": "Couto Magalhães", - "capital": 0, - "ibgeState": 17, - "siafi": 9321, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.28411, - -49.2473 - ] - } - }, - { - "ibge": 4305975, - "name": "Coxilha", - "capital": 0, - "ibgeState": 43, - "siafi": 5797, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.128, - -52.3023 - ] - } - }, - { - "ibge": 5003306, - "name": "Coxim", - "capital": 0, - "ibgeState": 50, - "siafi": 9065, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -18.5013, - -54.751 - ] - } - }, - { - "ibge": 2504850, - "name": "Coxixola", - "capital": 0, - "ibgeState": 25, - "siafi": 472, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.62365, - -36.6064 - ] - } - }, - { - "ibge": 2702355, - "name": "Craíbas", - "capital": 0, - "ibgeState": 27, - "siafi": 2889, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.6178, - -36.7697 - ] - } - }, - { - "ibge": 2304103, - "name": "Crateús", - "capital": 0, - "ibgeState": 23, - "siafi": 1383, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.16768, - -40.6536 - ] - } - }, - { - "ibge": 2304202, - "name": "Crato", - "capital": 0, - "ibgeState": 23, - "siafi": 1385, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.2153, - -39.4103 - ] - } - }, - { - "ibge": 3513108, - "name": "Cravinhos", - "capital": 0, - "ibgeState": 35, - "siafi": 6363, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.338, - -47.7324 - ] - } - }, - { - "ibge": 2909505, - "name": "Cravolândia", - "capital": 0, - "ibgeState": 29, - "siafi": 3489, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.3531, - -39.8031 - ] - } - }, - { - "ibge": 4204608, - "name": "Criciúma", - "capital": 0, - "ibgeState": 42, - "siafi": 8089, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6723, - -49.3729 - ] - } - }, - { - "ibge": 3120151, - "name": "Crisólita", - "capital": 0, - "ibgeState": 31, - "siafi": 596, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.2381, - -40.9184 - ] - } - }, - { - "ibge": 2909604, - "name": "Crisópolis", - "capital": 0, - "ibgeState": 29, - "siafi": 3491, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.5059, - -38.1515 - ] - } - }, - { - "ibge": 4306007, - "name": "Crissiumal", - "capital": 0, - "ibgeState": 43, - "siafi": 8617, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4999, - -54.0994 - ] - } - }, - { - "ibge": 3120201, - "name": "Cristais", - "capital": 0, - "ibgeState": 31, - "siafi": 4403, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8733, - -45.5167 - ] - } - }, - { - "ibge": 3513207, - "name": "Cristais Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 6365, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4036, - -47.4209 - ] - } - }, - { - "ibge": 4306056, - "name": "Cristal", - "capital": 0, - "ibgeState": 43, - "siafi": 8431, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.0046, - -52.0436 - ] - } - }, - { - "ibge": 4306072, - "name": "Cristal do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 972, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.452, - -53.2422 - ] - } - }, - { - "ibge": 1706100, - "name": "Cristalândia", - "capital": 0, - "ibgeState": 17, - "siafi": 9323, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.5985, - -49.1942 - ] - } - }, - { - "ibge": 2203008, - "name": "Cristalândia do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1059, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.6443, - -45.1893 - ] - } - }, - { - "ibge": 3120300, - "name": "Cristália", - "capital": 0, - "ibgeState": 31, - "siafi": 4405, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.716, - -42.8571 - ] - } - }, - { - "ibge": 5206206, - "name": "Cristalina", - "capital": 0, - "ibgeState": 52, - "siafi": 9325, - "ddd": 61, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.7676, - -47.6131 - ] - } - }, - { - "ibge": 3120409, - "name": "Cristiano Otoni", - "capital": 0, - "ibgeState": 31, - "siafi": 4407, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8324, - -43.8166 - ] - } - }, - { - "ibge": 5206305, - "name": "Cristianópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9327, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.1987, - -48.7034 - ] - } - }, - { - "ibge": 3120508, - "name": "Cristina", - "capital": 0, - "ibgeState": 31, - "siafi": 4409, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.208, - -45.2673 - ] - } - }, - { - "ibge": 2801702, - "name": "Cristinápolis", - "capital": 0, - "ibgeState": 28, - "siafi": 3133, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.4668, - -37.7585 - ] - } - }, - { - "ibge": 2203107, - "name": "Cristino Castro", - "capital": 0, - "ibgeState": 22, - "siafi": 1061, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.82273, - -44.223 - ] - } - }, - { - "ibge": 2909703, - "name": "Cristópolis", - "capital": 0, - "ibgeState": 29, - "siafi": 3493, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.2249, - -44.4214 - ] - } - }, - { - "ibge": 5206404, - "name": "Crixás", - "capital": 0, - "ibgeState": 52, - "siafi": 9329, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.5412, - -49.974 - ] - } - }, - { - "ibge": 1706258, - "name": "Crixás do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 82, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.0994, - -48.9152 - ] - } - }, - { - "ibge": 2304236, - "name": "Croatá", - "capital": 0, - "ibgeState": 23, - "siafi": 1241, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.40481, - -40.9022 - ] - } - }, - { - "ibge": 5206503, - "name": "Cromínia", - "capital": 0, - "ibgeState": 52, - "siafi": 9331, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.2883, - -49.3798 - ] - } - }, - { - "ibge": 3120607, - "name": "Crucilândia", - "capital": 0, - "ibgeState": 31, - "siafi": 4411, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3923, - -44.3334 - ] - } - }, - { - "ibge": 2304251, - "name": "Cruz", - "capital": 0, - "ibgeState": 23, - "siafi": 1589, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.91813, - -40.176 - ] - } - }, - { - "ibge": 4306106, - "name": "Cruz Alta", - "capital": 0, - "ibgeState": 43, - "siafi": 8619, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.645, - -53.6048 - ] - } - }, - { - "ibge": 2909802, - "name": "Cruz das Almas", - "capital": 0, - "ibgeState": 29, - "siafi": 3495, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.6675, - -39.1008 - ] - } - }, - { - "ibge": 2504900, - "name": "Cruz do Espírito Santo", - "capital": 0, - "ibgeState": 25, - "siafi": 1999, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.13902, - -35.0857 - ] - } - }, - { - "ibge": 4106803, - "name": "Cruz Machado", - "capital": 0, - "ibgeState": 41, - "siafi": 7533, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.0166, - -51.343 - ] - } - }, - { - "ibge": 3513306, - "name": "Cruzália", - "capital": 0, - "ibgeState": 35, - "siafi": 6367, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7373, - -50.7909 - ] - } - }, - { - "ibge": 4306130, - "name": "Cruzaltense", - "capital": 0, - "ibgeState": 43, - "siafi": 1140, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6672, - -52.6522 - ] - } - }, - { - "ibge": 3513405, - "name": "Cruzeiro", - "capital": 0, - "ibgeState": 35, - "siafi": 6369, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5728, - -44.969 - ] - } - }, - { - "ibge": 3120706, - "name": "Cruzeiro da Fortaleza", - "capital": 0, - "ibgeState": 31, - "siafi": 4413, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.944, - -46.6669 - ] - } - }, - { - "ibge": 4106571, - "name": "Cruzeiro do Iguaçu", - "capital": 0, - "ibgeState": 41, - "siafi": 5473, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.6192, - -53.1285 - ] - } - }, - { - "ibge": 4106605, - "name": "Cruzeiro do Oeste", - "capital": 0, - "ibgeState": 41, - "siafi": 7529, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7799, - -53.0774 - ] - } - }, - { - "ibge": 4106704, - "name": "Cruzeiro do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 7531, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9624, - -52.1622 - ] - } - }, - { - "ibge": 4306205, - "name": "Cruzeiro do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8621, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5148, - -51.9928 - ] - } - }, - { - "ibge": 1200203, - "name": "Cruzeiro do Sul", - "capital": 0, - "ibgeState": 12, - "siafi": 107, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -7.62762, - -72.6756 - ] - } - }, - { - "ibge": 2403004, - "name": "Cruzeta", - "capital": 0, - "ibgeState": 24, - "siafi": 1659, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.40894, - -36.7782 - ] - } - }, - { - "ibge": 3120805, - "name": "Cruzília", - "capital": 0, - "ibgeState": 31, - "siafi": 4415, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.84, - -44.8067 - ] - } - }, - { - "ibge": 4106852, - "name": "Cruzmaltina", - "capital": 0, - "ibgeState": 41, - "siafi": 848, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.0132, - -51.4563 - ] - } - }, - { - "ibge": 3513504, - "name": "Cubatão", - "capital": 0, - "ibgeState": 35, - "siafi": 6371, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8911, - -46.424 - ] - } - }, - { - "ibge": 2505006, - "name": "Cubati", - "capital": 0, - "ibgeState": 25, - "siafi": 2001, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.86686, - -36.3619 - ] - } - }, - { - "ibge": 5103403, - "name": "Cuiabá", - "capital": 1, - "ibgeState": 51, - "siafi": 9067, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.601, - -56.0974 - ] - } - }, - { - "ibge": 2505105, - "name": "Cuité", - "capital": 0, - "ibgeState": 25, - "siafi": 2003, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.47647, - -36.1515 - ] - } - }, - { - "ibge": 2505238, - "name": "Cuité de Mamanguape", - "capital": 0, - "ibgeState": 25, - "siafi": 474, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.91292, - -35.2502 - ] - } - }, - { - "ibge": 2505204, - "name": "Cuitegi", - "capital": 0, - "ibgeState": 25, - "siafi": 2005, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.89058, - -35.5215 - ] - } - }, - { - "ibge": 1100940, - "name": "Cujubim", - "capital": 0, - "ibgeState": 11, - "siafi": 8, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -9.36065, - -62.5846 - ] - } - }, - { - "ibge": 5206602, - "name": "Cumari", - "capital": 0, - "ibgeState": 52, - "siafi": 9333, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.2644, - -48.1511 - ] - } - }, - { - "ibge": 2604908, - "name": "Cumaru", - "capital": 0, - "ibgeState": 26, - "siafi": 2397, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.00827, - -35.6957 - ] - } - }, - { - "ibge": 1502764, - "name": "Cumaru do Norte", - "capital": 0, - "ibgeState": 15, - "siafi": 385, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.81097, - -50.7698 - ] - } - }, - { - "ibge": 2801900, - "name": "Cumbe", - "capital": 0, - "ibgeState": 28, - "siafi": 3137, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.352, - -37.1846 - ] - } - }, - { - "ibge": 3513603, - "name": "Cunha", - "capital": 0, - "ibgeState": 35, - "siafi": 6373, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0731, - -44.9576 - ] - } - }, - { - "ibge": 4204707, - "name": "Cunha Porã", - "capital": 0, - "ibgeState": 42, - "siafi": 8091, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.895, - -53.1662 - ] - } - }, - { - "ibge": 4204756, - "name": "Cunhataí", - "capital": 0, - "ibgeState": 42, - "siafi": 910, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9709, - -53.0895 - ] - } - }, - { - "ibge": 3120839, - "name": "Cuparaque", - "capital": 0, - "ibgeState": 31, - "siafi": 598, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.9648, - -41.0986 - ] - } - }, - { - "ibge": 2605004, - "name": "Cupira", - "capital": 0, - "ibgeState": 26, - "siafi": 2399, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.62432, - -35.9518 - ] - } - }, - { - "ibge": 2909901, - "name": "Curaçá", - "capital": 0, - "ibgeState": 29, - "siafi": 3497, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.98458, - -39.8997 - ] - } - }, - { - "ibge": 2203206, - "name": "Curimatá", - "capital": 0, - "ibgeState": 22, - "siafi": 1063, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.0326, - -44.3002 - ] - } - }, - { - "ibge": 1502772, - "name": "Curionópolis", - "capital": 0, - "ibgeState": 15, - "siafi": 581, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.09965, - -49.6068 - ] - } - }, - { - "ibge": 4106902, - "name": "Curitiba", - "capital": 1, - "ibgeState": 41, - "siafi": 7535, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4195, - -49.2646 - ] - } - }, - { - "ibge": 4204806, - "name": "Curitibanos", - "capital": 0, - "ibgeState": 42, - "siafi": 8093, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2824, - -50.5816 - ] - } - }, - { - "ibge": 4107009, - "name": "Curiúva", - "capital": 0, - "ibgeState": 41, - "siafi": 7537, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.0362, - -50.4576 - ] - } - }, - { - "ibge": 2203230, - "name": "Currais", - "capital": 0, - "ibgeState": 22, - "siafi": 308, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.01175, - -44.4062 - ] - } - }, - { - "ibge": 2403103, - "name": "Currais Novos", - "capital": 0, - "ibgeState": 24, - "siafi": 1661, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.25484, - -36.5146 - ] - } - }, - { - "ibge": 2505279, - "name": "Curral de Cima", - "capital": 0, - "ibgeState": 25, - "siafi": 476, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.72325, - -35.2639 - ] - } - }, - { - "ibge": 3120870, - "name": "Curral de Dentro", - "capital": 0, - "ibgeState": 31, - "siafi": 600, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.9327, - -41.8557 - ] - } - }, - { - "ibge": 2203271, - "name": "Curral Novo do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 312, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.8313, - -40.8957 - ] - } - }, - { - "ibge": 2505303, - "name": "Curral Velho", - "capital": 0, - "ibgeState": 25, - "siafi": 2007, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.53075, - -38.1962 - ] - } - }, - { - "ibge": 1502806, - "name": "Curralinho", - "capital": 0, - "ibgeState": 15, - "siafi": 455, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.81179, - -49.7952 - ] - } - }, - { - "ibge": 2203255, - "name": "Curralinhos", - "capital": 0, - "ibgeState": 22, - "siafi": 310, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.60825, - -42.8376 - ] - } - }, - { - "ibge": 1502855, - "name": "Curuá", - "capital": 0, - "ibgeState": 15, - "siafi": 50, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.88775, - -55.1168 - ] - } - }, - { - "ibge": 1502905, - "name": "Curuçá", - "capital": 0, - "ibgeState": 15, - "siafi": 457, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.733214, - -47.8515 - ] - } - }, - { - "ibge": 2103703, - "name": "Cururupu", - "capital": 0, - "ibgeState": 21, - "siafi": 771, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.81475, - -44.8644 - ] - } - }, - { - "ibge": 5103437, - "name": "Curvelândia", - "capital": 0, - "ibgeState": 51, - "siafi": 1084, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.6084, - -57.9133 - ] - } - }, - { - "ibge": 3120904, - "name": "Curvelo", - "capital": 0, - "ibgeState": 31, - "siafi": 4417, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7527, - -44.4303 - ] - } - }, - { - "ibge": 2605103, - "name": "Custódia", - "capital": 0, - "ibgeState": 26, - "siafi": 2401, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.08546, - -37.6443 - ] - } - }, - { - "ibge": 1600212, - "name": "Cutias", - "capital": 0, - "ibgeState": 16, - "siafi": 667, - "ddd": 96, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - 0.970761, - -50.8005 - ] - } - }, - { - "ibge": 5206701, - "name": "Damianópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9335, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.5604, - -46.178 - ] - } - }, - { - "ibge": 2505352, - "name": "Damião", - "capital": 0, - "ibgeState": 25, - "siafi": 478, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.63161, - -35.9101 - ] - } - }, - { - "ibge": 5206800, - "name": "Damolândia", - "capital": 0, - "ibgeState": 52, - "siafi": 9337, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.2544, - -49.3631 - ] - } - }, - { - "ibge": 1706506, - "name": "Darcinópolis", - "capital": 0, - "ibgeState": 17, - "siafi": 179, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.71591, - -47.7597 - ] - } - }, - { - "ibge": 2910008, - "name": "Dário Meira", - "capital": 0, - "ibgeState": 29, - "siafi": 3499, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.4229, - -39.9031 - ] - } - }, - { - "ibge": 3121001, - "name": "Datas", - "capital": 0, - "ibgeState": 31, - "siafi": 4419, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4478, - -43.6591 - ] - } - }, - { - "ibge": 4306304, - "name": "David Canabarro", - "capital": 0, - "ibgeState": 43, - "siafi": 8623, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3849, - -51.8482 - ] - } - }, - { - "ibge": 2103752, - "name": "Davinópolis", - "capital": 0, - "ibgeState": 21, - "siafi": 154, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.54637, - -47.4217 - ] - } - }, - { - "ibge": 5206909, - "name": "Davinópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9339, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.1501, - -47.5568 - ] - } - }, - { - "ibge": 3121100, - "name": "Delfim Moreira", - "capital": 0, - "ibgeState": 31, - "siafi": 4421, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5036, - -45.2792 - ] - } - }, - { - "ibge": 3121209, - "name": "Delfinópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 4423, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3468, - -46.8456 - ] - } - }, - { - "ibge": 2702405, - "name": "Delmiro Gouveia", - "capital": 0, - "ibgeState": 27, - "siafi": 2747, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.38534, - -37.9987 - ] - } - }, - { - "ibge": 3121258, - "name": "Delta", - "capital": 0, - "ibgeState": 31, - "siafi": 602, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9721, - -47.7841 - ] - } - }, - { - "ibge": 2203305, - "name": "Demerval Lobão", - "capital": 0, - "ibgeState": 22, - "siafi": 1065, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.35875, - -42.6776 - ] - } - }, - { - "ibge": 5103452, - "name": "Denise", - "capital": 0, - "ibgeState": 51, - "siafi": 9833, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.7324, - -57.0583 - ] - } - }, - { - "ibge": 5003454, - "name": "Deodápolis", - "capital": 0, - "ibgeState": 50, - "siafi": 9175, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.2763, - -54.1682 - ] - } - }, - { - "ibge": 2304269, - "name": "Deputado Irapuan Pinheiro", - "capital": 0, - "ibgeState": 23, - "siafi": 1243, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.91485, - -39.257 - ] - } - }, - { - "ibge": 4306320, - "name": "Derrubadas", - "capital": 0, - "ibgeState": 43, - "siafi": 6073, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2642, - -53.8645 - ] - } - }, - { - "ibge": 3513702, - "name": "Descalvado", - "capital": 0, - "ibgeState": 35, - "siafi": 6375, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9002, - -47.6181 - ] - } - }, - { - "ibge": 4204905, - "name": "Descanso", - "capital": 0, - "ibgeState": 42, - "siafi": 8095, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.827, - -53.5034 - ] - } - }, - { - "ibge": 3121308, - "name": "Descoberto", - "capital": 0, - "ibgeState": 31, - "siafi": 4425, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.46, - -42.9618 - ] - } - }, - { - "ibge": 2505402, - "name": "Desterro", - "capital": 0, - "ibgeState": 25, - "siafi": 2009, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.287, - -37.0925 - ] - } - }, - { - "ibge": 3121407, - "name": "Desterro de Entre Rios", - "capital": 0, - "ibgeState": 31, - "siafi": 4427, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.665, - -44.3334 - ] - } - }, - { - "ibge": 3121506, - "name": "Desterro do Melo", - "capital": 0, - "ibgeState": 31, - "siafi": 4429, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.143, - -43.5178 - ] - } - }, - { - "ibge": 4306353, - "name": "Dezesseis de Novembro", - "capital": 0, - "ibgeState": 43, - "siafi": 8429, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.219, - -55.0617 - ] - } - }, - { - "ibge": 3513801, - "name": "Diadema", - "capital": 0, - "ibgeState": 35, - "siafi": 6377, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6813, - -46.6205 - ] - } - }, - { - "ibge": 2505600, - "name": "Diamante", - "capital": 0, - "ibgeState": 25, - "siafi": 2013, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.41738, - -38.2615 - ] - } - }, - { - "ibge": 4107157, - "name": "Diamante D'Oeste", - "capital": 0, - "ibgeState": 41, - "siafi": 9915, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.9419, - -54.1052 - ] - } - }, - { - "ibge": 4107108, - "name": "Diamante do Norte", - "capital": 0, - "ibgeState": 41, - "siafi": 7539, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.655, - -52.8617 - ] - } - }, - { - "ibge": 4107124, - "name": "Diamante do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 5465, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.035, - -52.6768 - ] - } - }, - { - "ibge": 3121605, - "name": "Diamantina", - "capital": 0, - "ibgeState": 31, - "siafi": 4431, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.2413, - -43.6031 - ] - } - }, - { - "ibge": 5103502, - "name": "Diamantino", - "capital": 0, - "ibgeState": 51, - "siafi": 9069, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.4037, - -56.4366 - ] - } - }, - { - "ibge": 1707009, - "name": "Dianópolis", - "capital": 0, - "ibgeState": 17, - "siafi": 9341, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.624, - -46.8198 - ] - } - }, - { - "ibge": 2910057, - "name": "Dias d'Ávila", - "capital": 0, - "ibgeState": 29, - "siafi": 3087, - "ddd": 71, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.6187, - -38.2926 - ] - } - }, - { - "ibge": 4306379, - "name": "Dilermando de Aguiar", - "capital": 0, - "ibgeState": 43, - "siafi": 974, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.7054, - -54.2122 - ] - } - }, - { - "ibge": 3121704, - "name": "Diogo de Vasconcelos", - "capital": 0, - "ibgeState": 31, - "siafi": 4433, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4879, - -43.1953 - ] - } - }, - { - "ibge": 3121803, - "name": "Dionísio", - "capital": 0, - "ibgeState": 31, - "siafi": 4435, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8433, - -42.7701 - ] - } - }, - { - "ibge": 4205001, - "name": "Dionísio Cerqueira", - "capital": 0, - "ibgeState": 42, - "siafi": 8097, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.2648, - -53.6351 - ] - } - }, - { - "ibge": 5207105, - "name": "Diorama", - "capital": 0, - "ibgeState": 52, - "siafi": 9343, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.2329, - -51.2543 - ] - } - }, - { - "ibge": 3513850, - "name": "Dirce Reis", - "capital": 0, - "ibgeState": 35, - "siafi": 7249, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4642, - -50.6073 - ] - } - }, - { - "ibge": 2203354, - "name": "Dirceu Arcoverde", - "capital": 0, - "ibgeState": 22, - "siafi": 1229, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.33939, - -42.4348 - ] - } - }, - { - "ibge": 2802007, - "name": "Divina Pastora", - "capital": 0, - "ibgeState": 28, - "siafi": 3139, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.6782, - -37.1506 - ] - } - }, - { - "ibge": 3121902, - "name": "Divinésia", - "capital": 0, - "ibgeState": 31, - "siafi": 4437, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9917, - -43.0003 - ] - } - }, - { - "ibge": 3122009, - "name": "Divino", - "capital": 0, - "ibgeState": 31, - "siafi": 4439, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6134, - -42.1438 - ] - } - }, - { - "ibge": 3122108, - "name": "Divino das Laranjeiras", - "capital": 0, - "ibgeState": 31, - "siafi": 4441, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7755, - -41.4781 - ] - } - }, - { - "ibge": 3201803, - "name": "Divino de São Lourenço", - "capital": 0, - "ibgeState": 32, - "siafi": 5635, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6229, - -41.6937 - ] - } - }, - { - "ibge": 3513900, - "name": "Divinolândia", - "capital": 0, - "ibgeState": 35, - "siafi": 6379, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6637, - -46.7361 - ] - } - }, - { - "ibge": 3122207, - "name": "Divinolândia de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4443, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.8004, - -42.6103 - ] - } - }, - { - "ibge": 3122306, - "name": "Divinópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 4445, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1446, - -44.8912 - ] - } - }, - { - "ibge": 5208301, - "name": "Divinópolis de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9309, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.2853, - -46.3999 - ] - } - }, - { - "ibge": 1707108, - "name": "Divinópolis do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9719, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.80018, - -49.2169 - ] - } - }, - { - "ibge": 3122355, - "name": "Divisa Alegre", - "capital": 0, - "ibgeState": 31, - "siafi": 604, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.7221, - -41.3463 - ] - } - }, - { - "ibge": 3122405, - "name": "Divisa Nova", - "capital": 0, - "ibgeState": 31, - "siafi": 4447, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5092, - -46.1904 - ] - } - }, - { - "ibge": 3122454, - "name": "Divisópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 2657, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.7254, - -40.9997 - ] - } - }, - { - "ibge": 3514007, - "name": "Dobrada", - "capital": 0, - "ibgeState": 35, - "siafi": 6381, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5155, - -48.3935 - ] - } - }, - { - "ibge": 3514106, - "name": "Dois Córregos", - "capital": 0, - "ibgeState": 35, - "siafi": 6383, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3673, - -48.3819 - ] - } - }, - { - "ibge": 4306403, - "name": "Dois Irmãos", - "capital": 0, - "ibgeState": 43, - "siafi": 8625, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5836, - -51.0898 - ] - } - }, - { - "ibge": 4306429, - "name": "Dois Irmãos das Missões", - "capital": 0, - "ibgeState": 43, - "siafi": 5971, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6621, - -53.5304 - ] - } - }, - { - "ibge": 5003488, - "name": "Dois Irmãos do Buriti", - "capital": 0, - "ibgeState": 50, - "siafi": 9793, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -20.6848, - -55.2915 - ] - } - }, - { - "ibge": 1707207, - "name": "Dois Irmãos do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9345, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.25534, - -49.0638 - ] - } - }, - { - "ibge": 4306452, - "name": "Dois Lajeados", - "capital": 0, - "ibgeState": 43, - "siafi": 8427, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.983, - -51.8396 - ] - } - }, - { - "ibge": 2702504, - "name": "Dois Riachos", - "capital": 0, - "ibgeState": 27, - "siafi": 2749, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.38465, - -37.0965 - ] - } - }, - { - "ibge": 4107207, - "name": "Dois Vizinhos", - "capital": 0, - "ibgeState": 41, - "siafi": 7541, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.7407, - -53.057 - ] - } - }, - { - "ibge": 3514205, - "name": "Dolcinópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6385, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.124, - -50.5149 - ] - } - }, - { - "ibge": 5103601, - "name": "Dom Aquino", - "capital": 0, - "ibgeState": 51, - "siafi": 9071, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.8099, - -54.9223 - ] - } - }, - { - "ibge": 2910107, - "name": "Dom Basílio", - "capital": 0, - "ibgeState": 29, - "siafi": 3501, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.7565, - -41.7677 - ] - } - }, - { - "ibge": 3122470, - "name": "Dom Bosco", - "capital": 0, - "ibgeState": 31, - "siafi": 606, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.652, - -46.2597 - ] - } - }, - { - "ibge": 3122504, - "name": "Dom Cavati", - "capital": 0, - "ibgeState": 31, - "siafi": 4449, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.3735, - -42.1121 - ] - } - }, - { - "ibge": 1502939, - "name": "Dom Eliseu", - "capital": 0, - "ibgeState": 15, - "siafi": 583, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.19944, - -47.8245 - ] - } - }, - { - "ibge": 2203404, - "name": "Dom Expedito Lopes", - "capital": 0, - "ibgeState": 22, - "siafi": 1067, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.95332, - -41.6396 - ] - } - }, - { - "ibge": 4306502, - "name": "Dom Feliciano", - "capital": 0, - "ibgeState": 43, - "siafi": 8627, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.7004, - -52.1026 - ] - } - }, - { - "ibge": 2203453, - "name": "Dom Inocêncio", - "capital": 0, - "ibgeState": 22, - "siafi": 1289, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.00516, - -41.9697 - ] - } - }, - { - "ibge": 3122603, - "name": "Dom Joaquim", - "capital": 0, - "ibgeState": 31, - "siafi": 4451, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.961, - -43.2544 - ] - } - }, - { - "ibge": 2910206, - "name": "Dom Macedo Costa", - "capital": 0, - "ibgeState": 29, - "siafi": 3503, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.9016, - -39.1923 - ] - } - }, - { - "ibge": 4306601, - "name": "Dom Pedrito", - "capital": 0, - "ibgeState": 43, - "siafi": 8629, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.9756, - -54.6694 - ] - } - }, - { - "ibge": 2103802, - "name": "Dom Pedro", - "capital": 0, - "ibgeState": 21, - "siafi": 773, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.03518, - -44.4409 - ] - } - }, - { - "ibge": 4306551, - "name": "Dom Pedro de Alcântara", - "capital": 0, - "ibgeState": 43, - "siafi": 976, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3639, - -49.853 - ] - } - }, - { - "ibge": 3122702, - "name": "Dom Silvério", - "capital": 0, - "ibgeState": 31, - "siafi": 4453, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1627, - -42.9627 - ] - } - }, - { - "ibge": 3122801, - "name": "Dom Viçoso", - "capital": 0, - "ibgeState": 31, - "siafi": 4455, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2511, - -45.1643 - ] - } - }, - { - "ibge": 3201902, - "name": "Domingos Martins", - "capital": 0, - "ibgeState": 32, - "siafi": 5637, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3603, - -40.6594 - ] - } - }, - { - "ibge": 2203420, - "name": "Domingos Mourão", - "capital": 0, - "ibgeState": 22, - "siafi": 1141, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.2495, - -41.2683 - ] - } - }, - { - "ibge": 4205100, - "name": "Dona Emma", - "capital": 0, - "ibgeState": 42, - "siafi": 8099, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.981, - -49.7261 - ] - } - }, - { - "ibge": 3122900, - "name": "Dona Eusébia", - "capital": 0, - "ibgeState": 31, - "siafi": 4457, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.319, - -42.807 - ] - } - }, - { - "ibge": 4306700, - "name": "Dona Francisca", - "capital": 0, - "ibgeState": 43, - "siafi": 8631, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6195, - -53.3617 - ] - } - }, - { - "ibge": 2505709, - "name": "Dona Inês", - "capital": 0, - "ibgeState": 25, - "siafi": 2015, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.61566, - -35.6205 - ] - } - }, - { - "ibge": 3123007, - "name": "Dores de Campos", - "capital": 0, - "ibgeState": 31, - "siafi": 4459, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1139, - -44.0207 - ] - } - }, - { - "ibge": 3123106, - "name": "Dores de Guanhães", - "capital": 0, - "ibgeState": 31, - "siafi": 4461, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.0516, - -42.9254 - ] - } - }, - { - "ibge": 3123205, - "name": "Dores do Indaiá", - "capital": 0, - "ibgeState": 31, - "siafi": 4463, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.4628, - -45.5927 - ] - } - }, - { - "ibge": 3202009, - "name": "Dores do Rio Preto", - "capital": 0, - "ibgeState": 32, - "siafi": 5639, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6931, - -41.8405 - ] - } - }, - { - "ibge": 3123304, - "name": "Dores do Turvo", - "capital": 0, - "ibgeState": 31, - "siafi": 4465, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9785, - -43.1834 - ] - } - }, - { - "ibge": 3123403, - "name": "Doresópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 4467, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2868, - -45.9007 - ] - } - }, - { - "ibge": 2605152, - "name": "Dormentes", - "capital": 0, - "ibgeState": 26, - "siafi": 2299, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.44116, - -40.7662 - ] - } - }, - { - "ibge": 5003504, - "name": "Douradina", - "capital": 0, - "ibgeState": 50, - "siafi": 9805, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.0405, - -54.6158 - ] - } - }, - { - "ibge": 4107256, - "name": "Douradina", - "capital": 0, - "ibgeState": 41, - "siafi": 8465, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3807, - -53.2918 - ] - } - }, - { - "ibge": 3514304, - "name": "Dourado", - "capital": 0, - "ibgeState": 35, - "siafi": 6387, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1044, - -48.3178 - ] - } - }, - { - "ibge": 3123502, - "name": "Douradoquara", - "capital": 0, - "ibgeState": 31, - "siafi": 4469, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4338, - -47.5993 - ] - } - }, - { - "ibge": 5003702, - "name": "Dourados", - "capital": 0, - "ibgeState": 50, - "siafi": 9073, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.2231, - -54.812 - ] - } - }, - { - "ibge": 4107306, - "name": "Doutor Camargo", - "capital": 0, - "ibgeState": 41, - "siafi": 7543, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5582, - -52.2178 - ] - } - }, - { - "ibge": 4306734, - "name": "Doutor Maurício Cardoso", - "capital": 0, - "ibgeState": 43, - "siafi": 8425, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5103, - -54.3577 - ] - } - }, - { - "ibge": 4205159, - "name": "Doutor Pedrinho", - "capital": 0, - "ibgeState": 42, - "siafi": 9945, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7174, - -49.4795 - ] - } - }, - { - "ibge": 4306759, - "name": "Doutor Ricardo", - "capital": 0, - "ibgeState": 43, - "siafi": 978, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.084, - -51.9972 - ] - } - }, - { - "ibge": 2403202, - "name": "Doutor Severiano", - "capital": 0, - "ibgeState": 24, - "siafi": 1663, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.08082, - -38.3794 - ] - } - }, - { - "ibge": 4128633, - "name": "Doutor Ulysses", - "capital": 0, - "ibgeState": 41, - "siafi": 5449, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.5665, - -49.4219 - ] - } - }, - { - "ibge": 5207253, - "name": "Doverlândia", - "capital": 0, - "ibgeState": 52, - "siafi": 9675, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.7188, - -52.3189 - ] - } - }, - { - "ibge": 3514403, - "name": "Dracena", - "capital": 0, - "ibgeState": 35, - "siafi": 6389, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4843, - -51.535 - ] - } - }, - { - "ibge": 3514502, - "name": "Duartina", - "capital": 0, - "ibgeState": 35, - "siafi": 6391, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4146, - -49.4084 - ] - } - }, - { - "ibge": 3301603, - "name": "Duas Barras", - "capital": 0, - "ibgeState": 33, - "siafi": 5831, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0536, - -42.5232 - ] - } - }, - { - "ibge": 2505808, - "name": "Duas Estradas", - "capital": 0, - "ibgeState": 25, - "siafi": 2017, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.68499, - -35.418 - ] - } - }, - { - "ibge": 1707306, - "name": "Dueré", - "capital": 0, - "ibgeState": 17, - "siafi": 9347, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.3416, - -49.2716 - ] - } - }, - { - "ibge": 3514601, - "name": "Dumont", - "capital": 0, - "ibgeState": 35, - "siafi": 6393, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2324, - -47.9756 - ] - } - }, - { - "ibge": 2103901, - "name": "Duque Bacelar", - "capital": 0, - "ibgeState": 21, - "siafi": 775, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.15002, - -42.9477 - ] - } - }, - { - "ibge": 3301702, - "name": "Duque de Caxias", - "capital": 0, - "ibgeState": 33, - "siafi": 5833, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7858, - -43.3049 - ] - } - }, - { - "ibge": 3123528, - "name": "Durandé", - "capital": 0, - "ibgeState": 31, - "siafi": 2675, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2058, - -41.7977 - ] - } - }, - { - "ibge": 3514700, - "name": "Echaporã", - "capital": 0, - "ibgeState": 35, - "siafi": 6395, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4326, - -50.2038 - ] - } - }, - { - "ibge": 3202108, - "name": "Ecoporanga", - "capital": 0, - "ibgeState": 32, - "siafi": 5641, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.3702, - -40.836 - ] - } - }, - { - "ibge": 5207352, - "name": "Edealina", - "capital": 0, - "ibgeState": 52, - "siafi": 9795, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.4239, - -49.6644 - ] - } - }, - { - "ibge": 5207402, - "name": "Edéia", - "capital": 0, - "ibgeState": 52, - "siafi": 9349, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.3406, - -49.9295 - ] - } - }, - { - "ibge": 1301407, - "name": "Eirunepé", - "capital": 0, - "ibgeState": 13, - "siafi": 229, - "ddd": 97, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -6.65677, - -69.8662 - ] - } - }, - { - "ibge": 5003751, - "name": "Eldorado", - "capital": 0, - "ibgeState": 50, - "siafi": 9173, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -23.7868, - -54.2838 - ] - } - }, - { - "ibge": 3514809, - "name": "Eldorado", - "capital": 0, - "ibgeState": 35, - "siafi": 6397, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.5281, - -48.1141 - ] - } - }, - { - "ibge": 1502954, - "name": "Eldorado do Carajás", - "capital": 0, - "ibgeState": 15, - "siafi": 377, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.10389, - -49.3553 - ] - } - }, - { - "ibge": 4306767, - "name": "Eldorado do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8423, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.0847, - -51.6187 - ] - } - }, - { - "ibge": 2203503, - "name": "Elesbão Veloso", - "capital": 0, - "ibgeState": 22, - "siafi": 1069, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.19947, - -42.1355 - ] - } - }, - { - "ibge": 3514908, - "name": "Elias Fausto", - "capital": 0, - "ibgeState": 35, - "siafi": 6399, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0428, - -47.3682 - ] - } - }, - { - "ibge": 2203602, - "name": "Eliseu Martins", - "capital": 0, - "ibgeState": 22, - "siafi": 1071, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.09629, - -43.6705 - ] - } - }, - { - "ibge": 3514924, - "name": "Elisiário", - "capital": 0, - "ibgeState": 35, - "siafi": 2975, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1678, - -49.1146 - ] - } - }, - { - "ibge": 2910305, - "name": "Elísio Medrado", - "capital": 0, - "ibgeState": 29, - "siafi": 3505, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.9417, - -39.5191 - ] - } - }, - { - "ibge": 3123601, - "name": "Elói Mendes", - "capital": 0, - "ibgeState": 31, - "siafi": 4471, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6088, - -45.5691 - ] - } - }, - { - "ibge": 2505907, - "name": "Emas", - "capital": 0, - "ibgeState": 25, - "siafi": 2019, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.09964, - -37.7163 - ] - } - }, - { - "ibge": 3514957, - "name": "Embaúba", - "capital": 0, - "ibgeState": 35, - "siafi": 7251, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9796, - -48.8325 - ] - } - }, - { - "ibge": 3515004, - "name": "Embu das Artes", - "capital": 0, - "ibgeState": 35, - "siafi": 6401, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6437, - -46.8579 - ] - } - }, - { - "ibge": 3515103, - "name": "Embu-Guaçu", - "capital": 0, - "ibgeState": 35, - "siafi": 6403, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8297, - -46.8136 - ] - } - }, - { - "ibge": 3515129, - "name": "Emilianópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 2961, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8314, - -51.4832 - ] - } - }, - { - "ibge": 4306809, - "name": "Encantado", - "capital": 0, - "ibgeState": 43, - "siafi": 8633, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.2351, - -51.8703 - ] - } - }, - { - "ibge": 2403301, - "name": "Encanto", - "capital": 0, - "ibgeState": 24, - "siafi": 1665, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.10691, - -38.3033 - ] - } - }, - { - "ibge": 2910404, - "name": "Encruzilhada", - "capital": 0, - "ibgeState": 29, - "siafi": 3507, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.5302, - -40.9124 - ] - } - }, - { - "ibge": 4306908, - "name": "Encruzilhada do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8635, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.543, - -52.5204 - ] - } - }, - { - "ibge": 4107405, - "name": "Enéas Marques", - "capital": 0, - "ibgeState": 41, - "siafi": 7545, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.9445, - -53.1659 - ] - } - }, - { - "ibge": 4107504, - "name": "Engenheiro Beltrão", - "capital": 0, - "ibgeState": 41, - "siafi": 7547, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.797, - -52.2659 - ] - } - }, - { - "ibge": 3123700, - "name": "Engenheiro Caldas", - "capital": 0, - "ibgeState": 31, - "siafi": 4473, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2065, - -42.0503 - ] - } - }, - { - "ibge": 3515152, - "name": "Engenheiro Coelho", - "capital": 0, - "ibgeState": 35, - "siafi": 2949, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4836, - -47.211 - ] - } - }, - { - "ibge": 3123809, - "name": "Engenheiro Navarro", - "capital": 0, - "ibgeState": 31, - "siafi": 4475, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.2831, - -43.947 - ] - } - }, - { - "ibge": 3301801, - "name": "Engenheiro Paulo de Frontin", - "capital": 0, - "ibgeState": 33, - "siafi": 5835, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5498, - -43.6827 - ] - } - }, - { - "ibge": 4306924, - "name": "Engenho Velho", - "capital": 0, - "ibgeState": 43, - "siafi": 5947, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.706, - -52.9145 - ] - } - }, - { - "ibge": 3123858, - "name": "Entre Folhas", - "capital": 0, - "ibgeState": 31, - "siafi": 2663, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6218, - -42.2306 - ] - } - }, - { - "ibge": 2910503, - "name": "Entre Rios", - "capital": 0, - "ibgeState": 29, - "siafi": 3509, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.9392, - -38.0871 - ] - } - }, - { - "ibge": 4205175, - "name": "Entre Rios", - "capital": 0, - "ibgeState": 42, - "siafi": 912, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7225, - -52.5585 - ] - } - }, - { - "ibge": 3123908, - "name": "Entre Rios de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4477, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6706, - -44.0654 - ] - } - }, - { - "ibge": 4107538, - "name": "Entre Rios do Oeste", - "capital": 0, - "ibgeState": 41, - "siafi": 5529, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.7042, - -54.2385 - ] - } - }, - { - "ibge": 4306957, - "name": "Entre Rios do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8421, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5298, - -52.7347 - ] - } - }, - { - "ibge": 4306932, - "name": "Entre-Ijuís", - "capital": 0, - "ibgeState": 43, - "siafi": 8419, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3686, - -54.2686 - ] - } - }, - { - "ibge": 1301506, - "name": "Envira", - "capital": 0, - "ibgeState": 13, - "siafi": 231, - "ddd": 97, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -7.43789, - -70.0281 - ] - } - }, - { - "ibge": 1200252, - "name": "Epitaciolândia", - "capital": 0, - "ibgeState": 12, - "siafi": 651, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -11.0188, - -68.7341 - ] - } - }, - { - "ibge": 2403400, - "name": "Equador", - "capital": 0, - "ibgeState": 24, - "siafi": 1667, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.93835, - -36.717 - ] - } - }, - { - "ibge": 4306973, - "name": "Erebango", - "capital": 0, - "ibgeState": 43, - "siafi": 8417, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.8544, - -52.3005 - ] - } - }, - { - "ibge": 4307005, - "name": "Erechim", - "capital": 0, - "ibgeState": 43, - "siafi": 8637, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6364, - -52.2697 - ] - } - }, - { - "ibge": 2304277, - "name": "Ererê", - "capital": 0, - "ibgeState": 23, - "siafi": 1245, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.02751, - -38.3461 - ] - } - }, - { - "ibge": 2900504, - "name": "Érico Cardoso", - "capital": 0, - "ibgeState": 29, - "siafi": 3309, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.4215, - -42.1352 - ] - } - }, - { - "ibge": 4205191, - "name": "Ermo", - "capital": 0, - "ibgeState": 42, - "siafi": 914, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.9869, - -49.643 - ] - } - }, - { - "ibge": 4307054, - "name": "Ernestina", - "capital": 0, - "ibgeState": 43, - "siafi": 8415, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.4977, - -52.5836 - ] - } - }, - { - "ibge": 4307203, - "name": "Erval Grande", - "capital": 0, - "ibgeState": 43, - "siafi": 8641, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3926, - -52.574 - ] - } - }, - { - "ibge": 4307302, - "name": "Erval Seco", - "capital": 0, - "ibgeState": 43, - "siafi": 8643, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5443, - -53.5005 - ] - } - }, - { - "ibge": 4205209, - "name": "Erval Velho", - "capital": 0, - "ibgeState": 42, - "siafi": 8101, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2743, - -51.443 - ] - } - }, - { - "ibge": 3124005, - "name": "Ervália", - "capital": 0, - "ibgeState": 31, - "siafi": 4479, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8403, - -42.6544 - ] - } - }, - { - "ibge": 2605202, - "name": "Escada", - "capital": 0, - "ibgeState": 26, - "siafi": 2403, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.35672, - -35.2241 - ] - } - }, - { - "ibge": 4307401, - "name": "Esmeralda", - "capital": 0, - "ibgeState": 43, - "siafi": 8645, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.0518, - -51.1933 - ] - } - }, - { - "ibge": 3124104, - "name": "Esmeraldas", - "capital": 0, - "ibgeState": 31, - "siafi": 4481, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.764, - -44.3065 - ] - } - }, - { - "ibge": 3124203, - "name": "Espera Feliz", - "capital": 0, - "ibgeState": 31, - "siafi": 4483, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6508, - -41.9119 - ] - } - }, - { - "ibge": 2506004, - "name": "Esperança", - "capital": 0, - "ibgeState": 25, - "siafi": 2021, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.02278, - -35.8597 - ] - } - }, - { - "ibge": 4307450, - "name": "Esperança do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 980, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3603, - -53.9891 - ] - } - }, - { - "ibge": 4107520, - "name": "Esperança Nova", - "capital": 0, - "ibgeState": 41, - "siafi": 850, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7238, - -53.811 - ] - } - }, - { - "ibge": 1707405, - "name": "Esperantina", - "capital": 0, - "ibgeState": 17, - "siafi": 181, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.36593, - -48.5378 - ] - } - }, - { - "ibge": 2203701, - "name": "Esperantina", - "capital": 0, - "ibgeState": 22, - "siafi": 1073, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.88863, - -42.2324 - ] - } - }, - { - "ibge": 2104008, - "name": "Esperantinópolis", - "capital": 0, - "ibgeState": 21, - "siafi": 777, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.87938, - -44.6926 - ] - } - }, - { - "ibge": 4107546, - "name": "Espigão Alto do Iguaçu", - "capital": 0, - "ibgeState": 41, - "siafi": 852, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4216, - -52.8348 - ] - } - }, - { - "ibge": 1100098, - "name": "Espigão D'Oeste", - "capital": 0, - "ibgeState": 11, - "siafi": 25, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.5266, - -61.0252 - ] - } - }, - { - "ibge": 3124302, - "name": "Espinosa", - "capital": 0, - "ibgeState": 31, - "siafi": 4485, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.9249, - -42.809 - ] - } - }, - { - "ibge": 2403509, - "name": "Espírito Santo", - "capital": 0, - "ibgeState": 24, - "siafi": 1669, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.33563, - -35.3052 - ] - } - }, - { - "ibge": 3124401, - "name": "Espírito Santo do Dourado", - "capital": 0, - "ibgeState": 31, - "siafi": 4487, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0454, - -45.9548 - ] - } - }, - { - "ibge": 3515186, - "name": "Espírito Santo do Pinhal", - "capital": 0, - "ibgeState": 35, - "siafi": 6865, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1909, - -46.7477 - ] - } - }, - { - "ibge": 3515194, - "name": "Espírito Santo do Turvo", - "capital": 0, - "ibgeState": 35, - "siafi": 7253, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6925, - -49.4341 - ] - } - }, - { - "ibge": 2910602, - "name": "Esplanada", - "capital": 0, - "ibgeState": 29, - "siafi": 3511, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.7942, - -37.9432 - ] - } - }, - { - "ibge": 4307500, - "name": "Espumoso", - "capital": 0, - "ibgeState": 43, - "siafi": 8647, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.7286, - -52.8461 - ] - } - }, - { - "ibge": 4307559, - "name": "Estação", - "capital": 0, - "ibgeState": 43, - "siafi": 7301, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9135, - -52.2635 - ] - } - }, - { - "ibge": 2802106, - "name": "Estância", - "capital": 0, - "ibgeState": 28, - "siafi": 3141, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.2659, - -37.4484 - ] - } - }, - { - "ibge": 4307609, - "name": "Estância Velha", - "capital": 0, - "ibgeState": 43, - "siafi": 8649, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6535, - -51.1843 - ] - } - }, - { - "ibge": 4307708, - "name": "Esteio", - "capital": 0, - "ibgeState": 43, - "siafi": 8651, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.852, - -51.1841 - ] - } - }, - { - "ibge": 3124500, - "name": "Estiva", - "capital": 0, - "ibgeState": 31, - "siafi": 4489, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4577, - -46.0191 - ] - } - }, - { - "ibge": 3557303, - "name": "Estiva Gerbi", - "capital": 0, - "ibgeState": 35, - "siafi": 2959, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2713, - -46.9481 - ] - } - }, - { - "ibge": 2104057, - "name": "Estreito", - "capital": 0, - "ibgeState": 21, - "siafi": 963, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.56077, - -47.4431 - ] - } - }, - { - "ibge": 4307807, - "name": "Estrela", - "capital": 0, - "ibgeState": 43, - "siafi": 8653, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5002, - -51.9495 - ] - } - }, - { - "ibge": 3515202, - "name": "Estrela d'Oeste", - "capital": 0, - "ibgeState": 35, - "siafi": 6405, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2875, - -50.4049 - ] - } - }, - { - "ibge": 3124609, - "name": "Estrela Dalva", - "capital": 0, - "ibgeState": 31, - "siafi": 4491, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7412, - -42.4574 - ] - } - }, - { - "ibge": 2702553, - "name": "Estrela de Alagoas", - "capital": 0, - "ibgeState": 27, - "siafi": 2643, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.39089, - -36.7644 - ] - } - }, - { - "ibge": 3124708, - "name": "Estrela do Indaiá", - "capital": 0, - "ibgeState": 31, - "siafi": 4493, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5169, - -45.7859 - ] - } - }, - { - "ibge": 5207501, - "name": "Estrela do Norte", - "capital": 0, - "ibgeState": 52, - "siafi": 9351, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.8665, - -49.0716 - ] - } - }, - { - "ibge": 3515301, - "name": "Estrela do Norte", - "capital": 0, - "ibgeState": 35, - "siafi": 6407, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4859, - -51.6632 - ] - } - }, - { - "ibge": 3124807, - "name": "Estrela do Sul", - "capital": 0, - "ibgeState": 31, - "siafi": 4495, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7399, - -47.6956 - ] - } - }, - { - "ibge": 4307815, - "name": "Estrela Velha", - "capital": 0, - "ibgeState": 43, - "siafi": 982, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.1713, - -53.1639 - ] - } - }, - { - "ibge": 2910701, - "name": "Euclides da Cunha", - "capital": 0, - "ibgeState": 29, - "siafi": 3513, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.5078, - -39.0153 - ] - } - }, - { - "ibge": 3515350, - "name": "Euclides da Cunha Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 7255, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5545, - -52.5928 - ] - } - }, - { - "ibge": 4307831, - "name": "Eugênio de Castro", - "capital": 0, - "ibgeState": 43, - "siafi": 8413, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5315, - -54.1506 - ] - } - }, - { - "ibge": 3124906, - "name": "Eugenópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 4497, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1002, - -42.1878 - ] - } - }, - { - "ibge": 2910727, - "name": "Eunápolis", - "capital": 0, - "ibgeState": 29, - "siafi": 3117, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.3715, - -39.5821 - ] - } - }, - { - "ibge": 2304285, - "name": "Eusébio", - "capital": 0, - "ibgeState": 23, - "siafi": 1247, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.8925, - -38.4559 - ] - } - }, - { - "ibge": 3125002, - "name": "Ewbank da Câmara", - "capital": 0, - "ibgeState": 31, - "siafi": 4499, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5498, - -43.5068 - ] - } - }, - { - "ibge": 3125101, - "name": "Extrema", - "capital": 0, - "ibgeState": 31, - "siafi": 4501, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.854, - -46.3178 - ] - } - }, - { - "ibge": 2403608, - "name": "Extremoz", - "capital": 0, - "ibgeState": 24, - "siafi": 1671, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.70143, - -35.3048 - ] - } - }, - { - "ibge": 2605301, - "name": "Exu", - "capital": 0, - "ibgeState": 26, - "siafi": 2405, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.50364, - -39.7238 - ] - } - }, - { - "ibge": 2506103, - "name": "Fagundes", - "capital": 0, - "ibgeState": 25, - "siafi": 2023, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.34454, - -35.7931 - ] - } - }, - { - "ibge": 4307864, - "name": "Fagundes Varela", - "capital": 0, - "ibgeState": 43, - "siafi": 8411, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.8794, - -51.7014 - ] - } - }, - { - "ibge": 5207535, - "name": "Faina", - "capital": 0, - "ibgeState": 52, - "siafi": 9797, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.4473, - -50.3622 - ] - } - }, - { - "ibge": 3125200, - "name": "Fama", - "capital": 0, - "ibgeState": 31, - "siafi": 4503, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4089, - -45.8286 - ] - } - }, - { - "ibge": 3125309, - "name": "Faria Lemos", - "capital": 0, - "ibgeState": 31, - "siafi": 4505, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8097, - -42.0213 - ] - } - }, - { - "ibge": 2304301, - "name": "Farias Brito", - "capital": 0, - "ibgeState": 23, - "siafi": 1387, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.92146, - -39.5651 - ] - } - }, - { - "ibge": 1503002, - "name": "Faro", - "capital": 0, - "ibgeState": 15, - "siafi": 459, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.16805, - -56.7405 - ] - } - }, - { - "ibge": 4107553, - "name": "Farol", - "capital": 0, - "ibgeState": 41, - "siafi": 5511, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.0958, - -52.6217 - ] - } - }, - { - "ibge": 4307906, - "name": "Farroupilha", - "capital": 0, - "ibgeState": 43, - "siafi": 8655, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.2227, - -51.3419 - ] - } - }, - { - "ibge": 3515400, - "name": "Fartura", - "capital": 0, - "ibgeState": 35, - "siafi": 6409, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3916, - -49.5124 - ] - } - }, - { - "ibge": 2203750, - "name": "Fartura do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 2257, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.48342, - -42.7912 - ] - } - }, - { - "ibge": 1707553, - "name": "Fátima", - "capital": 0, - "ibgeState": 17, - "siafi": 9683, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7603, - -48.9076 - ] - } - }, - { - "ibge": 2910750, - "name": "Fátima", - "capital": 0, - "ibgeState": 29, - "siafi": 3089, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.616, - -38.2239 - ] - } - }, - { - "ibge": 5003801, - "name": "Fátima do Sul", - "capital": 0, - "ibgeState": 50, - "siafi": 9075, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.3789, - -54.5131 - ] - } - }, - { - "ibge": 4107603, - "name": "Faxinal", - "capital": 0, - "ibgeState": 41, - "siafi": 7549, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.0077, - -51.3227 - ] - } - }, - { - "ibge": 4308003, - "name": "Faxinal do Soturno", - "capital": 0, - "ibgeState": 43, - "siafi": 8657, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5788, - -53.4484 - ] - } - }, - { - "ibge": 4205308, - "name": "Faxinal dos Guedes", - "capital": 0, - "ibgeState": 42, - "siafi": 8103, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.8451, - -52.2596 - ] - } - }, - { - "ibge": 4308052, - "name": "Faxinalzinho", - "capital": 0, - "ibgeState": 43, - "siafi": 8409, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4238, - -52.6789 - ] - } - }, - { - "ibge": 5207600, - "name": "Fazenda Nova", - "capital": 0, - "ibgeState": 52, - "siafi": 9353, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.1834, - -50.7781 - ] - } - }, - { - "ibge": 4107652, - "name": "Fazenda Rio Grande", - "capital": 0, - "ibgeState": 41, - "siafi": 9983, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.6624, - -49.3073 - ] - } - }, - { - "ibge": 4308078, - "name": "Fazenda Vilanova", - "capital": 0, - "ibgeState": 43, - "siafi": 984, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5885, - -51.8217 - ] - } - }, - { - "ibge": 1200302, - "name": "Feijó", - "capital": 0, - "ibgeState": 12, - "siafi": 113, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -8.17054, - -70.351 - ] - } - }, - { - "ibge": 2910776, - "name": "Feira da Mata", - "capital": 0, - "ibgeState": 29, - "siafi": 3275, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.2044, - -44.2744 - ] - } - }, - { - "ibge": 2910800, - "name": "Feira de Santana", - "capital": 0, - "ibgeState": 29, - "siafi": 3515, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.2664, - -38.9663 - ] - } - }, - { - "ibge": 2702603, - "name": "Feira Grande", - "capital": 0, - "ibgeState": 27, - "siafi": 2751, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.89859, - -36.6815 - ] - } - }, - { - "ibge": 2605400, - "name": "Feira Nova", - "capital": 0, - "ibgeState": 26, - "siafi": 2407, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.94704, - -35.3801 - ] - } - }, - { - "ibge": 2802205, - "name": "Feira Nova", - "capital": 0, - "ibgeState": 28, - "siafi": 3143, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.2616, - -37.3147 - ] - } - }, - { - "ibge": 2104073, - "name": "Feira Nova do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 156, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.96508, - -46.6786 - ] - } - }, - { - "ibge": 3125408, - "name": "Felício dos Santos", - "capital": 0, - "ibgeState": 31, - "siafi": 4507, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.0755, - -43.2422 - ] - } - }, - { - "ibge": 2403707, - "name": "Felipe Guerra", - "capital": 0, - "ibgeState": 24, - "siafi": 1673, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.59274, - -37.6875 - ] - } - }, - { - "ibge": 3125606, - "name": "Felisburgo", - "capital": 0, - "ibgeState": 31, - "siafi": 4511, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.6348, - -40.7605 - ] - } - }, - { - "ibge": 3125705, - "name": "Felixlândia", - "capital": 0, - "ibgeState": 31, - "siafi": 4513, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7507, - -44.9004 - ] - } - }, - { - "ibge": 4308102, - "name": "Feliz", - "capital": 0, - "ibgeState": 43, - "siafi": 8659, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4527, - -51.3032 - ] - } - }, - { - "ibge": 2702702, - "name": "Feliz Deserto", - "capital": 0, - "ibgeState": 27, - "siafi": 2753, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.2935, - -36.3028 - ] - } - }, - { - "ibge": 5103700, - "name": "Feliz Natal", - "capital": 0, - "ibgeState": 51, - "siafi": 1036, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.385, - -54.9227 - ] - } - }, - { - "ibge": 4107702, - "name": "Fênix", - "capital": 0, - "ibgeState": 41, - "siafi": 7551, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.9135, - -51.9805 - ] - } - }, - { - "ibge": 4107736, - "name": "Fernandes Pinheiro", - "capital": 0, - "ibgeState": 41, - "siafi": 854, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4107, - -50.5456 - ] - } - }, - { - "ibge": 3125804, - "name": "Fernandes Tourinho", - "capital": 0, - "ibgeState": 31, - "siafi": 4515, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.1541, - -42.0803 - ] - } - }, - { - "ibge": 2605459, - "name": "Fernando de Noronha", - "capital": 0, - "ibgeState": 26, - "siafi": 3001, - "ddd": 81, - "timeZone": "America/Noronha", - "location": { - "type": "Point", - "coordinates": [ - -3.8396, - -32.4107 - ] - } - }, - { - "ibge": 2104081, - "name": "Fernando Falcão", - "capital": 0, - "ibgeState": 21, - "siafi": 158, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.16207, - -44.8979 - ] - } - }, - { - "ibge": 2403756, - "name": "Fernando Pedroza", - "capital": 0, - "ibgeState": 24, - "siafi": 416, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.69096, - -36.5282 - ] - } - }, - { - "ibge": 3515608, - "name": "Fernando Prestes", - "capital": 0, - "ibgeState": 35, - "siafi": 6413, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2661, - -48.6874 - ] - } - }, - { - "ibge": 3515509, - "name": "Fernandópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6411, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2806, - -50.2471 - ] - } - }, - { - "ibge": 3515657, - "name": "Fernão", - "capital": 0, - "ibgeState": 35, - "siafi": 796, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3607, - -49.5187 - ] - } - }, - { - "ibge": 3515707, - "name": "Ferraz de Vasconcelos", - "capital": 0, - "ibgeState": 35, - "siafi": 6415, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5411, - -46.371 - ] - } - }, - { - "ibge": 1600238, - "name": "Ferreira Gomes", - "capital": 0, - "ibgeState": 16, - "siafi": 611, - "ddd": 96, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - 0.857256, - -51.1795 - ] - } - }, - { - "ibge": 2605509, - "name": "Ferreiros", - "capital": 0, - "ibgeState": 26, - "siafi": 2409, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.44666, - -35.2373 - ] - } - }, - { - "ibge": 3125903, - "name": "Ferros", - "capital": 0, - "ibgeState": 31, - "siafi": 4517, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2343, - -43.0192 - ] - } - }, - { - "ibge": 3125952, - "name": "Fervedouro", - "capital": 0, - "ibgeState": 31, - "siafi": 2683, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.726, - -42.279 - ] - } - }, - { - "ibge": 4107751, - "name": "Figueira", - "capital": 0, - "ibgeState": 41, - "siafi": 8457, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8455, - -50.4031 - ] - } - }, - { - "ibge": 5003900, - "name": "Figueirão", - "capital": 0, - "ibgeState": 50, - "siafi": 1178, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -18.6782, - -53.638 - ] - } - }, - { - "ibge": 1707652, - "name": "Figueirópolis", - "capital": 0, - "ibgeState": 17, - "siafi": 9667, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.1312, - -49.1748 - ] - } - }, - { - "ibge": 5103809, - "name": "Figueirópolis D'Oeste", - "capital": 0, - "ibgeState": 51, - "siafi": 9881, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.4439, - -58.7391 - ] - } - }, - { - "ibge": 1707702, - "name": "Filadélfia", - "capital": 0, - "ibgeState": 17, - "siafi": 9355, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.33501, - -47.4954 - ] - } - }, - { - "ibge": 2910859, - "name": "Filadélfia", - "capital": 0, - "ibgeState": 29, - "siafi": 3091, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7405, - -40.1437 - ] - } - }, - { - "ibge": 2910909, - "name": "Firmino Alves", - "capital": 0, - "ibgeState": 29, - "siafi": 3517, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.9823, - -39.9269 - ] - } - }, - { - "ibge": 5207808, - "name": "Firminópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9357, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.5778, - -50.304 - ] - } - }, - { - "ibge": 2702801, - "name": "Flexeiras", - "capital": 0, - "ibgeState": 27, - "siafi": 2755, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.27281, - -35.7139 - ] - } - }, - { - "ibge": 4107850, - "name": "Flor da Serra do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 5475, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.2523, - -53.3092 - ] - } - }, - { - "ibge": 4205357, - "name": "Flor do Sertão", - "capital": 0, - "ibgeState": 42, - "siafi": 916, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7811, - -53.3505 - ] - } - }, - { - "ibge": 3515806, - "name": "Flora Rica", - "capital": 0, - "ibgeState": 35, - "siafi": 6417, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6727, - -51.3821 - ] - } - }, - { - "ibge": 4107801, - "name": "Floraí", - "capital": 0, - "ibgeState": 41, - "siafi": 7553, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3178, - -52.3029 - ] - } - }, - { - "ibge": 2403806, - "name": "Florânia", - "capital": 0, - "ibgeState": 24, - "siafi": 1675, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.12264, - -36.8226 - ] - } - }, - { - "ibge": 3515905, - "name": "Floreal", - "capital": 0, - "ibgeState": 35, - "siafi": 6419, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6752, - -50.1513 - ] - } - }, - { - "ibge": 2605608, - "name": "Flores", - "capital": 0, - "ibgeState": 26, - "siafi": 2411, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.85842, - -37.9715 - ] - } - }, - { - "ibge": 4308201, - "name": "Flores da Cunha", - "capital": 0, - "ibgeState": 43, - "siafi": 8661, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.0261, - -51.1875 - ] - } - }, - { - "ibge": 5207907, - "name": "Flores de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9359, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.4451, - -47.0417 - ] - } - }, - { - "ibge": 2203800, - "name": "Flores do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1075, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.78793, - -42.918 - ] - } - }, - { - "ibge": 4107900, - "name": "Floresta", - "capital": 0, - "ibgeState": 41, - "siafi": 7555, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6031, - -52.0807 - ] - } - }, - { - "ibge": 2605707, - "name": "Floresta", - "capital": 0, - "ibgeState": 26, - "siafi": 2413, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.60307, - -38.5687 - ] - } - }, - { - "ibge": 2911006, - "name": "Floresta Azul", - "capital": 0, - "ibgeState": 29, - "siafi": 3519, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.8629, - -39.6579 - ] - } - }, - { - "ibge": 1503044, - "name": "Floresta do Araguaia", - "capital": 0, - "ibgeState": 15, - "siafi": 52, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.55335, - -49.7125 - ] - } - }, - { - "ibge": 2203859, - "name": "Floresta do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 314, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.46682, - -41.7883 - ] - } - }, - { - "ibge": 3126000, - "name": "Florestal", - "capital": 0, - "ibgeState": 31, - "siafi": 4519, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.888, - -44.4318 - ] - } - }, - { - "ibge": 4108007, - "name": "Florestópolis", - "capital": 0, - "ibgeState": 41, - "siafi": 7557, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8623, - -51.3882 - ] - } - }, - { - "ibge": 2203909, - "name": "Floriano", - "capital": 0, - "ibgeState": 22, - "siafi": 1077, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.77182, - -43.0241 - ] - } - }, - { - "ibge": 4308250, - "name": "Floriano Peixoto", - "capital": 0, - "ibgeState": 43, - "siafi": 986, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.8614, - -52.0838 - ] - } - }, - { - "ibge": 4205407, - "name": "Florianópolis", - "capital": 1, - "ibgeState": 42, - "siafi": 8105, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5945, - -48.5477 - ] - } - }, - { - "ibge": 4108106, - "name": "Flórida", - "capital": 0, - "ibgeState": 41, - "siafi": 7559, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0847, - -51.9546 - ] - } - }, - { - "ibge": 3516002, - "name": "Flórida Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 6421, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6127, - -51.1724 - ] - } - }, - { - "ibge": 3516101, - "name": "Florínia", - "capital": 0, - "ibgeState": 35, - "siafi": 6423, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.868, - -50.6814 - ] - } - }, - { - "ibge": 1301605, - "name": "Fonte Boa", - "capital": 0, - "ibgeState": 13, - "siafi": 233, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -2.52342, - -66.0942 - ] - } - }, - { - "ibge": 4308300, - "name": "Fontoura Xavier", - "capital": 0, - "ibgeState": 43, - "siafi": 8663, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.9817, - -52.3445 - ] - } - }, - { - "ibge": 3126109, - "name": "Formiga", - "capital": 0, - "ibgeState": 31, - "siafi": 4521, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4618, - -45.4268 - ] - } - }, - { - "ibge": 4308409, - "name": "Formigueiro", - "capital": 0, - "ibgeState": 43, - "siafi": 8665, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.0035, - -53.4959 - ] - } - }, - { - "ibge": 5208004, - "name": "Formosa", - "capital": 0, - "ibgeState": 52, - "siafi": 9361, - "ddd": 61, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.54, - -47.337 - ] - } - }, - { - "ibge": 2104099, - "name": "Formosa da Serra Negra", - "capital": 0, - "ibgeState": 21, - "siafi": 160, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.44017, - -46.1916 - ] - } - }, - { - "ibge": 4108205, - "name": "Formosa do Oeste", - "capital": 0, - "ibgeState": 41, - "siafi": 7561, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.2951, - -53.3114 - ] - } - }, - { - "ibge": 2911105, - "name": "Formosa do Rio Preto", - "capital": 0, - "ibgeState": 29, - "siafi": 3521, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.0328, - -45.193 - ] - } - }, - { - "ibge": 4205431, - "name": "Formosa do Sul", - "capital": 0, - "ibgeState": 42, - "siafi": 5581, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.6453, - -52.7946 - ] - } - }, - { - "ibge": 5208103, - "name": "Formoso", - "capital": 0, - "ibgeState": 52, - "siafi": 9363, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.6499, - -48.8775 - ] - } - }, - { - "ibge": 3126208, - "name": "Formoso", - "capital": 0, - "ibgeState": 31, - "siafi": 4523, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.9446, - -46.2371 - ] - } - }, - { - "ibge": 1708205, - "name": "Formoso do Araguaia", - "capital": 0, - "ibgeState": 17, - "siafi": 9365, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.7976, - -49.5316 - ] - } - }, - { - "ibge": 4308433, - "name": "Forquetinha", - "capital": 0, - "ibgeState": 43, - "siafi": 1142, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3828, - -52.0981 - ] - } - }, - { - "ibge": 2304350, - "name": "Forquilha", - "capital": 0, - "ibgeState": 23, - "siafi": 1591, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.79945, - -40.2634 - ] - } - }, - { - "ibge": 4205456, - "name": "Forquilhinha", - "capital": 0, - "ibgeState": 42, - "siafi": 973, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.7454, - -49.4785 - ] - } - }, - { - "ibge": 2304400, - "name": "Fortaleza", - "capital": 1, - "ibgeState": 23, - "siafi": 1389, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.71664, - -38.5423 - ] - } - }, - { - "ibge": 3126307, - "name": "Fortaleza de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4525, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8508, - -46.712 - ] - } - }, - { - "ibge": 1708254, - "name": "Fortaleza do Tabocão", - "capital": 0, - "ibgeState": 17, - "siafi": 345, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.05611, - -48.5206 - ] - } - }, - { - "ibge": 2104107, - "name": "Fortaleza dos Nogueiras", - "capital": 0, - "ibgeState": 21, - "siafi": 779, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.95983, - -46.1749 - ] - } - }, - { - "ibge": 4308458, - "name": "Fortaleza dos Valos", - "capital": 0, - "ibgeState": 43, - "siafi": 9827, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.7986, - -53.2249 - ] - } - }, - { - "ibge": 2304459, - "name": "Fortim", - "capital": 0, - "ibgeState": 23, - "siafi": 987, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.45126, - -37.7981 - ] - } - }, - { - "ibge": 2104206, - "name": "Fortuna", - "capital": 0, - "ibgeState": 21, - "siafi": 781, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.72792, - -44.1565 - ] - } - }, - { - "ibge": 3126406, - "name": "Fortuna de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4527, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5578, - -44.4472 - ] - } - }, - { - "ibge": 4108304, - "name": "Foz do Iguaçu", - "capital": 0, - "ibgeState": 41, - "siafi": 7563, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.5427, - -54.5827 - ] - } - }, - { - "ibge": 4108452, - "name": "Foz do Jordão", - "capital": 0, - "ibgeState": 41, - "siafi": 856, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.7371, - -52.1188 - ] - } - }, - { - "ibge": 4205506, - "name": "Fraiburgo", - "capital": 0, - "ibgeState": 42, - "siafi": 8107, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0233, - -50.92 - ] - } - }, - { - "ibge": 3516200, - "name": "Franca", - "capital": 0, - "ibgeState": 35, - "siafi": 6425, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5352, - -47.4039 - ] - } - }, - { - "ibge": 2204006, - "name": "Francinópolis", - "capital": 0, - "ibgeState": 22, - "siafi": 1079, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.39334, - -42.2591 - ] - } - }, - { - "ibge": 4108320, - "name": "Francisco Alves", - "capital": 0, - "ibgeState": 41, - "siafi": 7977, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.0667, - -53.8461 - ] - } - }, - { - "ibge": 2204105, - "name": "Francisco Ayres", - "capital": 0, - "ibgeState": 22, - "siafi": 1081, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.62606, - -42.6881 - ] - } - }, - { - "ibge": 3126505, - "name": "Francisco Badaró", - "capital": 0, - "ibgeState": 31, - "siafi": 4529, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.9883, - -42.3568 - ] - } - }, - { - "ibge": 4108403, - "name": "Francisco Beltrão", - "capital": 0, - "ibgeState": 41, - "siafi": 7565, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.0817, - -53.0535 - ] - } - }, - { - "ibge": 2403905, - "name": "Francisco Dantas", - "capital": 0, - "ibgeState": 24, - "siafi": 1677, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.07234, - -38.1212 - ] - } - }, - { - "ibge": 3126604, - "name": "Francisco Dumont", - "capital": 0, - "ibgeState": 31, - "siafi": 4531, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.3107, - -44.2317 - ] - } - }, - { - "ibge": 2204154, - "name": "Francisco Macedo", - "capital": 0, - "ibgeState": 22, - "siafi": 316, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.331, - -40.788 - ] - } - }, - { - "ibge": 3516309, - "name": "Francisco Morato", - "capital": 0, - "ibgeState": 35, - "siafi": 6427, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2792, - -46.7448 - ] - } - }, - { - "ibge": 3126703, - "name": "Francisco Sá", - "capital": 0, - "ibgeState": 31, - "siafi": 4533, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.4827, - -43.4896 - ] - } - }, - { - "ibge": 2204204, - "name": "Francisco Santos", - "capital": 0, - "ibgeState": 22, - "siafi": 1083, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.99491, - -41.1288 - ] - } - }, - { - "ibge": 3126752, - "name": "Franciscópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 608, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.9578, - -42.0094 - ] - } - }, - { - "ibge": 3516408, - "name": "Franco da Rocha", - "capital": 0, - "ibgeState": 35, - "siafi": 6429, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3229, - -46.729 - ] - } - }, - { - "ibge": 2304509, - "name": "Frecheirinha", - "capital": 0, - "ibgeState": 23, - "siafi": 1391, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.75557, - -40.818 - ] - } - }, - { - "ibge": 4308508, - "name": "Frederico Westphalen", - "capital": 0, - "ibgeState": 43, - "siafi": 8667, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3586, - -53.3958 - ] - } - }, - { - "ibge": 3126802, - "name": "Frei Gaspar", - "capital": 0, - "ibgeState": 31, - "siafi": 4535, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.0709, - -41.4325 - ] - } - }, - { - "ibge": 3126901, - "name": "Frei Inocêncio", - "capital": 0, - "ibgeState": 31, - "siafi": 4537, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5556, - -41.9121 - ] - } - }, - { - "ibge": 3126950, - "name": "Frei Lagonegro", - "capital": 0, - "ibgeState": 31, - "siafi": 610, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.1751, - -42.7617 - ] - } - }, - { - "ibge": 2506202, - "name": "Frei Martinho", - "capital": 0, - "ibgeState": 25, - "siafi": 2025, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.39759, - -36.4526 - ] - } - }, - { - "ibge": 2605806, - "name": "Frei Miguelinho", - "capital": 0, - "ibgeState": 26, - "siafi": 2415, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.93918, - -35.9113 - ] - } - }, - { - "ibge": 2802304, - "name": "Frei Paulo", - "capital": 0, - "ibgeState": 28, - "siafi": 3145, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.5513, - -37.5279 - ] - } - }, - { - "ibge": 4205555, - "name": "Frei Rogério", - "capital": 0, - "ibgeState": 42, - "siafi": 918, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.175, - -50.8076 - ] - } - }, - { - "ibge": 3127008, - "name": "Fronteira", - "capital": 0, - "ibgeState": 31, - "siafi": 4539, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2748, - -49.1984 - ] - } - }, - { - "ibge": 3127057, - "name": "Fronteira dos Vales", - "capital": 0, - "ibgeState": 31, - "siafi": 4935, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.8898, - -40.923 - ] - } - }, - { - "ibge": 2204303, - "name": "Fronteiras", - "capital": 0, - "ibgeState": 22, - "siafi": 1085, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.08173, - -40.6146 - ] - } - }, - { - "ibge": 3127073, - "name": "Fruta de Leite", - "capital": 0, - "ibgeState": 31, - "siafi": 612, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.1225, - -42.5288 - ] - } - }, - { - "ibge": 3127107, - "name": "Frutal", - "capital": 0, - "ibgeState": 31, - "siafi": 4541, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0259, - -48.9355 - ] - } - }, - { - "ibge": 2404002, - "name": "Frutuoso Gomes", - "capital": 0, - "ibgeState": 24, - "siafi": 1751, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.15669, - -37.8375 - ] - } - }, - { - "ibge": 3202207, - "name": "Fundão", - "capital": 0, - "ibgeState": 32, - "siafi": 5643, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.937, - -40.4078 - ] - } - }, - { - "ibge": 3127206, - "name": "Funilândia", - "capital": 0, - "ibgeState": 31, - "siafi": 4543, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.3661, - -44.061 - ] - } - }, - { - "ibge": 3516507, - "name": "Gabriel Monteiro", - "capital": 0, - "ibgeState": 35, - "siafi": 6431, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5294, - -50.5573 - ] - } - }, - { - "ibge": 2506251, - "name": "Gado Bravo", - "capital": 0, - "ibgeState": 25, - "siafi": 480, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.58279, - -35.7899 - ] - } - }, - { - "ibge": 3516606, - "name": "Gália", - "capital": 0, - "ibgeState": 35, - "siafi": 6433, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2918, - -49.5504 - ] - } - }, - { - "ibge": 3127305, - "name": "Galiléia", - "capital": 0, - "ibgeState": 31, - "siafi": 4545, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.0005, - -41.5387 - ] - } - }, - { - "ibge": 2404101, - "name": "Galinhos", - "capital": 0, - "ibgeState": 24, - "siafi": 1679, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.0909, - -36.2754 - ] - } - }, - { - "ibge": 4205605, - "name": "Galvão", - "capital": 0, - "ibgeState": 42, - "siafi": 8109, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.4549, - -52.6875 - ] - } - }, - { - "ibge": 2605905, - "name": "Gameleira", - "capital": 0, - "ibgeState": 26, - "siafi": 2417, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.5798, - -35.3846 - ] - } - }, - { - "ibge": 5208152, - "name": "Gameleira de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 1072, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.4854, - -48.6454 - ] - } - }, - { - "ibge": 3127339, - "name": "Gameleiras", - "capital": 0, - "ibgeState": 31, - "siafi": 614, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.0829, - -43.125 - ] - } - }, - { - "ibge": 2911204, - "name": "Gandu", - "capital": 0, - "ibgeState": 29, - "siafi": 3523, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.7441, - -39.4747 - ] - } - }, - { - "ibge": 2606002, - "name": "Garanhuns", - "capital": 0, - "ibgeState": 26, - "siafi": 2419, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.88243, - -36.4966 - ] - } - }, - { - "ibge": 2802403, - "name": "Gararu", - "capital": 0, - "ibgeState": 28, - "siafi": 3149, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.9722, - -37.0869 - ] - } - }, - { - "ibge": 3516705, - "name": "Garça", - "capital": 0, - "ibgeState": 35, - "siafi": 6435, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2125, - -49.6546 - ] - } - }, - { - "ibge": 4308607, - "name": "Garibaldi", - "capital": 0, - "ibgeState": 43, - "siafi": 8669, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.259, - -51.5352 - ] - } - }, - { - "ibge": 4205704, - "name": "Garopaba", - "capital": 0, - "ibgeState": 42, - "siafi": 8113, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.0275, - -48.6192 - ] - } - }, - { - "ibge": 1503077, - "name": "Garrafão do Norte", - "capital": 0, - "ibgeState": 15, - "siafi": 585, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.92986, - -47.0505 - ] - } - }, - { - "ibge": 4308656, - "name": "Garruchos", - "capital": 0, - "ibgeState": 43, - "siafi": 6081, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.1944, - -55.6383 - ] - } - }, - { - "ibge": 4205803, - "name": "Garuva", - "capital": 0, - "ibgeState": 42, - "siafi": 8115, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.0292, - -48.852 - ] - } - }, - { - "ibge": 4205902, - "name": "Gaspar", - "capital": 0, - "ibgeState": 42, - "siafi": 8117, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9336, - -48.9534 - ] - } - }, - { - "ibge": 3516804, - "name": "Gastão Vidigal", - "capital": 0, - "ibgeState": 35, - "siafi": 6437, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7948, - -50.1912 - ] - } - }, - { - "ibge": 5103858, - "name": "Gaúcha do Norte", - "capital": 0, - "ibgeState": 51, - "siafi": 1038, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -13.2443, - -53.0809 - ] - } - }, - { - "ibge": 4308706, - "name": "Gaurama", - "capital": 0, - "ibgeState": 43, - "siafi": 8671, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5856, - -52.0915 - ] - } - }, - { - "ibge": 2911253, - "name": "Gavião", - "capital": 0, - "ibgeState": 29, - "siafi": 3093, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.4688, - -39.7757 - ] - } - }, - { - "ibge": 3516853, - "name": "Gavião Peixoto", - "capital": 0, - "ibgeState": 35, - "siafi": 798, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8367, - -48.4957 - ] - } - }, - { - "ibge": 2204352, - "name": "Geminiano", - "capital": 0, - "ibgeState": 22, - "siafi": 318, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.15476, - -41.3409 - ] - } - }, - { - "ibge": 4308805, - "name": "General Câmara", - "capital": 0, - "ibgeState": 43, - "siafi": 8673, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.9032, - -51.7612 - ] - } - }, - { - "ibge": 5103908, - "name": "General Carneiro", - "capital": 0, - "ibgeState": 51, - "siafi": 9077, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.7094, - -52.7574 - ] - } - }, - { - "ibge": 4108502, - "name": "General Carneiro", - "capital": 0, - "ibgeState": 41, - "siafi": 7567, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.425, - -51.3172 - ] - } - }, - { - "ibge": 2802502, - "name": "General Maynard", - "capital": 0, - "ibgeState": 28, - "siafi": 3147, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.6835, - -36.9838 - ] - } - }, - { - "ibge": 3516903, - "name": "General Salgado", - "capital": 0, - "ibgeState": 35, - "siafi": 6439, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6485, - -50.364 - ] - } - }, - { - "ibge": 2304608, - "name": "General Sampaio", - "capital": 0, - "ibgeState": 23, - "siafi": 1393, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.04351, - -39.454 - ] - } - }, - { - "ibge": 4308854, - "name": "Gentil", - "capital": 0, - "ibgeState": 43, - "siafi": 5799, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.4316, - -52.0337 - ] - } - }, - { - "ibge": 2911303, - "name": "Gentio do Ouro", - "capital": 0, - "ibgeState": 29, - "siafi": 3525, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.4342, - -42.5077 - ] - } - }, - { - "ibge": 3517000, - "name": "Getulina", - "capital": 0, - "ibgeState": 35, - "siafi": 6441, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7961, - -49.9312 - ] - } - }, - { - "ibge": 4308904, - "name": "Getúlio Vargas", - "capital": 0, - "ibgeState": 43, - "siafi": 8677, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.8911, - -52.2294 - ] - } - }, - { - "ibge": 2204402, - "name": "Gilbués", - "capital": 0, - "ibgeState": 22, - "siafi": 1087, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.83001, - -45.3423 - ] - } - }, - { - "ibge": 2702900, - "name": "Girau do Ponciano", - "capital": 0, - "ibgeState": 27, - "siafi": 2757, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.88404, - -36.8316 - ] - } - }, - { - "ibge": 4309001, - "name": "Giruá", - "capital": 0, - "ibgeState": 43, - "siafi": 8679, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.0297, - -54.3517 - ] - } - }, - { - "ibge": 3127354, - "name": "Glaucilândia", - "capital": 0, - "ibgeState": 31, - "siafi": 616, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.8481, - -43.692 - ] - } - }, - { - "ibge": 3517109, - "name": "Glicério", - "capital": 0, - "ibgeState": 35, - "siafi": 6443, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3812, - -50.2123 - ] - } - }, - { - "ibge": 2911402, - "name": "Glória", - "capital": 0, - "ibgeState": 29, - "siafi": 3527, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.34382, - -38.2544 - ] - } - }, - { - "ibge": 5103957, - "name": "Glória D'Oeste", - "capital": 0, - "ibgeState": 51, - "siafi": 135, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.768, - -58.3108 - ] - } - }, - { - "ibge": 5004007, - "name": "Glória de Dourados", - "capital": 0, - "ibgeState": 50, - "siafi": 9079, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.4136, - -54.2335 - ] - } - }, - { - "ibge": 2606101, - "name": "Glória do Goitá", - "capital": 0, - "ibgeState": 26, - "siafi": 2421, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.00568, - -35.2904 - ] - } - }, - { - "ibge": 4309050, - "name": "Glorinha", - "capital": 0, - "ibgeState": 43, - "siafi": 8407, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.8798, - -50.7734 - ] - } - }, - { - "ibge": 2104305, - "name": "Godofredo Viana", - "capital": 0, - "ibgeState": 21, - "siafi": 783, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.40259, - -45.7795 - ] - } - }, - { - "ibge": 4108551, - "name": "Godoy Moreira", - "capital": 0, - "ibgeState": 41, - "siafi": 9947, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.173, - -51.9246 - ] - } - }, - { - "ibge": 3127370, - "name": "Goiabeira", - "capital": 0, - "ibgeState": 31, - "siafi": 618, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.9807, - -41.2235 - ] - } - }, - { - "ibge": 3127388, - "name": "Goianá", - "capital": 0, - "ibgeState": 31, - "siafi": 620, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.536, - -43.1957 - ] - } - }, - { - "ibge": 2606200, - "name": "Goiana", - "capital": 0, - "ibgeState": 26, - "siafi": 2423, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.5606, - -34.9959 - ] - } - }, - { - "ibge": 5208400, - "name": "Goianápolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9367, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.5098, - -49.0234 - ] - } - }, - { - "ibge": 5208509, - "name": "Goiandira", - "capital": 0, - "ibgeState": 52, - "siafi": 9369, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.1352, - -48.0875 - ] - } - }, - { - "ibge": 5208608, - "name": "Goianésia", - "capital": 0, - "ibgeState": 52, - "siafi": 9371, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.3118, - -49.1162 - ] - } - }, - { - "ibge": 1503093, - "name": "Goianésia do Pará", - "capital": 0, - "ibgeState": 15, - "siafi": 627, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.84338, - -49.0974 - ] - } - }, - { - "ibge": 5208707, - "name": "Goiânia", - "capital": 1, - "ibgeState": 52, - "siafi": 9373, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.6864, - -49.2643 - ] - } - }, - { - "ibge": 2404200, - "name": "Goianinha", - "capital": 0, - "ibgeState": 24, - "siafi": 1681, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.26486, - -35.1943 - ] - } - }, - { - "ibge": 5208806, - "name": "Goianira", - "capital": 0, - "ibgeState": 52, - "siafi": 9375, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.4947, - -49.427 - ] - } - }, - { - "ibge": 1708304, - "name": "Goianorte", - "capital": 0, - "ibgeState": 17, - "siafi": 9699, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.77413, - -48.9313 - ] - } - }, - { - "ibge": 5208905, - "name": "Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9377, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.9333, - -50.14 - ] - } - }, - { - "ibge": 1709005, - "name": "Goiatins", - "capital": 0, - "ibgeState": 17, - "siafi": 9533, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.71478, - -47.3252 - ] - } - }, - { - "ibge": 5209101, - "name": "Goiatuba", - "capital": 0, - "ibgeState": 52, - "siafi": 9379, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.0105, - -49.3658 - ] - } - }, - { - "ibge": 4108601, - "name": "Goioerê", - "capital": 0, - "ibgeState": 41, - "siafi": 7569, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.1835, - -53.0248 - ] - } - }, - { - "ibge": 4108650, - "name": "Goioxim", - "capital": 0, - "ibgeState": 41, - "siafi": 858, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.1927, - -51.9911 - ] - } - }, - { - "ibge": 3127404, - "name": "Gonçalves", - "capital": 0, - "ibgeState": 31, - "siafi": 4547, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6545, - -45.8556 - ] - } - }, - { - "ibge": 2104404, - "name": "Gonçalves Dias", - "capital": 0, - "ibgeState": 21, - "siafi": 785, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.1475, - -44.3013 - ] - } - }, - { - "ibge": 2911501, - "name": "Gongogi", - "capital": 0, - "ibgeState": 29, - "siafi": 3529, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.3195, - -39.469 - ] - } - }, - { - "ibge": 3127503, - "name": "Gonzaga", - "capital": 0, - "ibgeState": 31, - "siafi": 4549, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.8196, - -42.4769 - ] - } - }, - { - "ibge": 3127602, - "name": "Gouveia", - "capital": 0, - "ibgeState": 31, - "siafi": 4551, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4519, - -43.7423 - ] - } - }, - { - "ibge": 5209150, - "name": "Gouvelândia", - "capital": 0, - "ibgeState": 52, - "siafi": 9799, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.6238, - -50.0805 - ] - } - }, - { - "ibge": 2104503, - "name": "Governador Archer", - "capital": 0, - "ibgeState": 21, - "siafi": 787, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.02078, - -44.2754 - ] - } - }, - { - "ibge": 4206009, - "name": "Governador Celso Ramos", - "capital": 0, - "ibgeState": 42, - "siafi": 8111, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3172, - -48.5576 - ] - } - }, - { - "ibge": 2404309, - "name": "Governador Dix-Sept Rosado", - "capital": 0, - "ibgeState": 24, - "siafi": 1683, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.44887, - -37.5183 - ] - } - }, - { - "ibge": 2104552, - "name": "Governador Edison Lobão", - "capital": 0, - "ibgeState": 21, - "siafi": 162, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.74973, - -47.3646 - ] - } - }, - { - "ibge": 2104602, - "name": "Governador Eugênio Barros", - "capital": 0, - "ibgeState": 21, - "siafi": 789, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.31897, - -44.2469 - ] - } - }, - { - "ibge": 1101005, - "name": "Governador Jorge Teixeira", - "capital": 0, - "ibgeState": 11, - "siafi": 693, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.61, - -62.7371 - ] - } - }, - { - "ibge": 3202256, - "name": "Governador Lindenberg", - "capital": 0, - "ibgeState": 32, - "siafi": 1114, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.1864, - -40.4473 - ] - } - }, - { - "ibge": 2104628, - "name": "Governador Luiz Rocha", - "capital": 0, - "ibgeState": 21, - "siafi": 164, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.47835, - -44.0774 - ] - } - }, - { - "ibge": 2911600, - "name": "Governador Mangabeira", - "capital": 0, - "ibgeState": 29, - "siafi": 3531, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.5994, - -39.0412 - ] - } - }, - { - "ibge": 2104651, - "name": "Governador Newton Bello", - "capital": 0, - "ibgeState": 21, - "siafi": 166, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.43245, - -45.6619 - ] - } - }, - { - "ibge": 2104677, - "name": "Governador Nunes Freire", - "capital": 0, - "ibgeState": 21, - "siafi": 168, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.12899, - -45.8777 - ] - } - }, - { - "ibge": 3127701, - "name": "Governador Valadares", - "capital": 0, - "ibgeState": 31, - "siafi": 4553, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.8545, - -41.9555 - ] - } - }, - { - "ibge": 2304657, - "name": "Graça", - "capital": 0, - "ibgeState": 23, - "siafi": 1249, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.04422, - -40.749 - ] - } - }, - { - "ibge": 2104701, - "name": "Graça Aranha", - "capital": 0, - "ibgeState": 21, - "siafi": 791, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.40547, - -44.3358 - ] - } - }, - { - "ibge": 2802601, - "name": "Gracho Cardoso", - "capital": 0, - "ibgeState": 28, - "siafi": 3151, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.2252, - -37.2006 - ] - } - }, - { - "ibge": 2104800, - "name": "Grajaú", - "capital": 0, - "ibgeState": 21, - "siafi": 793, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.81367, - -46.1462 - ] - } - }, - { - "ibge": 4309100, - "name": "Gramado", - "capital": 0, - "ibgeState": 43, - "siafi": 8681, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3734, - -50.8762 - ] - } - }, - { - "ibge": 4309126, - "name": "Gramado dos Loureiros", - "capital": 0, - "ibgeState": 43, - "siafi": 5949, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4429, - -52.9149 - ] - } - }, - { - "ibge": 4309159, - "name": "Gramado Xavier", - "capital": 0, - "ibgeState": 43, - "siafi": 5763, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.2706, - -52.5795 - ] - } - }, - { - "ibge": 4108700, - "name": "Grandes Rios", - "capital": 0, - "ibgeState": 41, - "siafi": 7959, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.1466, - -51.5094 - ] - } - }, - { - "ibge": 2606309, - "name": "Granito", - "capital": 0, - "ibgeState": 26, - "siafi": 2425, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.70711, - -39.615 - ] - } - }, - { - "ibge": 2304707, - "name": "Granja", - "capital": 0, - "ibgeState": 23, - "siafi": 1395, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.12788, - -40.8372 - ] - } - }, - { - "ibge": 2304806, - "name": "Granjeiro", - "capital": 0, - "ibgeState": 23, - "siafi": 1397, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.88134, - -39.2144 - ] - } - }, - { - "ibge": 3127800, - "name": "Grão Mogol", - "capital": 0, - "ibgeState": 31, - "siafi": 4555, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.5662, - -42.8923 - ] - } - }, - { - "ibge": 4206108, - "name": "Grão Pará", - "capital": 0, - "ibgeState": 42, - "siafi": 8119, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.1809, - -49.2252 - ] - } - }, - { - "ibge": 2606408, - "name": "Gravatá", - "capital": 0, - "ibgeState": 26, - "siafi": 2427, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.21118, - -35.5675 - ] - } - }, - { - "ibge": 4309209, - "name": "Gravataí", - "capital": 0, - "ibgeState": 43, - "siafi": 8683, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.9413, - -50.9869 - ] - } - }, - { - "ibge": 4206207, - "name": "Gravatal", - "capital": 0, - "ibgeState": 42, - "siafi": 8121, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3208, - -49.0427 - ] - } - }, - { - "ibge": 2304905, - "name": "Groaíras", - "capital": 0, - "ibgeState": 23, - "siafi": 1399, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.91787, - -40.3852 - ] - } - }, - { - "ibge": 2404408, - "name": "Grossos", - "capital": 0, - "ibgeState": 24, - "siafi": 1685, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.98068, - -37.1621 - ] - } - }, - { - "ibge": 3127909, - "name": "Grupiara", - "capital": 0, - "ibgeState": 31, - "siafi": 4557, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5003, - -47.7318 - ] - } - }, - { - "ibge": 4309258, - "name": "Guabiju", - "capital": 0, - "ibgeState": 43, - "siafi": 8405, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5421, - -51.6948 - ] - } - }, - { - "ibge": 4206306, - "name": "Guabiruba", - "capital": 0, - "ibgeState": 42, - "siafi": 8123, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0808, - -48.9804 - ] - } - }, - { - "ibge": 3202306, - "name": "Guaçuí", - "capital": 0, - "ibgeState": 32, - "siafi": 5645, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7668, - -41.6734 - ] - } - }, - { - "ibge": 2204501, - "name": "Guadalupe", - "capital": 0, - "ibgeState": 22, - "siafi": 1089, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.78285, - -43.5594 - ] - } - }, - { - "ibge": 4309308, - "name": "Guaíba", - "capital": 0, - "ibgeState": 43, - "siafi": 8685, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.1086, - -51.3233 - ] - } - }, - { - "ibge": 3517208, - "name": "Guaiçara", - "capital": 0, - "ibgeState": 35, - "siafi": 6445, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6195, - -49.8013 - ] - } - }, - { - "ibge": 3517307, - "name": "Guaimbê", - "capital": 0, - "ibgeState": 35, - "siafi": 6447, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9091, - -49.8986 - ] - } - }, - { - "ibge": 3517406, - "name": "Guaíra", - "capital": 0, - "ibgeState": 35, - "siafi": 6449, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3196, - -48.312 - ] - } - }, - { - "ibge": 4108809, - "name": "Guaíra", - "capital": 0, - "ibgeState": 41, - "siafi": 7571, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.085, - -54.2573 - ] - } - }, - { - "ibge": 4108908, - "name": "Guairaçá", - "capital": 0, - "ibgeState": 41, - "siafi": 7573, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.932, - -52.6906 - ] - } - }, - { - "ibge": 2304954, - "name": "Guaiúba", - "capital": 0, - "ibgeState": 23, - "siafi": 1251, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.04057, - -38.6404 - ] - } - }, - { - "ibge": 1301654, - "name": "Guajará", - "capital": 0, - "ibgeState": 13, - "siafi": 967, - "ddd": 97, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -7.53797, - -72.5907 - ] - } - }, - { - "ibge": 1100106, - "name": "Guajará-Mirim", - "capital": 0, - "ibgeState": 11, - "siafi": 1, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.7889, - -65.3296 - ] - } - }, - { - "ibge": 2911659, - "name": "Guajeru", - "capital": 0, - "ibgeState": 29, - "siafi": 3095, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.5467, - -41.9381 - ] - } - }, - { - "ibge": 2404507, - "name": "Guamaré", - "capital": 0, - "ibgeState": 24, - "siafi": 1687, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.10619, - -36.3222 - ] - } - }, - { - "ibge": 4108957, - "name": "Guamiranga", - "capital": 0, - "ibgeState": 41, - "siafi": 860, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.1912, - -50.8021 - ] - } - }, - { - "ibge": 2911709, - "name": "Guanambi", - "capital": 0, - "ibgeState": 29, - "siafi": 3533, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.2231, - -42.7799 - ] - } - }, - { - "ibge": 3128006, - "name": "Guanhães", - "capital": 0, - "ibgeState": 31, - "siafi": 4559, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7713, - -42.9312 - ] - } - }, - { - "ibge": 3128105, - "name": "Guapé", - "capital": 0, - "ibgeState": 31, - "siafi": 4561, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7631, - -45.9152 - ] - } - }, - { - "ibge": 3517505, - "name": "Guapiaçu", - "capital": 0, - "ibgeState": 35, - "siafi": 6451, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7959, - -49.2172 - ] - } - }, - { - "ibge": 3517604, - "name": "Guapiara", - "capital": 0, - "ibgeState": 35, - "siafi": 6453, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.1892, - -48.5295 - ] - } - }, - { - "ibge": 3301850, - "name": "Guapimirim", - "capital": 0, - "ibgeState": 33, - "siafi": 2907, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5347, - -42.9895 - ] - } - }, - { - "ibge": 4109005, - "name": "Guapirama", - "capital": 0, - "ibgeState": 41, - "siafi": 7575, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5203, - -50.0407 - ] - } - }, - { - "ibge": 5209200, - "name": "Guapó", - "capital": 0, - "ibgeState": 52, - "siafi": 9381, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.8297, - -49.5345 - ] - } - }, - { - "ibge": 4309407, - "name": "Guaporé", - "capital": 0, - "ibgeState": 43, - "siafi": 8687, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.8399, - -51.8895 - ] - } - }, - { - "ibge": 4109104, - "name": "Guaporema", - "capital": 0, - "ibgeState": 41, - "siafi": 7577, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3402, - -52.7786 - ] - } - }, - { - "ibge": 3517703, - "name": "Guará", - "capital": 0, - "ibgeState": 35, - "siafi": 6455, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4302, - -47.8236 - ] - } - }, - { - "ibge": 2506301, - "name": "Guarabira", - "capital": 0, - "ibgeState": 25, - "siafi": 2027, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.85064, - -35.485 - ] - } - }, - { - "ibge": 3517802, - "name": "Guaraçaí", - "capital": 0, - "ibgeState": 35, - "siafi": 6457, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0292, - -51.2119 - ] - } - }, - { - "ibge": 3517901, - "name": "Guaraci", - "capital": 0, - "ibgeState": 35, - "siafi": 6459, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4977, - -48.9391 - ] - } - }, - { - "ibge": 4109203, - "name": "Guaraci", - "capital": 0, - "ibgeState": 41, - "siafi": 7579, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9694, - -51.6504 - ] - } - }, - { - "ibge": 3128204, - "name": "Guaraciaba", - "capital": 0, - "ibgeState": 31, - "siafi": 4563, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5716, - -43.0094 - ] - } - }, - { - "ibge": 4206405, - "name": "Guaraciaba", - "capital": 0, - "ibgeState": 42, - "siafi": 8125, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.6042, - -53.5243 - ] - } - }, - { - "ibge": 2305001, - "name": "Guaraciaba do Norte", - "capital": 0, - "ibgeState": 23, - "siafi": 1401, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.15814, - -40.7476 - ] - } - }, - { - "ibge": 3128253, - "name": "Guaraciama", - "capital": 0, - "ibgeState": 31, - "siafi": 622, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.0142, - -43.6675 - ] - } - }, - { - "ibge": 1709302, - "name": "Guaraí", - "capital": 0, - "ibgeState": 17, - "siafi": 9627, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.83543, - -48.5114 - ] - } - }, - { - "ibge": 5209291, - "name": "Guaraíta", - "capital": 0, - "ibgeState": 52, - "siafi": 65, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.6121, - -50.0265 - ] - } - }, - { - "ibge": 2305100, - "name": "Guaramiranga", - "capital": 0, - "ibgeState": 23, - "siafi": 1403, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.26248, - -38.932 - ] - } - }, - { - "ibge": 4206504, - "name": "Guaramirim", - "capital": 0, - "ibgeState": 42, - "siafi": 8127, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.4688, - -49.0026 - ] - } - }, - { - "ibge": 3128303, - "name": "Guaranésia", - "capital": 0, - "ibgeState": 31, - "siafi": 4565, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3009, - -46.7964 - ] - } - }, - { - "ibge": 3128402, - "name": "Guarani", - "capital": 0, - "ibgeState": 31, - "siafi": 4567, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3563, - -43.0328 - ] - } - }, - { - "ibge": 3518008, - "name": "Guarani d'Oeste", - "capital": 0, - "ibgeState": 35, - "siafi": 6461, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0746, - -50.3411 - ] - } - }, - { - "ibge": 4309506, - "name": "Guarani das Missões", - "capital": 0, - "ibgeState": 43, - "siafi": 8689, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.1491, - -54.5629 - ] - } - }, - { - "ibge": 5209408, - "name": "Guarani de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9383, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.9421, - -46.4868 - ] - } - }, - { - "ibge": 4109302, - "name": "Guaraniaçu", - "capital": 0, - "ibgeState": 41, - "siafi": 7581, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.0968, - -52.8755 - ] - } - }, - { - "ibge": 3518107, - "name": "Guarantã", - "capital": 0, - "ibgeState": 35, - "siafi": 6463, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8942, - -49.5914 - ] - } - }, - { - "ibge": 5104104, - "name": "Guarantã do Norte", - "capital": 0, - "ibgeState": 51, - "siafi": 9887, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -9.96218, - -54.9121 - ] - } - }, - { - "ibge": 3202405, - "name": "Guarapari", - "capital": 0, - "ibgeState": 32, - "siafi": 5647, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6772, - -40.5093 - ] - } - }, - { - "ibge": 4109401, - "name": "Guarapuava", - "capital": 0, - "ibgeState": 41, - "siafi": 7583, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.3902, - -51.4623 - ] - } - }, - { - "ibge": 4109500, - "name": "Guaraqueçaba", - "capital": 0, - "ibgeState": 41, - "siafi": 7585, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.3071, - -48.3204 - ] - } - }, - { - "ibge": 3128501, - "name": "Guarará", - "capital": 0, - "ibgeState": 31, - "siafi": 4569, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7304, - -43.0334 - ] - } - }, - { - "ibge": 3518206, - "name": "Guararapes", - "capital": 0, - "ibgeState": 35, - "siafi": 6465, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2544, - -50.6453 - ] - } - }, - { - "ibge": 3518305, - "name": "Guararema", - "capital": 0, - "ibgeState": 35, - "siafi": 6467, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4112, - -46.0369 - ] - } - }, - { - "ibge": 2911808, - "name": "Guaratinga", - "capital": 0, - "ibgeState": 29, - "siafi": 3535, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.5833, - -39.7847 - ] - } - }, - { - "ibge": 3518404, - "name": "Guaratinguetá", - "capital": 0, - "ibgeState": 35, - "siafi": 6469, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8075, - -45.1938 - ] - } - }, - { - "ibge": 4109609, - "name": "Guaratuba", - "capital": 0, - "ibgeState": 41, - "siafi": 7587, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.8817, - -48.5752 - ] - } - }, - { - "ibge": 3128600, - "name": "Guarda-Mor", - "capital": 0, - "ibgeState": 31, - "siafi": 4571, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.7673, - -47.0998 - ] - } - }, - { - "ibge": 3518503, - "name": "Guareí", - "capital": 0, - "ibgeState": 35, - "siafi": 6471, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3714, - -48.1837 - ] - } - }, - { - "ibge": 3518602, - "name": "Guariba", - "capital": 0, - "ibgeState": 35, - "siafi": 6473, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3594, - -48.2316 - ] - } - }, - { - "ibge": 2204550, - "name": "Guaribas", - "capital": 0, - "ibgeState": 22, - "siafi": 320, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.38647, - -43.6943 - ] - } - }, - { - "ibge": 5209457, - "name": "Guarinos", - "capital": 0, - "ibgeState": 52, - "siafi": 9993, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.7292, - -49.7006 - ] - } - }, - { - "ibge": 3518701, - "name": "Guarujá", - "capital": 0, - "ibgeState": 35, - "siafi": 6475, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.9888, - -46.258 - ] - } - }, - { - "ibge": 4206603, - "name": "Guarujá do Sul", - "capital": 0, - "ibgeState": 42, - "siafi": 8129, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.3858, - -53.5296 - ] - } - }, - { - "ibge": 3518800, - "name": "Guarulhos", - "capital": 0, - "ibgeState": 35, - "siafi": 6477, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4538, - -46.5333 - ] - } - }, - { - "ibge": 4206652, - "name": "Guatambú", - "capital": 0, - "ibgeState": 42, - "siafi": 5583, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1341, - -52.7887 - ] - } - }, - { - "ibge": 3518859, - "name": "Guatapará", - "capital": 0, - "ibgeState": 35, - "siafi": 7257, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4944, - -48.0356 - ] - } - }, - { - "ibge": 3128709, - "name": "Guaxupé", - "capital": 0, - "ibgeState": 31, - "siafi": 4573, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.305, - -46.7081 - ] - } - }, - { - "ibge": 5004106, - "name": "Guia Lopes da Laguna", - "capital": 0, - "ibgeState": 50, - "siafi": 9081, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -21.4583, - -56.1117 - ] - } - }, - { - "ibge": 3128808, - "name": "Guidoval", - "capital": 0, - "ibgeState": 31, - "siafi": 4575, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.155, - -42.7887 - ] - } - }, - { - "ibge": 2104909, - "name": "Guimarães", - "capital": 0, - "ibgeState": 21, - "siafi": 795, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.12755, - -44.602 - ] - } - }, - { - "ibge": 3128907, - "name": "Guimarânia", - "capital": 0, - "ibgeState": 31, - "siafi": 4577, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.8425, - -46.7901 - ] - } - }, - { - "ibge": 5104203, - "name": "Guiratinga", - "capital": 0, - "ibgeState": 51, - "siafi": 9083, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -16.346, - -53.7575 - ] - } - }, - { - "ibge": 3129004, - "name": "Guiricema", - "capital": 0, - "ibgeState": 31, - "siafi": 4579, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0098, - -42.7207 - ] - } - }, - { - "ibge": 3129103, - "name": "Gurinhatã", - "capital": 0, - "ibgeState": 31, - "siafi": 4581, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2143, - -49.7876 - ] - } - }, - { - "ibge": 2506400, - "name": "Gurinhém", - "capital": 0, - "ibgeState": 25, - "siafi": 2029, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.1233, - -35.4222 - ] - } - }, - { - "ibge": 2506509, - "name": "Gurjão", - "capital": 0, - "ibgeState": 25, - "siafi": 2031, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.24833, - -36.4923 - ] - } - }, - { - "ibge": 1503101, - "name": "Gurupá", - "capital": 0, - "ibgeState": 15, - "siafi": 461, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.41412, - -51.6338 - ] - } - }, - { - "ibge": 1709500, - "name": "Gurupi", - "capital": 0, - "ibgeState": 17, - "siafi": 9385, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.7279, - -49.068 - ] - } - }, - { - "ibge": 3518909, - "name": "Guzolândia", - "capital": 0, - "ibgeState": 35, - "siafi": 6479, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6467, - -50.6645 - ] - } - }, - { - "ibge": 4309555, - "name": "Harmonia", - "capital": 0, - "ibgeState": 43, - "siafi": 8403, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5456, - -51.4185 - ] - } - }, - { - "ibge": 5209606, - "name": "Heitoraí", - "capital": 0, - "ibgeState": 52, - "siafi": 9387, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.719, - -49.8268 - ] - } - }, - { - "ibge": 3129202, - "name": "Heliodora", - "capital": 0, - "ibgeState": 31, - "siafi": 4583, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0644, - -45.5453 - ] - } - }, - { - "ibge": 2911857, - "name": "Heliópolis", - "capital": 0, - "ibgeState": 29, - "siafi": 3097, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.6825, - -38.2907 - ] - } - }, - { - "ibge": 3519006, - "name": "Herculândia", - "capital": 0, - "ibgeState": 35, - "siafi": 6481, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0038, - -50.3907 - ] - } - }, - { - "ibge": 4307104, - "name": "Herval", - "capital": 0, - "ibgeState": 43, - "siafi": 8639, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -32.024, - -53.3944 - ] - } - }, - { - "ibge": 4206702, - "name": "Herval d'Oeste", - "capital": 0, - "ibgeState": 42, - "siafi": 8131, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1903, - -51.4917 - ] - } - }, - { - "ibge": 4309571, - "name": "Herveiras", - "capital": 0, - "ibgeState": 43, - "siafi": 988, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4552, - -52.6553 - ] - } - }, - { - "ibge": 5209705, - "name": "Hidrolândia", - "capital": 0, - "ibgeState": 52, - "siafi": 9389, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.9626, - -49.2265 - ] - } - }, - { - "ibge": 2305209, - "name": "Hidrolândia", - "capital": 0, - "ibgeState": 23, - "siafi": 1405, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.40958, - -40.4056 - ] - } - }, - { - "ibge": 5209804, - "name": "Hidrolina", - "capital": 0, - "ibgeState": 52, - "siafi": 9391, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.7261, - -49.4634 - ] - } - }, - { - "ibge": 3519055, - "name": "Holambra", - "capital": 0, - "ibgeState": 35, - "siafi": 2953, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6405, - -47.0487 - ] - } - }, - { - "ibge": 4109658, - "name": "Honório Serpa", - "capital": 0, - "ibgeState": 41, - "siafi": 9981, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.139, - -52.3848 - ] - } - }, - { - "ibge": 2305233, - "name": "Horizonte", - "capital": 0, - "ibgeState": 23, - "siafi": 1253, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.1209, - -38.4707 - ] - } - }, - { - "ibge": 4309605, - "name": "Horizontina", - "capital": 0, - "ibgeState": 43, - "siafi": 8691, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6282, - -54.3053 - ] - } - }, - { - "ibge": 3519071, - "name": "Hortolândia", - "capital": 0, - "ibgeState": 35, - "siafi": 2951, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8529, - -47.2143 - ] - } - }, - { - "ibge": 2204600, - "name": "Hugo Napoleão", - "capital": 0, - "ibgeState": 22, - "siafi": 1091, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.9886, - -42.5598 - ] - } - }, - { - "ibge": 4309654, - "name": "Hulha Negra", - "capital": 0, - "ibgeState": 43, - "siafi": 6085, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.4067, - -53.8667 - ] - } - }, - { - "ibge": 4309704, - "name": "Humaitá", - "capital": 0, - "ibgeState": 43, - "siafi": 8695, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5691, - -53.9695 - ] - } - }, - { - "ibge": 1301704, - "name": "Humaitá", - "capital": 0, - "ibgeState": 13, - "siafi": 235, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -7.51171, - -63.0327 - ] - } - }, - { - "ibge": 2105005, - "name": "Humberto de Campos", - "capital": 0, - "ibgeState": 21, - "siafi": 797, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.59828, - -43.4649 - ] - } - }, - { - "ibge": 3519105, - "name": "Iacanga", - "capital": 0, - "ibgeState": 35, - "siafi": 6483, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8896, - -49.031 - ] - } - }, - { - "ibge": 5209903, - "name": "Iaciara", - "capital": 0, - "ibgeState": 52, - "siafi": 9393, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.1011, - -46.6335 - ] - } - }, - { - "ibge": 3519204, - "name": "Iacri", - "capital": 0, - "ibgeState": 35, - "siafi": 6485, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8572, - -50.6932 - ] - } - }, - { - "ibge": 2911907, - "name": "Iaçu", - "capital": 0, - "ibgeState": 29, - "siafi": 3537, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.7666, - -40.2056 - ] - } - }, - { - "ibge": 3129301, - "name": "Iapu", - "capital": 0, - "ibgeState": 31, - "siafi": 4585, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.4387, - -42.2147 - ] - } - }, - { - "ibge": 3519253, - "name": "Iaras", - "capital": 0, - "ibgeState": 35, - "siafi": 7259, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8682, - -49.1634 - ] - } - }, - { - "ibge": 2606507, - "name": "Iati", - "capital": 0, - "ibgeState": 26, - "siafi": 2429, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.04559, - -36.8498 - ] - } - }, - { - "ibge": 4109708, - "name": "Ibaiti", - "capital": 0, - "ibgeState": 41, - "siafi": 7589, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8478, - -50.1932 - ] - } - }, - { - "ibge": 4309753, - "name": "Ibarama", - "capital": 0, - "ibgeState": 43, - "siafi": 8401, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4203, - -53.1295 - ] - } - }, - { - "ibge": 2305266, - "name": "Ibaretama", - "capital": 0, - "ibgeState": 23, - "siafi": 1255, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.80376, - -38.7501 - ] - } - }, - { - "ibge": 3519303, - "name": "Ibaté", - "capital": 0, - "ibgeState": 35, - "siafi": 6487, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9584, - -47.9882 - ] - } - }, - { - "ibge": 2703007, - "name": "Ibateguara", - "capital": 0, - "ibgeState": 27, - "siafi": 2759, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.97823, - -35.9373 - ] - } - }, - { - "ibge": 3202454, - "name": "Ibatiba", - "capital": 0, - "ibgeState": 32, - "siafi": 5709, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2347, - -41.5087 - ] - } - }, - { - "ibge": 4109757, - "name": "Ibema", - "capital": 0, - "ibgeState": 41, - "siafi": 9949, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.1193, - -53.0072 - ] - } - }, - { - "ibge": 3129400, - "name": "Ibertioga", - "capital": 0, - "ibgeState": 31, - "siafi": 4587, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.433, - -43.9639 - ] - } - }, - { - "ibge": 3129509, - "name": "Ibiá", - "capital": 0, - "ibgeState": 31, - "siafi": 4589, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.4749, - -46.5474 - ] - } - }, - { - "ibge": 4309803, - "name": "Ibiaçá", - "capital": 0, - "ibgeState": 43, - "siafi": 8697, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.0566, - -51.8599 - ] - } - }, - { - "ibge": 3129608, - "name": "Ibiaí", - "capital": 0, - "ibgeState": 31, - "siafi": 4591, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.8591, - -44.9046 - ] - } - }, - { - "ibge": 4206751, - "name": "Ibiam", - "capital": 0, - "ibgeState": 42, - "siafi": 920, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1847, - -51.2352 - ] - } - }, - { - "ibge": 2305308, - "name": "Ibiapina", - "capital": 0, - "ibgeState": 23, - "siafi": 1407, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.92403, - -40.8911 - ] - } - }, - { - "ibge": 2506608, - "name": "Ibiara", - "capital": 0, - "ibgeState": 25, - "siafi": 2033, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.47957, - -38.4059 - ] - } - }, - { - "ibge": 2912004, - "name": "Ibiassucê", - "capital": 0, - "ibgeState": 29, - "siafi": 3539, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.2711, - -42.257 - ] - } - }, - { - "ibge": 2912103, - "name": "Ibicaraí", - "capital": 0, - "ibgeState": 29, - "siafi": 3541, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.8579, - -39.5914 - ] - } - }, - { - "ibge": 4206801, - "name": "Ibicaré", - "capital": 0, - "ibgeState": 42, - "siafi": 8133, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0881, - -51.3681 - ] - } - }, - { - "ibge": 2912202, - "name": "Ibicoara", - "capital": 0, - "ibgeState": 29, - "siafi": 3543, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.4059, - -41.284 - ] - } - }, - { - "ibge": 2912301, - "name": "Ibicuí", - "capital": 0, - "ibgeState": 29, - "siafi": 3545, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.845, - -39.9879 - ] - } - }, - { - "ibge": 2305332, - "name": "Ibicuitinga", - "capital": 0, - "ibgeState": 23, - "siafi": 1257, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.96999, - -38.6362 - ] - } - }, - { - "ibge": 2606606, - "name": "Ibimirim", - "capital": 0, - "ibgeState": 26, - "siafi": 2431, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.54026, - -37.7032 - ] - } - }, - { - "ibge": 2912400, - "name": "Ibipeba", - "capital": 0, - "ibgeState": 29, - "siafi": 3547, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.6438, - -42.0195 - ] - } - }, - { - "ibge": 2912509, - "name": "Ibipitanga", - "capital": 0, - "ibgeState": 29, - "siafi": 3551, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.8804, - -42.4856 - ] - } - }, - { - "ibge": 4109807, - "name": "Ibiporã", - "capital": 0, - "ibgeState": 41, - "siafi": 7591, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2659, - -51.0522 - ] - } - }, - { - "ibge": 2912608, - "name": "Ibiquera", - "capital": 0, - "ibgeState": 29, - "siafi": 3553, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.6444, - -40.9338 - ] - } - }, - { - "ibge": 3519402, - "name": "Ibirá", - "capital": 0, - "ibgeState": 35, - "siafi": 6489, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.083, - -49.2448 - ] - } - }, - { - "ibge": 3129657, - "name": "Ibiracatu", - "capital": 0, - "ibgeState": 31, - "siafi": 624, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.6605, - -44.1667 - ] - } - }, - { - "ibge": 3129707, - "name": "Ibiraci", - "capital": 0, - "ibgeState": 31, - "siafi": 4593, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4611, - -47.1222 - ] - } - }, - { - "ibge": 3202504, - "name": "Ibiraçu", - "capital": 0, - "ibgeState": 32, - "siafi": 5649, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8366, - -40.3732 - ] - } - }, - { - "ibge": 4309902, - "name": "Ibiraiaras", - "capital": 0, - "ibgeState": 43, - "siafi": 8699, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3741, - -51.6377 - ] - } - }, - { - "ibge": 2606705, - "name": "Ibirajuba", - "capital": 0, - "ibgeState": 26, - "siafi": 2433, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.57633, - -36.1812 - ] - } - }, - { - "ibge": 4206900, - "name": "Ibirama", - "capital": 0, - "ibgeState": 42, - "siafi": 8135, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0547, - -49.5193 - ] - } - }, - { - "ibge": 2912707, - "name": "Ibirapitanga", - "capital": 0, - "ibgeState": 29, - "siafi": 3555, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.1649, - -39.3787 - ] - } - }, - { - "ibge": 2912806, - "name": "Ibirapuã", - "capital": 0, - "ibgeState": 29, - "siafi": 3557, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.6832, - -40.1129 - ] - } - }, - { - "ibge": 4309951, - "name": "Ibirapuitã", - "capital": 0, - "ibgeState": 43, - "siafi": 7299, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6247, - -52.5158 - ] - } - }, - { - "ibge": 3519501, - "name": "Ibirarema", - "capital": 0, - "ibgeState": 35, - "siafi": 6491, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8185, - -50.0739 - ] - } - }, - { - "ibge": 2912905, - "name": "Ibirataia", - "capital": 0, - "ibgeState": 29, - "siafi": 3559, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.0643, - -39.6459 - ] - } - }, - { - "ibge": 3129806, - "name": "Ibirité", - "capital": 0, - "ibgeState": 31, - "siafi": 4595, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0252, - -44.0569 - ] - } - }, - { - "ibge": 4310009, - "name": "Ibirubá", - "capital": 0, - "ibgeState": 43, - "siafi": 8701, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6302, - -53.0961 - ] - } - }, - { - "ibge": 2913002, - "name": "Ibitiara", - "capital": 0, - "ibgeState": 29, - "siafi": 3561, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.6502, - -42.2179 - ] - } - }, - { - "ibge": 3519600, - "name": "Ibitinga", - "capital": 0, - "ibgeState": 35, - "siafi": 6493, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7562, - -48.8319 - ] - } - }, - { - "ibge": 3202553, - "name": "Ibitirama", - "capital": 0, - "ibgeState": 32, - "siafi": 6011, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5466, - -41.6667 - ] - } - }, - { - "ibge": 2913101, - "name": "Ibititá", - "capital": 0, - "ibgeState": 29, - "siafi": 3563, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.5414, - -41.9748 - ] - } - }, - { - "ibge": 3129905, - "name": "Ibitiúra de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4597, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0604, - -46.4368 - ] - } - }, - { - "ibge": 3130002, - "name": "Ibituruna", - "capital": 0, - "ibgeState": 31, - "siafi": 4599, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1541, - -44.7479 - ] - } - }, - { - "ibge": 3519709, - "name": "Ibiúna", - "capital": 0, - "ibgeState": 35, - "siafi": 6495, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6596, - -47.223 - ] - } - }, - { - "ibge": 2913200, - "name": "Ibotirama", - "capital": 0, - "ibgeState": 29, - "siafi": 3565, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.1779, - -43.2167 - ] - } - }, - { - "ibge": 2305357, - "name": "Icapuí", - "capital": 0, - "ibgeState": 23, - "siafi": 1593, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.71206, - -37.3531 - ] - } - }, - { - "ibge": 4207007, - "name": "Içara", - "capital": 0, - "ibgeState": 42, - "siafi": 8137, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.7132, - -49.3087 - ] - } - }, - { - "ibge": 3130051, - "name": "Icaraí de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 2693, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.214, - -44.9034 - ] - } - }, - { - "ibge": 4109906, - "name": "Icaraíma", - "capital": 0, - "ibgeState": 41, - "siafi": 7593, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3944, - -53.615 - ] - } - }, - { - "ibge": 2105104, - "name": "Icatu", - "capital": 0, - "ibgeState": 21, - "siafi": 799, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.77206, - -44.0501 - ] - } - }, - { - "ibge": 3519808, - "name": "Icém", - "capital": 0, - "ibgeState": 35, - "siafi": 6497, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3391, - -49.1915 - ] - } - }, - { - "ibge": 2913309, - "name": "Ichu", - "capital": 0, - "ibgeState": 29, - "siafi": 3567, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.7431, - -39.1905 - ] - } - }, - { - "ibge": 2305407, - "name": "Icó", - "capital": 0, - "ibgeState": 23, - "siafi": 1409, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.39627, - -38.8554 - ] - } - }, - { - "ibge": 3202603, - "name": "Iconha", - "capital": 0, - "ibgeState": 32, - "siafi": 5651, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7913, - -40.8132 - ] - } - }, - { - "ibge": 2404606, - "name": "Ielmo Marinho", - "capital": 0, - "ibgeState": 24, - "siafi": 1689, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.82447, - -35.55 - ] - } - }, - { - "ibge": 3519907, - "name": "Iepê", - "capital": 0, - "ibgeState": 35, - "siafi": 6499, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6602, - -51.0779 - ] - } - }, - { - "ibge": 2703106, - "name": "Igaci", - "capital": 0, - "ibgeState": 27, - "siafi": 2761, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.53768, - -36.6372 - ] - } - }, - { - "ibge": 2913408, - "name": "Igaporã", - "capital": 0, - "ibgeState": 29, - "siafi": 3569, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.774, - -42.7155 - ] - } - }, - { - "ibge": 3520004, - "name": "Igaraçu do Tietê", - "capital": 0, - "ibgeState": 35, - "siafi": 6501, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.509, - -48.5597 - ] - } - }, - { - "ibge": 2502607, - "name": "Igaracy", - "capital": 0, - "ibgeState": 25, - "siafi": 1953, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.17184, - -38.1478 - ] - } - }, - { - "ibge": 3520103, - "name": "Igarapava", - "capital": 0, - "ibgeState": 35, - "siafi": 6503, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0407, - -47.7466 - ] - } - }, - { - "ibge": 3130101, - "name": "Igarapé", - "capital": 0, - "ibgeState": 31, - "siafi": 4601, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0707, - -44.2994 - ] - } - }, - { - "ibge": 2105153, - "name": "Igarapé do Meio", - "capital": 0, - "ibgeState": 21, - "siafi": 170, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.65771, - -45.2114 - ] - } - }, - { - "ibge": 2105203, - "name": "Igarapé Grande", - "capital": 0, - "ibgeState": 21, - "siafi": 801, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.6625, - -44.8558 - ] - } - }, - { - "ibge": 1503200, - "name": "Igarapé-Açu", - "capital": 0, - "ibgeState": 15, - "siafi": 463, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.12539, - -47.626 - ] - } - }, - { - "ibge": 1503309, - "name": "Igarapé-Miri", - "capital": 0, - "ibgeState": 15, - "siafi": 465, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.97533, - -48.9575 - ] - } - }, - { - "ibge": 2606804, - "name": "Igarassu", - "capital": 0, - "ibgeState": 26, - "siafi": 2435, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.82881, - -34.9013 - ] - } - }, - { - "ibge": 3520202, - "name": "Igaratá", - "capital": 0, - "ibgeState": 35, - "siafi": 6505, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2037, - -46.157 - ] - } - }, - { - "ibge": 3130200, - "name": "Igaratinga", - "capital": 0, - "ibgeState": 31, - "siafi": 4603, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9476, - -44.7063 - ] - } - }, - { - "ibge": 2913457, - "name": "Igrapiúna", - "capital": 0, - "ibgeState": 29, - "siafi": 3277, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.8295, - -39.1361 - ] - } - }, - { - "ibge": 2703205, - "name": "Igreja Nova", - "capital": 0, - "ibgeState": 27, - "siafi": 2763, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.1235, - -36.6597 - ] - } - }, - { - "ibge": 4310108, - "name": "Igrejinha", - "capital": 0, - "ibgeState": 43, - "siafi": 8703, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5693, - -50.7919 - ] - } - }, - { - "ibge": 3301876, - "name": "Iguaba Grande", - "capital": 0, - "ibgeState": 33, - "siafi": 774, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8495, - -42.2299 - ] - } - }, - { - "ibge": 2913507, - "name": "Iguaí", - "capital": 0, - "ibgeState": 29, - "siafi": 3571, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.7528, - -40.0894 - ] - } - }, - { - "ibge": 3520301, - "name": "Iguape", - "capital": 0, - "ibgeState": 35, - "siafi": 6507, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.699, - -47.5537 - ] - } - }, - { - "ibge": 4110003, - "name": "Iguaraçu", - "capital": 0, - "ibgeState": 41, - "siafi": 7595, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1949, - -51.8256 - ] - } - }, - { - "ibge": 2606903, - "name": "Iguaracy", - "capital": 0, - "ibgeState": 26, - "siafi": 2437, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.83222, - -37.5082 - ] - } - }, - { - "ibge": 3130309, - "name": "Iguatama", - "capital": 0, - "ibgeState": 31, - "siafi": 4605, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1776, - -45.7111 - ] - } - }, - { - "ibge": 5004304, - "name": "Iguatemi", - "capital": 0, - "ibgeState": 50, - "siafi": 9085, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -23.6736, - -54.5637 - ] - } - }, - { - "ibge": 2305506, - "name": "Iguatu", - "capital": 0, - "ibgeState": 23, - "siafi": 1411, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.36281, - -39.2892 - ] - } - }, - { - "ibge": 4110052, - "name": "Iguatu", - "capital": 0, - "ibgeState": 41, - "siafi": 5467, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.7153, - -53.0827 - ] - } - }, - { - "ibge": 3130408, - "name": "Ijaci", - "capital": 0, - "ibgeState": 31, - "siafi": 4607, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1738, - -44.9233 - ] - } - }, - { - "ibge": 4310207, - "name": "Ijuí", - "capital": 0, - "ibgeState": 43, - "siafi": 8705, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.388, - -53.92 - ] - } - }, - { - "ibge": 3520426, - "name": "Ilha Comprida", - "capital": 0, - "ibgeState": 35, - "siafi": 2969, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.7307, - -47.5383 - ] - } - }, - { - "ibge": 2802700, - "name": "Ilha das Flores", - "capital": 0, - "ibgeState": 28, - "siafi": 3153, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.4425, - -36.5479 - ] - } - }, - { - "ibge": 2607604, - "name": "Ilha de Itamaracá", - "capital": 0, - "ibgeState": 26, - "siafi": 2451, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.74766, - -34.8303 - ] - } - }, - { - "ibge": 2204659, - "name": "Ilha Grande", - "capital": 0, - "ibgeState": 22, - "siafi": 322, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.85774, - -41.8186 - ] - } - }, - { - "ibge": 3520442, - "name": "Ilha Solteira", - "capital": 0, - "ibgeState": 35, - "siafi": 2943, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4326, - -51.3426 - ] - } - }, - { - "ibge": 3520400, - "name": "Ilhabela", - "capital": 0, - "ibgeState": 35, - "siafi": 6509, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7785, - -45.3552 - ] - } - }, - { - "ibge": 2913606, - "name": "Ilhéus", - "capital": 0, - "ibgeState": 29, - "siafi": 3573, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.793, - -39.046 - ] - } - }, - { - "ibge": 4207106, - "name": "Ilhota", - "capital": 0, - "ibgeState": 42, - "siafi": 8139, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9023, - -48.8251 - ] - } - }, - { - "ibge": 3130507, - "name": "Ilicínea", - "capital": 0, - "ibgeState": 31, - "siafi": 4609, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9402, - -45.8308 - ] - } - }, - { - "ibge": 4310306, - "name": "Ilópolis", - "capital": 0, - "ibgeState": 43, - "siafi": 8707, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.9282, - -52.1258 - ] - } - }, - { - "ibge": 2506707, - "name": "Imaculada", - "capital": 0, - "ibgeState": 25, - "siafi": 2035, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.3889, - -37.5079 - ] - } - }, - { - "ibge": 4207205, - "name": "Imaruí", - "capital": 0, - "ibgeState": 42, - "siafi": 8141, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3339, - -48.817 - ] - } - }, - { - "ibge": 4110078, - "name": "Imbaú", - "capital": 0, - "ibgeState": 41, - "siafi": 862, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.448, - -50.7533 - ] - } - }, - { - "ibge": 4310330, - "name": "Imbé", - "capital": 0, - "ibgeState": 43, - "siafi": 7297, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.9753, - -50.1281 - ] - } - }, - { - "ibge": 3130556, - "name": "Imbé de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 626, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6017, - -41.9695 - ] - } - }, - { - "ibge": 4207304, - "name": "Imbituba", - "capital": 0, - "ibgeState": 42, - "siafi": 8143, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.2284, - -48.6659 - ] - } - }, - { - "ibge": 4110102, - "name": "Imbituva", - "capital": 0, - "ibgeState": 41, - "siafi": 7597, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.2285, - -50.5989 - ] - } - }, - { - "ibge": 4207403, - "name": "Imbuia", - "capital": 0, - "ibgeState": 42, - "siafi": 8145, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4908, - -49.4218 - ] - } - }, - { - "ibge": 4310363, - "name": "Imigrante", - "capital": 0, - "ibgeState": 43, - "siafi": 7295, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3508, - -51.7748 - ] - } - }, - { - "ibge": 2105302, - "name": "Imperatriz", - "capital": 0, - "ibgeState": 21, - "siafi": 803, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.51847, - -47.4777 - ] - } - }, - { - "ibge": 4110201, - "name": "Inácio Martins", - "capital": 0, - "ibgeState": 41, - "siafi": 7599, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.5704, - -51.0769 - ] - } - }, - { - "ibge": 5209937, - "name": "Inaciolândia", - "capital": 0, - "ibgeState": 52, - "siafi": 69, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4869, - -49.9888 - ] - } - }, - { - "ibge": 2607000, - "name": "Inajá", - "capital": 0, - "ibgeState": 26, - "siafi": 2439, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.90206, - -37.8351 - ] - } - }, - { - "ibge": 4110300, - "name": "Inajá", - "capital": 0, - "ibgeState": 41, - "siafi": 7601, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7509, - -52.1995 - ] - } - }, - { - "ibge": 3130606, - "name": "Inconfidentes", - "capital": 0, - "ibgeState": 31, - "siafi": 4611, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3136, - -46.3264 - ] - } - }, - { - "ibge": 3130655, - "name": "Indaiabira", - "capital": 0, - "ibgeState": 31, - "siafi": 628, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.4911, - -42.2005 - ] - } - }, - { - "ibge": 4207502, - "name": "Indaial", - "capital": 0, - "ibgeState": 42, - "siafi": 8147, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.8992, - -49.2354 - ] - } - }, - { - "ibge": 3520509, - "name": "Indaiatuba", - "capital": 0, - "ibgeState": 35, - "siafi": 6511, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0816, - -47.2101 - ] - } - }, - { - "ibge": 4310405, - "name": "Independência", - "capital": 0, - "ibgeState": 43, - "siafi": 8709, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.8354, - -54.1886 - ] - } - }, - { - "ibge": 2305605, - "name": "Independência", - "capital": 0, - "ibgeState": 23, - "siafi": 1413, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.38789, - -40.3085 - ] - } - }, - { - "ibge": 3520608, - "name": "Indiana", - "capital": 0, - "ibgeState": 35, - "siafi": 6513, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1738, - -51.2555 - ] - } - }, - { - "ibge": 4110409, - "name": "Indianópolis", - "capital": 0, - "ibgeState": 41, - "siafi": 7961, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4762, - -52.6989 - ] - } - }, - { - "ibge": 3130705, - "name": "Indianópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 4613, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.0341, - -47.9155 - ] - } - }, - { - "ibge": 3520707, - "name": "Indiaporã", - "capital": 0, - "ibgeState": 35, - "siafi": 6515, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.979, - -50.2909 - ] - } - }, - { - "ibge": 5209952, - "name": "Indiara", - "capital": 0, - "ibgeState": 52, - "siafi": 9681, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.1387, - -49.9862 - ] - } - }, - { - "ibge": 2802809, - "name": "Indiaroba", - "capital": 0, - "ibgeState": 28, - "siafi": 3155, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.5157, - -37.515 - ] - } - }, - { - "ibge": 5104500, - "name": "Indiavaí", - "capital": 0, - "ibgeState": 51, - "siafi": 9877, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.4921, - -58.5802 - ] - } - }, - { - "ibge": 2506806, - "name": "Ingá", - "capital": 0, - "ibgeState": 25, - "siafi": 2037, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.28144, - -35.605 - ] - } - }, - { - "ibge": 3130804, - "name": "Ingaí", - "capital": 0, - "ibgeState": 31, - "siafi": 4615, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4024, - -44.9152 - ] - } - }, - { - "ibge": 2607109, - "name": "Ingazeira", - "capital": 0, - "ibgeState": 26, - "siafi": 2441, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.66909, - -37.4576 - ] - } - }, - { - "ibge": 4310413, - "name": "Inhacorá", - "capital": 0, - "ibgeState": 43, - "siafi": 6051, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.8752, - -54.015 - ] - } - }, - { - "ibge": 2913705, - "name": "Inhambupe", - "capital": 0, - "ibgeState": 29, - "siafi": 3575, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.781, - -38.355 - ] - } - }, - { - "ibge": 1503408, - "name": "Inhangapi", - "capital": 0, - "ibgeState": 15, - "siafi": 467, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.4349, - -47.9114 - ] - } - }, - { - "ibge": 2703304, - "name": "Inhapi", - "capital": 0, - "ibgeState": 27, - "siafi": 2765, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.22594, - -37.7509 - ] - } - }, - { - "ibge": 3130903, - "name": "Inhapim", - "capital": 0, - "ibgeState": 31, - "siafi": 4617, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5476, - -42.1147 - ] - } - }, - { - "ibge": 3131000, - "name": "Inhaúma", - "capital": 0, - "ibgeState": 31, - "siafi": 4619, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.4898, - -44.3934 - ] - } - }, - { - "ibge": 2204709, - "name": "Inhuma", - "capital": 0, - "ibgeState": 22, - "siafi": 1093, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.665, - -41.7041 - ] - } - }, - { - "ibge": 5210000, - "name": "Inhumas", - "capital": 0, - "ibgeState": 52, - "siafi": 9395, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.3611, - -49.5001 - ] - } - }, - { - "ibge": 3131109, - "name": "Inimutaba", - "capital": 0, - "ibgeState": 31, - "siafi": 4621, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7271, - -44.3584 - ] - } - }, - { - "ibge": 5004403, - "name": "Inocência", - "capital": 0, - "ibgeState": 50, - "siafi": 9087, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -19.7277, - -51.9281 - ] - } - }, - { - "ibge": 3520806, - "name": "Inúbia Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 6517, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7695, - -50.9633 - ] - } - }, - { - "ibge": 4207577, - "name": "Iomerê", - "capital": 0, - "ibgeState": 42, - "siafi": 922, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0019, - -51.2442 - ] - } - }, - { - "ibge": 3131158, - "name": "Ipaba", - "capital": 0, - "ibgeState": 31, - "siafi": 2665, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.4158, - -42.4139 - ] - } - }, - { - "ibge": 5210109, - "name": "Ipameri", - "capital": 0, - "ibgeState": 52, - "siafi": 9397, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.7215, - -48.1581 - ] - } - }, - { - "ibge": 3131208, - "name": "Ipanema", - "capital": 0, - "ibgeState": 31, - "siafi": 4623, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7992, - -41.7164 - ] - } - }, - { - "ibge": 2404705, - "name": "Ipanguaçu", - "capital": 0, - "ibgeState": 24, - "siafi": 1691, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.48984, - -36.8501 - ] - } - }, - { - "ibge": 2305654, - "name": "Ipaporanga", - "capital": 0, - "ibgeState": 23, - "siafi": 1259, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.89764, - -40.7537 - ] - } - }, - { - "ibge": 3131307, - "name": "Ipatinga", - "capital": 0, - "ibgeState": 31, - "siafi": 4625, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.4703, - -42.5476 - ] - } - }, - { - "ibge": 2305704, - "name": "Ipaumirim", - "capital": 0, - "ibgeState": 23, - "siafi": 1415, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.78265, - -38.7179 - ] - } - }, - { - "ibge": 3520905, - "name": "Ipaussu", - "capital": 0, - "ibgeState": 35, - "siafi": 6519, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0575, - -49.6279 - ] - } - }, - { - "ibge": 4310439, - "name": "Ipê", - "capital": 0, - "ibgeState": 43, - "siafi": 8399, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.8171, - -51.2859 - ] - } - }, - { - "ibge": 2913804, - "name": "Ipecaetá", - "capital": 0, - "ibgeState": 29, - "siafi": 3577, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.3028, - -39.3069 - ] - } - }, - { - "ibge": 3521002, - "name": "Iperó", - "capital": 0, - "ibgeState": 35, - "siafi": 6521, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3513, - -47.6927 - ] - } - }, - { - "ibge": 3521101, - "name": "Ipeúna", - "capital": 0, - "ibgeState": 35, - "siafi": 6523, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4355, - -47.7151 - ] - } - }, - { - "ibge": 3131406, - "name": "Ipiaçu", - "capital": 0, - "ibgeState": 31, - "siafi": 4627, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.6927, - -49.9436 - ] - } - }, - { - "ibge": 2913903, - "name": "Ipiaú", - "capital": 0, - "ibgeState": 29, - "siafi": 3579, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.1226, - -39.7353 - ] - } - }, - { - "ibge": 3521150, - "name": "Ipiguá", - "capital": 0, - "ibgeState": 35, - "siafi": 800, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6557, - -49.3842 - ] - } - }, - { - "ibge": 2914000, - "name": "Ipirá", - "capital": 0, - "ibgeState": 29, - "siafi": 3581, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.1561, - -39.7359 - ] - } - }, - { - "ibge": 4207601, - "name": "Ipira", - "capital": 0, - "ibgeState": 42, - "siafi": 8149, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4038, - -51.7758 - ] - } - }, - { - "ibge": 4110508, - "name": "Ipiranga", - "capital": 0, - "ibgeState": 41, - "siafi": 7603, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.0238, - -50.5794 - ] - } - }, - { - "ibge": 5210158, - "name": "Ipiranga de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 1074, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.1689, - -49.6695 - ] - } - }, - { - "ibge": 5104526, - "name": "Ipiranga do Norte", - "capital": 0, - "ibgeState": 51, - "siafi": 1184, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.2408, - -56.1531 - ] - } - }, - { - "ibge": 2204808, - "name": "Ipiranga do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1095, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.82421, - -41.7381 - ] - } - }, - { - "ibge": 4310462, - "name": "Ipiranga do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 7399, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9404, - -52.4271 - ] - } - }, - { - "ibge": 1301803, - "name": "Ipixuna", - "capital": 0, - "ibgeState": 13, - "siafi": 239, - "ddd": 97, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -7.04791, - -71.6934 - ] - } - }, - { - "ibge": 1503457, - "name": "Ipixuna do Pará", - "capital": 0, - "ibgeState": 15, - "siafi": 621, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.55992, - -47.5059 - ] - } - }, - { - "ibge": 2607208, - "name": "Ipojuca", - "capital": 0, - "ibgeState": 26, - "siafi": 2443, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.39303, - -35.0609 - ] - } - }, - { - "ibge": 4110607, - "name": "Iporã", - "capital": 0, - "ibgeState": 41, - "siafi": 7605, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.0083, - -53.706 - ] - } - }, - { - "ibge": 5210208, - "name": "Iporá", - "capital": 0, - "ibgeState": 52, - "siafi": 9399, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.4398, - -51.118 - ] - } - }, - { - "ibge": 4207650, - "name": "Iporã do Oeste", - "capital": 0, - "ibgeState": 42, - "siafi": 9951, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9854, - -53.5355 - ] - } - }, - { - "ibge": 3521200, - "name": "Iporanga", - "capital": 0, - "ibgeState": 35, - "siafi": 6525, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.5847, - -48.5971 - ] - } - }, - { - "ibge": 2305803, - "name": "Ipu", - "capital": 0, - "ibgeState": 23, - "siafi": 1417, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.31748, - -40.7059 - ] - } - }, - { - "ibge": 3521309, - "name": "Ipuã", - "capital": 0, - "ibgeState": 35, - "siafi": 6527, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4438, - -48.0129 - ] - } - }, - { - "ibge": 4207684, - "name": "Ipuaçu", - "capital": 0, - "ibgeState": 42, - "siafi": 5737, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.635, - -52.4556 - ] - } - }, - { - "ibge": 2607307, - "name": "Ipubi", - "capital": 0, - "ibgeState": 26, - "siafi": 2445, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.64505, - -40.1476 - ] - } - }, - { - "ibge": 2404804, - "name": "Ipueira", - "capital": 0, - "ibgeState": 24, - "siafi": 1693, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.80596, - -37.2045 - ] - } - }, - { - "ibge": 1709807, - "name": "Ipueiras", - "capital": 0, - "ibgeState": 17, - "siafi": 84, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.2329, - -48.46 - ] - } - }, - { - "ibge": 2305902, - "name": "Ipueiras", - "capital": 0, - "ibgeState": 23, - "siafi": 1419, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.53802, - -40.7118 - ] - } - }, - { - "ibge": 3131505, - "name": "Ipuiúna", - "capital": 0, - "ibgeState": 31, - "siafi": 4629, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1013, - -46.1915 - ] - } - }, - { - "ibge": 4207700, - "name": "Ipumirim", - "capital": 0, - "ibgeState": 42, - "siafi": 8151, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0772, - -52.1289 - ] - } - }, - { - "ibge": 2914109, - "name": "Ipupiara", - "capital": 0, - "ibgeState": 29, - "siafi": 3583, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.8219, - -42.6179 - ] - } - }, - { - "ibge": 1400282, - "name": "Iracema", - "capital": 0, - "ibgeState": 14, - "siafi": 32, - "ddd": 95, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - 2.18305, - -61.0415 - ] - } - }, - { - "ibge": 2306009, - "name": "Iracema", - "capital": 0, - "ibgeState": 23, - "siafi": 1421, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.8124, - -38.2919 - ] - } - }, - { - "ibge": 4110656, - "name": "Iracema do Oeste", - "capital": 0, - "ibgeState": 41, - "siafi": 5485, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.4262, - -53.3528 - ] - } - }, - { - "ibge": 3521408, - "name": "Iracemápolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6529, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5832, - -47.523 - ] - } - }, - { - "ibge": 4207759, - "name": "Iraceminha", - "capital": 0, - "ibgeState": 42, - "siafi": 9953, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.8215, - -53.2767 - ] - } - }, - { - "ibge": 4310504, - "name": "Iraí", - "capital": 0, - "ibgeState": 43, - "siafi": 8711, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1951, - -53.2543 - ] - } - }, - { - "ibge": 3131604, - "name": "Iraí de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4631, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.9819, - -47.461 - ] - } - }, - { - "ibge": 2914208, - "name": "Irajuba", - "capital": 0, - "ibgeState": 29, - "siafi": 3585, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.2563, - -40.0848 - ] - } - }, - { - "ibge": 2914307, - "name": "Iramaia", - "capital": 0, - "ibgeState": 29, - "siafi": 3587, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.2902, - -40.9595 - ] - } - }, - { - "ibge": 1301852, - "name": "Iranduba", - "capital": 0, - "ibgeState": 13, - "siafi": 9835, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.27479, - -60.19 - ] - } - }, - { - "ibge": 4207809, - "name": "Irani", - "capital": 0, - "ibgeState": 42, - "siafi": 8153, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0287, - -51.9012 - ] - } - }, - { - "ibge": 3521507, - "name": "Irapuã", - "capital": 0, - "ibgeState": 35, - "siafi": 6531, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2768, - -49.4164 - ] - } - }, - { - "ibge": 3521606, - "name": "Irapuru", - "capital": 0, - "ibgeState": 35, - "siafi": 6533, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5684, - -51.3472 - ] - } - }, - { - "ibge": 2914406, - "name": "Iraquara", - "capital": 0, - "ibgeState": 29, - "siafi": 3589, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.2429, - -41.6155 - ] - } - }, - { - "ibge": 2914505, - "name": "Irará", - "capital": 0, - "ibgeState": 29, - "siafi": 3591, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.0504, - -38.7631 - ] - } - }, - { - "ibge": 4110706, - "name": "Irati", - "capital": 0, - "ibgeState": 41, - "siafi": 7607, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4697, - -50.6493 - ] - } - }, - { - "ibge": 4207858, - "name": "Irati", - "capital": 0, - "ibgeState": 42, - "siafi": 5585, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.6539, - -52.8955 - ] - } - }, - { - "ibge": 2306108, - "name": "Irauçuba", - "capital": 0, - "ibgeState": 23, - "siafi": 1423, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.74737, - -39.7843 - ] - } - }, - { - "ibge": 2914604, - "name": "Irecê", - "capital": 0, - "ibgeState": 29, - "siafi": 3593, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.3033, - -41.8535 - ] - } - }, - { - "ibge": 4110805, - "name": "Iretama", - "capital": 0, - "ibgeState": 41, - "siafi": 7609, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.4253, - -52.1012 - ] - } - }, - { - "ibge": 4207908, - "name": "Irineópolis", - "capital": 0, - "ibgeState": 42, - "siafi": 8155, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.242, - -50.7957 - ] - } - }, - { - "ibge": 1503507, - "name": "Irituia", - "capital": 0, - "ibgeState": 15, - "siafi": 469, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.76984, - -47.446 - ] - } - }, - { - "ibge": 3202652, - "name": "Irupi", - "capital": 0, - "ibgeState": 32, - "siafi": 2931, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3501, - -41.6444 - ] - } - }, - { - "ibge": 2204907, - "name": "Isaías Coelho", - "capital": 0, - "ibgeState": 22, - "siafi": 1097, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.73597, - -41.6735 - ] - } - }, - { - "ibge": 5210307, - "name": "Israelândia", - "capital": 0, - "ibgeState": 52, - "siafi": 9401, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.3144, - -50.9087 - ] - } - }, - { - "ibge": 4208005, - "name": "Itá", - "capital": 0, - "ibgeState": 42, - "siafi": 8157, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2907, - -52.3212 - ] - } - }, - { - "ibge": 4310538, - "name": "Itaara", - "capital": 0, - "ibgeState": 43, - "siafi": 990, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6013, - -53.7725 - ] - } - }, - { - "ibge": 2506905, - "name": "Itabaiana", - "capital": 0, - "ibgeState": 25, - "siafi": 2039, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.33167, - -35.3317 - ] - } - }, - { - "ibge": 2802908, - "name": "Itabaiana", - "capital": 0, - "ibgeState": 28, - "siafi": 3157, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.6826, - -37.4273 - ] - } - }, - { - "ibge": 2803005, - "name": "Itabaianinha", - "capital": 0, - "ibgeState": 28, - "siafi": 3159, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.2693, - -37.7875 - ] - } - }, - { - "ibge": 2914653, - "name": "Itabela", - "capital": 0, - "ibgeState": 29, - "siafi": 3279, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.5732, - -39.5593 - ] - } - }, - { - "ibge": 3521705, - "name": "Itaberá", - "capital": 0, - "ibgeState": 35, - "siafi": 6535, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8638, - -49.14 - ] - } - }, - { - "ibge": 2914703, - "name": "Itaberaba", - "capital": 0, - "ibgeState": 29, - "siafi": 3595, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.5242, - -40.3059 - ] - } - }, - { - "ibge": 5210406, - "name": "Itaberaí", - "capital": 0, - "ibgeState": 52, - "siafi": 9403, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0206, - -49.806 - ] - } - }, - { - "ibge": 2803104, - "name": "Itabi", - "capital": 0, - "ibgeState": 28, - "siafi": 3161, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.1248, - -37.1056 - ] - } - }, - { - "ibge": 3131703, - "name": "Itabira", - "capital": 0, - "ibgeState": 31, - "siafi": 4633, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6239, - -43.2312 - ] - } - }, - { - "ibge": 3131802, - "name": "Itabirinha", - "capital": 0, - "ibgeState": 31, - "siafi": 4635, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5712, - -41.234 - ] - } - }, - { - "ibge": 3131901, - "name": "Itabirito", - "capital": 0, - "ibgeState": 31, - "siafi": 4637, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2501, - -43.8038 - ] - } - }, - { - "ibge": 3301900, - "name": "Itaboraí", - "capital": 0, - "ibgeState": 33, - "siafi": 5837, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7565, - -42.8639 - ] - } - }, - { - "ibge": 2914802, - "name": "Itabuna", - "capital": 0, - "ibgeState": 29, - "siafi": 3597, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.7876, - -39.2781 - ] - } - }, - { - "ibge": 1710508, - "name": "Itacajá", - "capital": 0, - "ibgeState": 17, - "siafi": 9405, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.39293, - -47.7726 - ] - } - }, - { - "ibge": 3132008, - "name": "Itacambira", - "capital": 0, - "ibgeState": 31, - "siafi": 4639, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.0625, - -43.3069 - ] - } - }, - { - "ibge": 3132107, - "name": "Itacarambi", - "capital": 0, - "ibgeState": 31, - "siafi": 4641, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.089, - -44.095 - ] - } - }, - { - "ibge": 2914901, - "name": "Itacaré", - "capital": 0, - "ibgeState": 29, - "siafi": 3599, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.2784, - -38.9959 - ] - } - }, - { - "ibge": 1301902, - "name": "Itacoatiara", - "capital": 0, - "ibgeState": 13, - "siafi": 241, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.13861, - -58.4449 - ] - } - }, - { - "ibge": 2607406, - "name": "Itacuruba", - "capital": 0, - "ibgeState": 26, - "siafi": 2447, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.82231, - -38.6975 - ] - } - }, - { - "ibge": 4310553, - "name": "Itacurubi", - "capital": 0, - "ibgeState": 43, - "siafi": 7397, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.7913, - -55.2447 - ] - } - }, - { - "ibge": 2915007, - "name": "Itaeté", - "capital": 0, - "ibgeState": 29, - "siafi": 3601, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.9831, - -40.9677 - ] - } - }, - { - "ibge": 2915106, - "name": "Itagi", - "capital": 0, - "ibgeState": 29, - "siafi": 3603, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.1615, - -40.0131 - ] - } - }, - { - "ibge": 2915205, - "name": "Itagibá", - "capital": 0, - "ibgeState": 29, - "siafi": 3605, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.2782, - -39.8449 - ] - } - }, - { - "ibge": 2915304, - "name": "Itagimirim", - "capital": 0, - "ibgeState": 29, - "siafi": 3607, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0819, - -39.6133 - ] - } - }, - { - "ibge": 3202702, - "name": "Itaguaçu", - "capital": 0, - "ibgeState": 32, - "siafi": 5653, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8018, - -40.8601 - ] - } - }, - { - "ibge": 2915353, - "name": "Itaguaçu da Bahia", - "capital": 0, - "ibgeState": 29, - "siafi": 3281, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.0147, - -42.3997 - ] - } - }, - { - "ibge": 3302007, - "name": "Itaguaí", - "capital": 0, - "ibgeState": 33, - "siafi": 5839, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8636, - -43.7798 - ] - } - }, - { - "ibge": 4110904, - "name": "Itaguajé", - "capital": 0, - "ibgeState": 41, - "siafi": 7611, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6183, - -51.9674 - ] - } - }, - { - "ibge": 3132206, - "name": "Itaguara", - "capital": 0, - "ibgeState": 31, - "siafi": 4643, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3947, - -44.4875 - ] - } - }, - { - "ibge": 5210562, - "name": "Itaguari", - "capital": 0, - "ibgeState": 52, - "siafi": 9919, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.918, - -49.6071 - ] - } - }, - { - "ibge": 5210604, - "name": "Itaguaru", - "capital": 0, - "ibgeState": 52, - "siafi": 9407, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.7565, - -49.6354 - ] - } - }, - { - "ibge": 1710706, - "name": "Itaguatins", - "capital": 0, - "ibgeState": 17, - "siafi": 9409, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.77267, - -47.4864 - ] - } - }, - { - "ibge": 3521804, - "name": "Itaí", - "capital": 0, - "ibgeState": 35, - "siafi": 6537, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4213, - -49.092 - ] - } - }, - { - "ibge": 2607505, - "name": "Itaíba", - "capital": 0, - "ibgeState": 26, - "siafi": 2449, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.94569, - -37.4173 - ] - } - }, - { - "ibge": 2306207, - "name": "Itaiçaba", - "capital": 0, - "ibgeState": 23, - "siafi": 1425, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.67146, - -37.833 - ] - } - }, - { - "ibge": 2205003, - "name": "Itainópolis", - "capital": 0, - "ibgeState": 22, - "siafi": 1099, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.44336, - -41.4687 - ] - } - }, - { - "ibge": 4208104, - "name": "Itaiópolis", - "capital": 0, - "ibgeState": 42, - "siafi": 8159, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.339, - -49.9092 - ] - } - }, - { - "ibge": 2105351, - "name": "Itaipava do Grajaú", - "capital": 0, - "ibgeState": 21, - "siafi": 172, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.14252, - -45.7877 - ] - } - }, - { - "ibge": 3132305, - "name": "Itaipé", - "capital": 0, - "ibgeState": 31, - "siafi": 4645, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.4014, - -41.6697 - ] - } - }, - { - "ibge": 4110953, - "name": "Itaipulândia", - "capital": 0, - "ibgeState": 41, - "siafi": 5525, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.1366, - -54.3001 - ] - } - }, - { - "ibge": 2306256, - "name": "Itaitinga", - "capital": 0, - "ibgeState": 23, - "siafi": 991, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.96577, - -38.5298 - ] - } - }, - { - "ibge": 1503606, - "name": "Itaituba", - "capital": 0, - "ibgeState": 15, - "siafi": 471, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.2667, - -55.9926 - ] - } - }, - { - "ibge": 2404853, - "name": "Itajá", - "capital": 0, - "ibgeState": 24, - "siafi": 418, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.63894, - -36.8712 - ] - } - }, - { - "ibge": 5210802, - "name": "Itajá", - "capital": 0, - "ibgeState": 52, - "siafi": 9411, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.0673, - -51.5495 - ] - } - }, - { - "ibge": 4208203, - "name": "Itajaí", - "capital": 0, - "ibgeState": 42, - "siafi": 8161, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9101, - -48.6705 - ] - } - }, - { - "ibge": 3521903, - "name": "Itajobi", - "capital": 0, - "ibgeState": 35, - "siafi": 6539, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3123, - -49.0629 - ] - } - }, - { - "ibge": 3522000, - "name": "Itaju", - "capital": 0, - "ibgeState": 35, - "siafi": 6541, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9857, - -48.8116 - ] - } - }, - { - "ibge": 2915403, - "name": "Itaju do Colônia", - "capital": 0, - "ibgeState": 29, - "siafi": 3609, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.1366, - -39.7283 - ] - } - }, - { - "ibge": 3132404, - "name": "Itajubá", - "capital": 0, - "ibgeState": 31, - "siafi": 4647, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4225, - -45.4598 - ] - } - }, - { - "ibge": 2915502, - "name": "Itajuípe", - "capital": 0, - "ibgeState": 29, - "siafi": 3611, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.6788, - -39.3698 - ] - } - }, - { - "ibge": 3302056, - "name": "Italva", - "capital": 0, - "ibgeState": 33, - "siafi": 5929, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4296, - -41.7014 - ] - } - }, - { - "ibge": 2915601, - "name": "Itamaraju", - "capital": 0, - "ibgeState": 29, - "siafi": 3613, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.0378, - -39.5386 - ] - } - }, - { - "ibge": 3132503, - "name": "Itamarandiba", - "capital": 0, - "ibgeState": 31, - "siafi": 4649, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.8552, - -42.8561 - ] - } - }, - { - "ibge": 1301951, - "name": "Itamarati", - "capital": 0, - "ibgeState": 13, - "siafi": 9837, - "ddd": 97, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -6.43852, - -68.2437 - ] - } - }, - { - "ibge": 3132602, - "name": "Itamarati de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4651, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4179, - -42.813 - ] - } - }, - { - "ibge": 2915700, - "name": "Itamari", - "capital": 0, - "ibgeState": 29, - "siafi": 3615, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.7782, - -39.683 - ] - } - }, - { - "ibge": 3132701, - "name": "Itambacuri", - "capital": 0, - "ibgeState": 31, - "siafi": 4653, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.035, - -41.683 - ] - } - }, - { - "ibge": 4111001, - "name": "Itambaracá", - "capital": 0, - "ibgeState": 41, - "siafi": 7613, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0181, - -50.4097 - ] - } - }, - { - "ibge": 4111100, - "name": "Itambé", - "capital": 0, - "ibgeState": 41, - "siafi": 7615, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6601, - -51.9912 - ] - } - }, - { - "ibge": 2607653, - "name": "Itambé", - "capital": 0, - "ibgeState": 26, - "siafi": 2597, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.41403, - -35.0963 - ] - } - }, - { - "ibge": 2915809, - "name": "Itambé", - "capital": 0, - "ibgeState": 29, - "siafi": 3617, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.2429, - -40.63 - ] - } - }, - { - "ibge": 3132800, - "name": "Itambé do Mato Dentro", - "capital": 0, - "ibgeState": 31, - "siafi": 4655, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.4158, - -43.3182 - ] - } - }, - { - "ibge": 3132909, - "name": "Itamogi", - "capital": 0, - "ibgeState": 31, - "siafi": 4657, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0758, - -47.046 - ] - } - }, - { - "ibge": 3133006, - "name": "Itamonte", - "capital": 0, - "ibgeState": 31, - "siafi": 4659, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2859, - -44.868 - ] - } - }, - { - "ibge": 2915908, - "name": "Itanagra", - "capital": 0, - "ibgeState": 29, - "siafi": 3619, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.2614, - -38.0436 - ] - } - }, - { - "ibge": 3522109, - "name": "Itanhaém", - "capital": 0, - "ibgeState": 35, - "siafi": 6543, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.1736, - -46.788 - ] - } - }, - { - "ibge": 3133105, - "name": "Itanhandu", - "capital": 0, - "ibgeState": 31, - "siafi": 4661, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2942, - -44.9382 - ] - } - }, - { - "ibge": 5104542, - "name": "Itanhangá", - "capital": 0, - "ibgeState": 51, - "siafi": 1186, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.2259, - -56.6463 - ] - } - }, - { - "ibge": 2916005, - "name": "Itanhém", - "capital": 0, - "ibgeState": 29, - "siafi": 3621, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.1642, - -40.3321 - ] - } - }, - { - "ibge": 3133204, - "name": "Itanhomi", - "capital": 0, - "ibgeState": 31, - "siafi": 4663, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.1736, - -41.863 - ] - } - }, - { - "ibge": 3133303, - "name": "Itaobim", - "capital": 0, - "ibgeState": 31, - "siafi": 4665, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.5571, - -41.5017 - ] - } - }, - { - "ibge": 3522158, - "name": "Itaóca", - "capital": 0, - "ibgeState": 35, - "siafi": 3053, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.6393, - -48.8413 - ] - } - }, - { - "ibge": 3302106, - "name": "Itaocara", - "capital": 0, - "ibgeState": 33, - "siafi": 5841, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6748, - -42.0758 - ] - } - }, - { - "ibge": 5210901, - "name": "Itapaci", - "capital": 0, - "ibgeState": 52, - "siafi": 9413, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.9522, - -49.5511 - ] - } - }, - { - "ibge": 3133402, - "name": "Itapagipe", - "capital": 0, - "ibgeState": 31, - "siafi": 4667, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9062, - -49.3781 - ] - } - }, - { - "ibge": 2306306, - "name": "Itapajé", - "capital": 0, - "ibgeState": 23, - "siafi": 1427, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.68314, - -39.5855 - ] - } - }, - { - "ibge": 2916104, - "name": "Itaparica", - "capital": 0, - "ibgeState": 29, - "siafi": 3623, - "ddd": 71, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.8932, - -38.68 - ] - } - }, - { - "ibge": 2916203, - "name": "Itapé", - "capital": 0, - "ibgeState": 29, - "siafi": 3625, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.8876, - -39.4239 - ] - } - }, - { - "ibge": 2916302, - "name": "Itapebi", - "capital": 0, - "ibgeState": 29, - "siafi": 3627, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.9551, - -39.5329 - ] - } - }, - { - "ibge": 3133501, - "name": "Itapecerica", - "capital": 0, - "ibgeState": 31, - "siafi": 4669, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4704, - -45.127 - ] - } - }, - { - "ibge": 3522208, - "name": "Itapecerica da Serra", - "capital": 0, - "ibgeState": 35, - "siafi": 6545, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7161, - -46.8572 - ] - } - }, - { - "ibge": 2105401, - "name": "Itapecuru Mirim", - "capital": 0, - "ibgeState": 21, - "siafi": 807, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.40202, - -44.3508 - ] - } - }, - { - "ibge": 4111209, - "name": "Itapejara d'Oeste", - "capital": 0, - "ibgeState": 41, - "siafi": 7617, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.9619, - -52.8152 - ] - } - }, - { - "ibge": 4208302, - "name": "Itapema", - "capital": 0, - "ibgeState": 42, - "siafi": 8163, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0861, - -48.616 - ] - } - }, - { - "ibge": 3202801, - "name": "Itapemirim", - "capital": 0, - "ibgeState": 32, - "siafi": 5655, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0095, - -40.8307 - ] - } - }, - { - "ibge": 4111258, - "name": "Itaperuçu", - "capital": 0, - "ibgeState": 41, - "siafi": 5451, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.2193, - -49.3454 - ] - } - }, - { - "ibge": 3302205, - "name": "Itaperuna", - "capital": 0, - "ibgeState": 33, - "siafi": 5843, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1997, - -41.8799 - ] - } - }, - { - "ibge": 2607703, - "name": "Itapetim", - "capital": 0, - "ibgeState": 26, - "siafi": 2453, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.37178, - -37.1863 - ] - } - }, - { - "ibge": 2916401, - "name": "Itapetinga", - "capital": 0, - "ibgeState": 29, - "siafi": 3629, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.2475, - -40.2482 - ] - } - }, - { - "ibge": 3522307, - "name": "Itapetininga", - "capital": 0, - "ibgeState": 35, - "siafi": 6547, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5886, - -48.0483 - ] - } - }, - { - "ibge": 3522406, - "name": "Itapeva", - "capital": 0, - "ibgeState": 35, - "siafi": 6549, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.9788, - -48.8764 - ] - } - }, - { - "ibge": 3133600, - "name": "Itapeva", - "capital": 0, - "ibgeState": 31, - "siafi": 4671, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7665, - -46.2241 - ] - } - }, - { - "ibge": 3522505, - "name": "Itapevi", - "capital": 0, - "ibgeState": 35, - "siafi": 6551, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5488, - -46.9327 - ] - } - }, - { - "ibge": 2916500, - "name": "Itapicuru", - "capital": 0, - "ibgeState": 29, - "siafi": 3631, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.3088, - -38.2262 - ] - } - }, - { - "ibge": 2306405, - "name": "Itapipoca", - "capital": 0, - "ibgeState": 23, - "siafi": 1429, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.49933, - -39.5836 - ] - } - }, - { - "ibge": 3522604, - "name": "Itapira", - "capital": 0, - "ibgeState": 35, - "siafi": 6553, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4357, - -46.8224 - ] - } - }, - { - "ibge": 1302009, - "name": "Itapiranga", - "capital": 0, - "ibgeState": 13, - "siafi": 243, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -2.74081, - -58.0293 - ] - } - }, - { - "ibge": 4208401, - "name": "Itapiranga", - "capital": 0, - "ibgeState": 42, - "siafi": 8165, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1659, - -53.7166 - ] - } - }, - { - "ibge": 5211008, - "name": "Itapirapuã", - "capital": 0, - "ibgeState": 52, - "siafi": 9415, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.8205, - -50.6094 - ] - } - }, - { - "ibge": 3522653, - "name": "Itapirapuã Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 3055, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.572, - -49.1661 - ] - } - }, - { - "ibge": 1710904, - "name": "Itapiratins", - "capital": 0, - "ibgeState": 17, - "siafi": 347, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.37982, - -48.1072 - ] - } - }, - { - "ibge": 2607752, - "name": "Itapissuma", - "capital": 0, - "ibgeState": 26, - "siafi": 2633, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.76798, - -34.8971 - ] - } - }, - { - "ibge": 2916609, - "name": "Itapitanga", - "capital": 0, - "ibgeState": 29, - "siafi": 3633, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.4139, - -39.5657 - ] - } - }, - { - "ibge": 2306504, - "name": "Itapiúna", - "capital": 0, - "ibgeState": 23, - "siafi": 1431, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.55516, - -38.9281 - ] - } - }, - { - "ibge": 4208450, - "name": "Itapoá", - "capital": 0, - "ibgeState": 42, - "siafi": 9985, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.1158, - -48.6182 - ] - } - }, - { - "ibge": 3522703, - "name": "Itápolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6555, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5942, - -48.8149 - ] - } - }, - { - "ibge": 5004502, - "name": "Itaporã", - "capital": 0, - "ibgeState": 50, - "siafi": 9089, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.08, - -54.7934 - ] - } - }, - { - "ibge": 1711100, - "name": "Itaporã do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9417, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.57172, - -48.6895 - ] - } - }, - { - "ibge": 3522802, - "name": "Itaporanga", - "capital": 0, - "ibgeState": 35, - "siafi": 6557, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7043, - -49.4819 - ] - } - }, - { - "ibge": 2507002, - "name": "Itaporanga", - "capital": 0, - "ibgeState": 25, - "siafi": 2041, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.30202, - -38.1504 - ] - } - }, - { - "ibge": 2803203, - "name": "Itaporanga d'Ajuda", - "capital": 0, - "ibgeState": 28, - "siafi": 3163, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.99, - -37.3078 - ] - } - }, - { - "ibge": 2507101, - "name": "Itapororoca", - "capital": 0, - "ibgeState": 25, - "siafi": 2043, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.82374, - -35.2406 - ] - } - }, - { - "ibge": 1101104, - "name": "Itapuã do Oeste", - "capital": 0, - "ibgeState": 11, - "siafi": 683, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -9.19687, - -63.1809 - ] - } - }, - { - "ibge": 4310579, - "name": "Itapuca", - "capital": 0, - "ibgeState": 43, - "siafi": 6027, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.7768, - -52.1693 - ] - } - }, - { - "ibge": 3522901, - "name": "Itapuí", - "capital": 0, - "ibgeState": 35, - "siafi": 6559, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2324, - -48.7197 - ] - } - }, - { - "ibge": 3523008, - "name": "Itapura", - "capital": 0, - "ibgeState": 35, - "siafi": 6561, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6419, - -51.5063 - ] - } - }, - { - "ibge": 5211206, - "name": "Itapuranga", - "capital": 0, - "ibgeState": 52, - "siafi": 9419, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.5606, - -49.949 - ] - } - }, - { - "ibge": 3523107, - "name": "Itaquaquecetuba", - "capital": 0, - "ibgeState": 35, - "siafi": 6563, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4835, - -46.3457 - ] - } - }, - { - "ibge": 2916708, - "name": "Itaquara", - "capital": 0, - "ibgeState": 29, - "siafi": 3635, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.4459, - -39.9378 - ] - } - }, - { - "ibge": 4310603, - "name": "Itaqui", - "capital": 0, - "ibgeState": 43, - "siafi": 8713, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.1311, - -56.5515 - ] - } - }, - { - "ibge": 5004601, - "name": "Itaquiraí", - "capital": 0, - "ibgeState": 50, - "siafi": 9807, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -23.4779, - -54.187 - ] - } - }, - { - "ibge": 2607802, - "name": "Itaquitinga", - "capital": 0, - "ibgeState": 26, - "siafi": 2455, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.66373, - -35.1002 - ] - } - }, - { - "ibge": 3202900, - "name": "Itarana", - "capital": 0, - "ibgeState": 32, - "siafi": 5657, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.875, - -40.8753 - ] - } - }, - { - "ibge": 2916807, - "name": "Itarantim", - "capital": 0, - "ibgeState": 29, - "siafi": 3637, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.6528, - -40.065 - ] - } - }, - { - "ibge": 3523206, - "name": "Itararé", - "capital": 0, - "ibgeState": 35, - "siafi": 6565, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.1085, - -49.3352 - ] - } - }, - { - "ibge": 2306553, - "name": "Itarema", - "capital": 0, - "ibgeState": 23, - "siafi": 1595, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.9248, - -39.9167 - ] - } - }, - { - "ibge": 3523305, - "name": "Itariri", - "capital": 0, - "ibgeState": 35, - "siafi": 6567, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.2834, - -47.1736 - ] - } - }, - { - "ibge": 5211305, - "name": "Itarumã", - "capital": 0, - "ibgeState": 52, - "siafi": 9421, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7646, - -51.3485 - ] - } - }, - { - "ibge": 4310652, - "name": "Itati", - "capital": 0, - "ibgeState": 43, - "siafi": 1144, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4974, - -50.1016 - ] - } - }, - { - "ibge": 3302254, - "name": "Itatiaia", - "capital": 0, - "ibgeState": 33, - "siafi": 6003, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4897, - -44.5675 - ] - } - }, - { - "ibge": 3133709, - "name": "Itatiaiuçu", - "capital": 0, - "ibgeState": 31, - "siafi": 4673, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1983, - -44.4211 - ] - } - }, - { - "ibge": 3523404, - "name": "Itatiba", - "capital": 0, - "ibgeState": 35, - "siafi": 6569, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0035, - -46.8464 - ] - } - }, - { - "ibge": 4310702, - "name": "Itatiba do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8715, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3846, - -52.4538 - ] - } - }, - { - "ibge": 2916856, - "name": "Itatim", - "capital": 0, - "ibgeState": 29, - "siafi": 3283, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.7099, - -39.6952 - ] - } - }, - { - "ibge": 3523503, - "name": "Itatinga", - "capital": 0, - "ibgeState": 35, - "siafi": 6571, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1047, - -48.6157 - ] - } - }, - { - "ibge": 2306603, - "name": "Itatira", - "capital": 0, - "ibgeState": 23, - "siafi": 1433, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.52608, - -39.6202 - ] - } - }, - { - "ibge": 2507200, - "name": "Itatuba", - "capital": 0, - "ibgeState": 25, - "siafi": 2045, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.38115, - -35.638 - ] - } - }, - { - "ibge": 2404903, - "name": "Itaú", - "capital": 0, - "ibgeState": 24, - "siafi": 1695, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.8363, - -37.9912 - ] - } - }, - { - "ibge": 3133758, - "name": "Itaú de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 5731, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7375, - -46.7525 - ] - } - }, - { - "ibge": 5104559, - "name": "Itaúba", - "capital": 0, - "ibgeState": 51, - "siafi": 9901, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.0614, - -55.2766 - ] - } - }, - { - "ibge": 1600253, - "name": "Itaubal", - "capital": 0, - "ibgeState": 16, - "siafi": 669, - "ddd": 96, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - 0.602185, - -50.6996 - ] - } - }, - { - "ibge": 5211404, - "name": "Itauçu", - "capital": 0, - "ibgeState": 52, - "siafi": 9423, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.2029, - -49.6109 - ] - } - }, - { - "ibge": 2205102, - "name": "Itaueira", - "capital": 0, - "ibgeState": 22, - "siafi": 1101, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.59989, - -43.0249 - ] - } - }, - { - "ibge": 3133808, - "name": "Itaúna", - "capital": 0, - "ibgeState": 31, - "siafi": 4675, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0818, - -44.5801 - ] - } - }, - { - "ibge": 4111308, - "name": "Itaúna do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 7619, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7289, - -52.8874 - ] - } - }, - { - "ibge": 3133907, - "name": "Itaverava", - "capital": 0, - "ibgeState": 31, - "siafi": 4677, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6769, - -43.6141 - ] - } - }, - { - "ibge": 3134004, - "name": "Itinga", - "capital": 0, - "ibgeState": 31, - "siafi": 4679, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.61, - -41.7672 - ] - } - }, - { - "ibge": 2105427, - "name": "Itinga do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 174, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.45293, - -47.5235 - ] - } - }, - { - "ibge": 5104609, - "name": "Itiquira", - "capital": 0, - "ibgeState": 51, - "siafi": 9091, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -17.2147, - -54.1422 - ] - } - }, - { - "ibge": 3523602, - "name": "Itirapina", - "capital": 0, - "ibgeState": 35, - "siafi": 6573, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2562, - -47.8166 - ] - } - }, - { - "ibge": 3523701, - "name": "Itirapuã", - "capital": 0, - "ibgeState": 35, - "siafi": 6575, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6416, - -47.2194 - ] - } - }, - { - "ibge": 2916906, - "name": "Itiruçu", - "capital": 0, - "ibgeState": 29, - "siafi": 3639, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.529, - -40.1472 - ] - } - }, - { - "ibge": 2917003, - "name": "Itiúba", - "capital": 0, - "ibgeState": 29, - "siafi": 3641, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.6948, - -39.8446 - ] - } - }, - { - "ibge": 3523800, - "name": "Itobi", - "capital": 0, - "ibgeState": 35, - "siafi": 6577, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7309, - -46.9743 - ] - } - }, - { - "ibge": 2917102, - "name": "Itororó", - "capital": 0, - "ibgeState": 29, - "siafi": 3643, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.11, - -40.0684 - ] - } - }, - { - "ibge": 3523909, - "name": "Itu", - "capital": 0, - "ibgeState": 35, - "siafi": 6579, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2544, - -47.2927 - ] - } - }, - { - "ibge": 2917201, - "name": "Ituaçu", - "capital": 0, - "ibgeState": 29, - "siafi": 3645, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.8107, - -41.3003 - ] - } - }, - { - "ibge": 2917300, - "name": "Ituberá", - "capital": 0, - "ibgeState": 29, - "siafi": 3647, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.7249, - -39.1481 - ] - } - }, - { - "ibge": 3134103, - "name": "Itueta", - "capital": 0, - "ibgeState": 31, - "siafi": 4681, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.3999, - -41.1746 - ] - } - }, - { - "ibge": 3134202, - "name": "Ituiutaba", - "capital": 0, - "ibgeState": 31, - "siafi": 4683, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.9772, - -49.4639 - ] - } - }, - { - "ibge": 5211503, - "name": "Itumbiara", - "capital": 0, - "ibgeState": 52, - "siafi": 9425, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4093, - -49.2158 - ] - } - }, - { - "ibge": 3134301, - "name": "Itumirim", - "capital": 0, - "ibgeState": 31, - "siafi": 4685, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3171, - -44.8724 - ] - } - }, - { - "ibge": 3524006, - "name": "Itupeva", - "capital": 0, - "ibgeState": 35, - "siafi": 6581, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1526, - -47.0593 - ] - } - }, - { - "ibge": 1503705, - "name": "Itupiranga", - "capital": 0, - "ibgeState": 15, - "siafi": 473, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.13272, - -49.3358 - ] - } - }, - { - "ibge": 4208500, - "name": "Ituporanga", - "capital": 0, - "ibgeState": 42, - "siafi": 8167, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4101, - -49.5963 - ] - } - }, - { - "ibge": 3134400, - "name": "Iturama", - "capital": 0, - "ibgeState": 31, - "siafi": 4687, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7276, - -50.1966 - ] - } - }, - { - "ibge": 3134509, - "name": "Itutinga", - "capital": 0, - "ibgeState": 31, - "siafi": 4689, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3, - -44.6567 - ] - } - }, - { - "ibge": 3524105, - "name": "Ituverava", - "capital": 0, - "ibgeState": 35, - "siafi": 6583, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3355, - -47.7902 - ] - } - }, - { - "ibge": 2917334, - "name": "Iuiú", - "capital": 0, - "ibgeState": 29, - "siafi": 3285, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.4054, - -43.5595 - ] - } - }, - { - "ibge": 3203007, - "name": "Iúna", - "capital": 0, - "ibgeState": 32, - "siafi": 5659, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3531, - -41.5334 - ] - } - }, - { - "ibge": 4111407, - "name": "Ivaí", - "capital": 0, - "ibgeState": 41, - "siafi": 7621, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.0067, - -50.857 - ] - } - }, - { - "ibge": 4111506, - "name": "Ivaiporã", - "capital": 0, - "ibgeState": 41, - "siafi": 7623, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.2485, - -51.6754 - ] - } - }, - { - "ibge": 4111555, - "name": "Ivaté", - "capital": 0, - "ibgeState": 41, - "siafi": 9955, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4072, - -53.3687 - ] - } - }, - { - "ibge": 4111605, - "name": "Ivatuba", - "capital": 0, - "ibgeState": 41, - "siafi": 7625, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6187, - -52.2203 - ] - } - }, - { - "ibge": 5004700, - "name": "Ivinhema", - "capital": 0, - "ibgeState": 50, - "siafi": 9093, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.3046, - -53.8184 - ] - } - }, - { - "ibge": 5211602, - "name": "Ivolândia", - "capital": 0, - "ibgeState": 52, - "siafi": 9427, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.5995, - -50.7921 - ] - } - }, - { - "ibge": 4310751, - "name": "Ivorá", - "capital": 0, - "ibgeState": 43, - "siafi": 7395, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5232, - -53.5842 - ] - } - }, - { - "ibge": 4310801, - "name": "Ivoti", - "capital": 0, - "ibgeState": 43, - "siafi": 8717, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5995, - -51.1533 - ] - } - }, - { - "ibge": 2607901, - "name": "Jaboatão dos Guararapes", - "capital": 0, - "ibgeState": 26, - "siafi": 2457, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.11298, - -35.015 - ] - } - }, - { - "ibge": 4208609, - "name": "Jaborá", - "capital": 0, - "ibgeState": 42, - "siafi": 8169, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1782, - -51.7279 - ] - } - }, - { - "ibge": 2917359, - "name": "Jaborandi", - "capital": 0, - "ibgeState": 29, - "siafi": 9859, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.6071, - -44.4255 - ] - } - }, - { - "ibge": 3524204, - "name": "Jaborandi", - "capital": 0, - "ibgeState": 35, - "siafi": 6585, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6884, - -48.4112 - ] - } - }, - { - "ibge": 4111704, - "name": "Jaboti", - "capital": 0, - "ibgeState": 41, - "siafi": 7627, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7435, - -50.0729 - ] - } - }, - { - "ibge": 4310850, - "name": "Jaboticaba", - "capital": 0, - "ibgeState": 43, - "siafi": 7393, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6347, - -53.2762 - ] - } - }, - { - "ibge": 3524303, - "name": "Jaboticabal", - "capital": 0, - "ibgeState": 35, - "siafi": 6587, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.252, - -48.3252 - ] - } - }, - { - "ibge": 3134608, - "name": "Jaboticatubas", - "capital": 0, - "ibgeState": 31, - "siafi": 4691, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5119, - -43.7373 - ] - } - }, - { - "ibge": 2405009, - "name": "Jaçanã", - "capital": 0, - "ibgeState": 24, - "siafi": 1697, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.41856, - -36.2031 - ] - } - }, - { - "ibge": 2917409, - "name": "Jacaraci", - "capital": 0, - "ibgeState": 29, - "siafi": 3649, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.8541, - -42.4329 - ] - } - }, - { - "ibge": 2507309, - "name": "Jacaraú", - "capital": 0, - "ibgeState": 25, - "siafi": 2047, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.61453, - -35.289 - ] - } - }, - { - "ibge": 2703403, - "name": "Jacaré dos Homens", - "capital": 0, - "ibgeState": 27, - "siafi": 2767, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.63545, - -37.2076 - ] - } - }, - { - "ibge": 1503754, - "name": "Jacareacanga", - "capital": 0, - "ibgeState": 15, - "siafi": 631, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.21469, - -57.7544 - ] - } - }, - { - "ibge": 3524402, - "name": "Jacareí", - "capital": 0, - "ibgeState": 35, - "siafi": 6589, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2983, - -45.9658 - ] - } - }, - { - "ibge": 4111803, - "name": "Jacarezinho", - "capital": 0, - "ibgeState": 41, - "siafi": 7629, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1591, - -49.9739 - ] - } - }, - { - "ibge": 3524501, - "name": "Jaci", - "capital": 0, - "ibgeState": 35, - "siafi": 6591, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8805, - -49.5797 - ] - } - }, - { - "ibge": 5104807, - "name": "Jaciara", - "capital": 0, - "ibgeState": 51, - "siafi": 9095, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.9548, - -54.9733 - ] - } - }, - { - "ibge": 3134707, - "name": "Jacinto", - "capital": 0, - "ibgeState": 31, - "siafi": 4693, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.1428, - -40.295 - ] - } - }, - { - "ibge": 4208708, - "name": "Jacinto Machado", - "capital": 0, - "ibgeState": 42, - "siafi": 8171, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.9961, - -49.7623 - ] - } - }, - { - "ibge": 2917508, - "name": "Jacobina", - "capital": 0, - "ibgeState": 29, - "siafi": 3651, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.1812, - -40.5117 - ] - } - }, - { - "ibge": 2205151, - "name": "Jacobina do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 2273, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.93063, - -41.2075 - ] - } - }, - { - "ibge": 3134806, - "name": "Jacuí", - "capital": 0, - "ibgeState": 31, - "siafi": 4695, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0137, - -46.7359 - ] - } - }, - { - "ibge": 2703502, - "name": "Jacuípe", - "capital": 0, - "ibgeState": 27, - "siafi": 2769, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.83951, - -35.4591 - ] - } - }, - { - "ibge": 4310876, - "name": "Jacuizinho", - "capital": 0, - "ibgeState": 43, - "siafi": 1146, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.0401, - -53.0657 - ] - } - }, - { - "ibge": 1503804, - "name": "Jacundá", - "capital": 0, - "ibgeState": 15, - "siafi": 475, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.44617, - -49.1153 - ] - } - }, - { - "ibge": 3524600, - "name": "Jacupiranga", - "capital": 0, - "ibgeState": 35, - "siafi": 6593, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.6963, - -48.0064 - ] - } - }, - { - "ibge": 4310900, - "name": "Jacutinga", - "capital": 0, - "ibgeState": 43, - "siafi": 8719, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7291, - -52.5372 - ] - } - }, - { - "ibge": 3134905, - "name": "Jacutinga", - "capital": 0, - "ibgeState": 31, - "siafi": 4697, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.286, - -46.6166 - ] - } - }, - { - "ibge": 4111902, - "name": "Jaguapitã", - "capital": 0, - "ibgeState": 41, - "siafi": 7631, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1104, - -51.5342 - ] - } - }, - { - "ibge": 2917607, - "name": "Jaguaquara", - "capital": 0, - "ibgeState": 29, - "siafi": 3653, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.5248, - -39.964 - ] - } - }, - { - "ibge": 3135001, - "name": "Jaguaraçu", - "capital": 0, - "ibgeState": 31, - "siafi": 4699, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.647, - -42.7498 - ] - } - }, - { - "ibge": 4311007, - "name": "Jaguarão", - "capital": 0, - "ibgeState": 43, - "siafi": 8721, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -32.5604, - -53.377 - ] - } - }, - { - "ibge": 2917706, - "name": "Jaguarari", - "capital": 0, - "ibgeState": 29, - "siafi": 3655, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.2569, - -40.1999 - ] - } - }, - { - "ibge": 3203056, - "name": "Jaguaré", - "capital": 0, - "ibgeState": 32, - "siafi": 5713, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.907, - -40.0759 - ] - } - }, - { - "ibge": 2306702, - "name": "Jaguaretama", - "capital": 0, - "ibgeState": 23, - "siafi": 1435, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.6051, - -38.7639 - ] - } - }, - { - "ibge": 4311106, - "name": "Jaguari", - "capital": 0, - "ibgeState": 43, - "siafi": 8723, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4936, - -54.703 - ] - } - }, - { - "ibge": 4112009, - "name": "Jaguariaíva", - "capital": 0, - "ibgeState": 41, - "siafi": 7633, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.2439, - -49.7066 - ] - } - }, - { - "ibge": 2306801, - "name": "Jaguaribara", - "capital": 0, - "ibgeState": 23, - "siafi": 1437, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.67765, - -38.5359 - ] - } - }, - { - "ibge": 2306900, - "name": "Jaguaribe", - "capital": 0, - "ibgeState": 23, - "siafi": 1439, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.90213, - -38.6227 - ] - } - }, - { - "ibge": 2917805, - "name": "Jaguaripe", - "capital": 0, - "ibgeState": 29, - "siafi": 3657, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.1109, - -38.8939 - ] - } - }, - { - "ibge": 3524709, - "name": "Jaguariúna", - "capital": 0, - "ibgeState": 35, - "siafi": 6595, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7037, - -46.9851 - ] - } - }, - { - "ibge": 2307007, - "name": "Jaguaruana", - "capital": 0, - "ibgeState": 23, - "siafi": 1441, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.83151, - -37.781 - ] - } - }, - { - "ibge": 4208807, - "name": "Jaguaruna", - "capital": 0, - "ibgeState": 42, - "siafi": 8173, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6146, - -49.0296 - ] - } - }, - { - "ibge": 3135050, - "name": "Jaíba", - "capital": 0, - "ibgeState": 31, - "siafi": 2893, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.3432, - -43.6688 - ] - } - }, - { - "ibge": 2205201, - "name": "Jaicós", - "capital": 0, - "ibgeState": 22, - "siafi": 1103, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.36229, - -41.1371 - ] - } - }, - { - "ibge": 3524808, - "name": "Jales", - "capital": 0, - "ibgeState": 35, - "siafi": 6597, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2672, - -50.5494 - ] - } - }, - { - "ibge": 3524907, - "name": "Jambeiro", - "capital": 0, - "ibgeState": 35, - "siafi": 6599, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2522, - -45.6942 - ] - } - }, - { - "ibge": 3135076, - "name": "Jampruca", - "capital": 0, - "ibgeState": 31, - "siafi": 2655, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.461, - -41.809 - ] - } - }, - { - "ibge": 3135100, - "name": "Janaúba", - "capital": 0, - "ibgeState": 31, - "siafi": 4701, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.8022, - -43.3132 - ] - } - }, - { - "ibge": 5211701, - "name": "Jandaia", - "capital": 0, - "ibgeState": 52, - "siafi": 9429, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.0481, - -50.1453 - ] - } - }, - { - "ibge": 4112108, - "name": "Jandaia do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 7635, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6011, - -51.6448 - ] - } - }, - { - "ibge": 2405108, - "name": "Jandaíra", - "capital": 0, - "ibgeState": 24, - "siafi": 1699, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.35211, - -36.1278 - ] - } - }, - { - "ibge": 2917904, - "name": "Jandaíra", - "capital": 0, - "ibgeState": 29, - "siafi": 3659, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.5616, - -37.7853 - ] - } - }, - { - "ibge": 3525003, - "name": "Jandira", - "capital": 0, - "ibgeState": 35, - "siafi": 6601, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5275, - -46.9023 - ] - } - }, - { - "ibge": 2405207, - "name": "Janduís", - "capital": 0, - "ibgeState": 24, - "siafi": 1701, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.01474, - -37.4048 - ] - } - }, - { - "ibge": 5104906, - "name": "Jangada", - "capital": 0, - "ibgeState": 51, - "siafi": 9861, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.235, - -56.4917 - ] - } - }, - { - "ibge": 4112207, - "name": "Janiópolis", - "capital": 0, - "ibgeState": 41, - "siafi": 7637, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.1401, - -52.7784 - ] - } - }, - { - "ibge": 3135209, - "name": "Januária", - "capital": 0, - "ibgeState": 31, - "siafi": 4703, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.4802, - -44.3639 - ] - } - }, - { - "ibge": 2405306, - "name": "Januário Cicco (Boa Saúde)", - "capital": 0, - "ibgeState": 24, - "siafi": 1703, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.16566, - -35.6219 - ] - } - }, - { - "ibge": 3135308, - "name": "Japaraíba", - "capital": 0, - "ibgeState": 31, - "siafi": 4705, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1442, - -45.5015 - ] - } - }, - { - "ibge": 2703601, - "name": "Japaratinga", - "capital": 0, - "ibgeState": 27, - "siafi": 2771, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.08746, - -35.2634 - ] - } - }, - { - "ibge": 2803302, - "name": "Japaratuba", - "capital": 0, - "ibgeState": 28, - "siafi": 3165, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.5849, - -36.9418 - ] - } - }, - { - "ibge": 3302270, - "name": "Japeri", - "capital": 0, - "ibgeState": 33, - "siafi": 2913, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6435, - -43.6602 - ] - } - }, - { - "ibge": 2405405, - "name": "Japi", - "capital": 0, - "ibgeState": 24, - "siafi": 1705, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.46544, - -35.9346 - ] - } - }, - { - "ibge": 4112306, - "name": "Japira", - "capital": 0, - "ibgeState": 41, - "siafi": 7639, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8142, - -50.1422 - ] - } - }, - { - "ibge": 2803401, - "name": "Japoatã", - "capital": 0, - "ibgeState": 28, - "siafi": 3167, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.3477, - -36.8045 - ] - } - }, - { - "ibge": 3135357, - "name": "Japonvar", - "capital": 0, - "ibgeState": 31, - "siafi": 630, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.9891, - -44.2758 - ] - } - }, - { - "ibge": 5004809, - "name": "Japorã", - "capital": 0, - "ibgeState": 50, - "siafi": 161, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -23.8903, - -54.4059 - ] - } - }, - { - "ibge": 4112405, - "name": "Japurá", - "capital": 0, - "ibgeState": 41, - "siafi": 7641, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4693, - -52.5557 - ] - } - }, - { - "ibge": 1302108, - "name": "Japurá", - "capital": 0, - "ibgeState": 13, - "siafi": 245, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -1.88237, - -66.9291 - ] - } - }, - { - "ibge": 2607950, - "name": "Jaqueira", - "capital": 0, - "ibgeState": 26, - "siafi": 548, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.72618, - -35.7942 - ] - } - }, - { - "ibge": 4311122, - "name": "Jaquirana", - "capital": 0, - "ibgeState": 43, - "siafi": 7391, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.8811, - -50.3637 - ] - } - }, - { - "ibge": 5211800, - "name": "Jaraguá", - "capital": 0, - "ibgeState": 52, - "siafi": 9431, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.7529, - -49.3344 - ] - } - }, - { - "ibge": 4208906, - "name": "Jaraguá do Sul", - "capital": 0, - "ibgeState": 42, - "siafi": 8175, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.4851, - -49.0713 - ] - } - }, - { - "ibge": 5004908, - "name": "Jaraguari", - "capital": 0, - "ibgeState": 50, - "siafi": 9097, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -20.1386, - -54.3996 - ] - } - }, - { - "ibge": 2703700, - "name": "Jaramataia", - "capital": 0, - "ibgeState": 27, - "siafi": 2773, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.66224, - -37.0046 - ] - } - }, - { - "ibge": 2307106, - "name": "Jardim", - "capital": 0, - "ibgeState": 23, - "siafi": 1443, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.57599, - -39.2826 - ] - } - }, - { - "ibge": 5005004, - "name": "Jardim", - "capital": 0, - "ibgeState": 50, - "siafi": 9099, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -21.4799, - -56.1489 - ] - } - }, - { - "ibge": 4112504, - "name": "Jardim Alegre", - "capital": 0, - "ibgeState": 41, - "siafi": 7643, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.1809, - -51.6902 - ] - } - }, - { - "ibge": 2405504, - "name": "Jardim de Angicos", - "capital": 0, - "ibgeState": 24, - "siafi": 1707, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.64999, - -35.9713 - ] - } - }, - { - "ibge": 2405603, - "name": "Jardim de Piranhas", - "capital": 0, - "ibgeState": 24, - "siafi": 1709, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.37665, - -37.3496 - ] - } - }, - { - "ibge": 2205250, - "name": "Jardim do Mulato", - "capital": 0, - "ibgeState": 22, - "siafi": 997, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.099, - -42.63 - ] - } - }, - { - "ibge": 2405702, - "name": "Jardim do Seridó", - "capital": 0, - "ibgeState": 24, - "siafi": 1711, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.58047, - -36.7736 - ] - } - }, - { - "ibge": 4112603, - "name": "Jardim Olinda", - "capital": 0, - "ibgeState": 41, - "siafi": 7645, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5523, - -52.0503 - ] - } - }, - { - "ibge": 3525102, - "name": "Jardinópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6603, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0176, - -47.7606 - ] - } - }, - { - "ibge": 4208955, - "name": "Jardinópolis", - "capital": 0, - "ibgeState": 42, - "siafi": 5587, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7191, - -52.8625 - ] - } - }, - { - "ibge": 4311130, - "name": "Jari", - "capital": 0, - "ibgeState": 43, - "siafi": 992, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.2922, - -54.2237 - ] - } - }, - { - "ibge": 3525201, - "name": "Jarinu", - "capital": 0, - "ibgeState": 35, - "siafi": 6605, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1039, - -46.728 - ] - } - }, - { - "ibge": 1100114, - "name": "Jaru", - "capital": 0, - "ibgeState": 11, - "siafi": 15, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.4318, - -62.4788 - ] - } - }, - { - "ibge": 5211909, - "name": "Jataí", - "capital": 0, - "ibgeState": 52, - "siafi": 9433, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.8784, - -51.7204 - ] - } - }, - { - "ibge": 4112702, - "name": "Jataizinho", - "capital": 0, - "ibgeState": 41, - "siafi": 7647, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2578, - -50.9777 - ] - } - }, - { - "ibge": 2608008, - "name": "Jataúba", - "capital": 0, - "ibgeState": 26, - "siafi": 2459, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.97668, - -36.4943 - ] - } - }, - { - "ibge": 5005103, - "name": "Jateí", - "capital": 0, - "ibgeState": 50, - "siafi": 9101, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.4806, - -54.3079 - ] - } - }, - { - "ibge": 2307205, - "name": "Jati", - "capital": 0, - "ibgeState": 23, - "siafi": 1445, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.6797, - -39.0029 - ] - } - }, - { - "ibge": 2105450, - "name": "Jatobá", - "capital": 0, - "ibgeState": 21, - "siafi": 176, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.82282, - -44.2153 - ] - } - }, - { - "ibge": 2608057, - "name": "Jatobá", - "capital": 0, - "ibgeState": 26, - "siafi": 550, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.17476, - -38.2607 - ] - } - }, - { - "ibge": 2205276, - "name": "Jatobá do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 324, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.77025, - -41.817 - ] - } - }, - { - "ibge": 3525300, - "name": "Jaú", - "capital": 0, - "ibgeState": 35, - "siafi": 6607, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2936, - -48.5592 - ] - } - }, - { - "ibge": 1711506, - "name": "Jaú do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 329, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.6509, - -48.589 - ] - } - }, - { - "ibge": 5212006, - "name": "Jaupaci", - "capital": 0, - "ibgeState": 52, - "siafi": 9435, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.1773, - -50.9508 - ] - } - }, - { - "ibge": 5105002, - "name": "Jauru", - "capital": 0, - "ibgeState": 51, - "siafi": 8991, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.3342, - -58.8723 - ] - } - }, - { - "ibge": 3135407, - "name": "Jeceaba", - "capital": 0, - "ibgeState": 31, - "siafi": 4707, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5339, - -43.9894 - ] - } - }, - { - "ibge": 3135456, - "name": "Jenipapo de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 632, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.0831, - -42.2589 - ] - } - }, - { - "ibge": 2105476, - "name": "Jenipapo dos Vieiras", - "capital": 0, - "ibgeState": 21, - "siafi": 178, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.36237, - -45.6356 - ] - } - }, - { - "ibge": 3135506, - "name": "Jequeri", - "capital": 0, - "ibgeState": 31, - "siafi": 4709, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4542, - -42.6651 - ] - } - }, - { - "ibge": 2703759, - "name": "Jequiá da Praia", - "capital": 0, - "ibgeState": 27, - "siafi": 562, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.0133, - -36.0142 - ] - } - }, - { - "ibge": 2918001, - "name": "Jequié", - "capital": 0, - "ibgeState": 29, - "siafi": 3661, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.8509, - -40.0877 - ] - } - }, - { - "ibge": 3135605, - "name": "Jequitaí", - "capital": 0, - "ibgeState": 31, - "siafi": 4711, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.229, - -44.4376 - ] - } - }, - { - "ibge": 3135704, - "name": "Jequitibá", - "capital": 0, - "ibgeState": 31, - "siafi": 4713, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2345, - -44.0304 - ] - } - }, - { - "ibge": 3135803, - "name": "Jequitinhonha", - "capital": 0, - "ibgeState": 31, - "siafi": 4715, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.4375, - -41.0117 - ] - } - }, - { - "ibge": 2918100, - "name": "Jeremoabo", - "capital": 0, - "ibgeState": 29, - "siafi": 3663, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.0685, - -38.3471 - ] - } - }, - { - "ibge": 2507408, - "name": "Jericó", - "capital": 0, - "ibgeState": 25, - "siafi": 2049, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.54577, - -37.8036 - ] - } - }, - { - "ibge": 3525409, - "name": "Jeriquara", - "capital": 0, - "ibgeState": 35, - "siafi": 6609, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3116, - -47.5918 - ] - } - }, - { - "ibge": 3203106, - "name": "Jerônimo Monteiro", - "capital": 0, - "ibgeState": 32, - "siafi": 5661, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7994, - -41.3948 - ] - } - }, - { - "ibge": 2205300, - "name": "Jerumenha", - "capital": 0, - "ibgeState": 22, - "siafi": 1105, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.09128, - -43.5033 - ] - } - }, - { - "ibge": 3135902, - "name": "Jesuânia", - "capital": 0, - "ibgeState": 31, - "siafi": 4717, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9887, - -45.2911 - ] - } - }, - { - "ibge": 4112751, - "name": "Jesuítas", - "capital": 0, - "ibgeState": 41, - "siafi": 7997, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.3839, - -53.3849 - ] - } - }, - { - "ibge": 5212055, - "name": "Jesúpolis", - "capital": 0, - "ibgeState": 52, - "siafi": 49, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.9484, - -49.3739 - ] - } - }, - { - "ibge": 1100122, - "name": "Ji-Paraná", - "capital": 0, - "ibgeState": 11, - "siafi": 5, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.8777, - -61.9322 - ] - } - }, - { - "ibge": 2307254, - "name": "Jijoca de Jericoacoara", - "capital": 0, - "ibgeState": 23, - "siafi": 985, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.79331, - -40.5127 - ] - } - }, - { - "ibge": 2918209, - "name": "Jiquiriçá", - "capital": 0, - "ibgeState": 29, - "siafi": 3665, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.2621, - -39.5737 - ] - } - }, - { - "ibge": 2918308, - "name": "Jitaúna", - "capital": 0, - "ibgeState": 29, - "siafi": 3667, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.0131, - -39.8969 - ] - } - }, - { - "ibge": 4209003, - "name": "Joaçaba", - "capital": 0, - "ibgeState": 42, - "siafi": 8177, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1721, - -51.5108 - ] - } - }, - { - "ibge": 3136009, - "name": "Joaíma", - "capital": 0, - "ibgeState": 31, - "siafi": 4719, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.6522, - -41.0229 - ] - } - }, - { - "ibge": 3136108, - "name": "Joanésia", - "capital": 0, - "ibgeState": 31, - "siafi": 4721, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.1729, - -42.6775 - ] - } - }, - { - "ibge": 3525508, - "name": "Joanópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6611, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.927, - -46.2741 - ] - } - }, - { - "ibge": 2608107, - "name": "João Alfredo", - "capital": 0, - "ibgeState": 26, - "siafi": 2461, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.86565, - -35.5787 - ] - } - }, - { - "ibge": 2405801, - "name": "João Câmara", - "capital": 0, - "ibgeState": 24, - "siafi": 1713, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.54094, - -35.8122 - ] - } - }, - { - "ibge": 2205359, - "name": "João Costa", - "capital": 0, - "ibgeState": 22, - "siafi": 326, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.50736, - -42.4264 - ] - } - }, - { - "ibge": 2405900, - "name": "João Dias", - "capital": 0, - "ibgeState": 24, - "siafi": 1715, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.27215, - -37.7885 - ] - } - }, - { - "ibge": 2918357, - "name": "João Dourado", - "capital": 0, - "ibgeState": 29, - "siafi": 3099, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.3486, - -41.6548 - ] - } - }, - { - "ibge": 2105500, - "name": "João Lisboa", - "capital": 0, - "ibgeState": 21, - "siafi": 809, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.44363, - -47.4064 - ] - } - }, - { - "ibge": 3136207, - "name": "João Monlevade", - "capital": 0, - "ibgeState": 31, - "siafi": 4723, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8126, - -43.1735 - ] - } - }, - { - "ibge": 3203130, - "name": "João Neiva", - "capital": 0, - "ibgeState": 32, - "siafi": 5721, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7577, - -40.386 - ] - } - }, - { - "ibge": 2507507, - "name": "João Pessoa", - "capital": 1, - "ibgeState": 25, - "siafi": 2051, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.11509, - -34.8641 - ] - } - }, - { - "ibge": 3136306, - "name": "João Pinheiro", - "capital": 0, - "ibgeState": 31, - "siafi": 4725, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.7398, - -46.1715 - ] - } - }, - { - "ibge": 3525607, - "name": "João Ramalho", - "capital": 0, - "ibgeState": 35, - "siafi": 6613, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2473, - -50.7694 - ] - } - }, - { - "ibge": 3136405, - "name": "Joaquim Felício", - "capital": 0, - "ibgeState": 31, - "siafi": 4727, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.758, - -44.1643 - ] - } - }, - { - "ibge": 2703809, - "name": "Joaquim Gomes", - "capital": 0, - "ibgeState": 27, - "siafi": 2775, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.1328, - -35.7474 - ] - } - }, - { - "ibge": 2608206, - "name": "Joaquim Nabuco", - "capital": 0, - "ibgeState": 26, - "siafi": 2463, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.62281, - -35.5288 - ] - } - }, - { - "ibge": 2205409, - "name": "Joaquim Pires", - "capital": 0, - "ibgeState": 22, - "siafi": 1107, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.50164, - -42.1865 - ] - } - }, - { - "ibge": 4112801, - "name": "Joaquim Távora", - "capital": 0, - "ibgeState": 41, - "siafi": 7649, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4987, - -49.909 - ] - } - }, - { - "ibge": 2513653, - "name": "Joca Claudino", - "capital": 0, - "ibgeState": 25, - "siafi": 514, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.48362, - -38.4764 - ] - } - }, - { - "ibge": 2205458, - "name": "Joca Marques", - "capital": 0, - "ibgeState": 22, - "siafi": 328, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.4804, - -42.4255 - ] - } - }, - { - "ibge": 4311155, - "name": "Jóia", - "capital": 0, - "ibgeState": 43, - "siafi": 9829, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6435, - -54.1141 - ] - } - }, - { - "ibge": 4209102, - "name": "Joinville", - "capital": 0, - "ibgeState": 42, - "siafi": 8179, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.3045, - -48.8487 - ] - } - }, - { - "ibge": 3136504, - "name": "Jordânia", - "capital": 0, - "ibgeState": 31, - "siafi": 4729, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.9009, - -40.1841 - ] - } - }, - { - "ibge": 1200328, - "name": "Jordão", - "capital": 0, - "ibgeState": 12, - "siafi": 653, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -9.1908, - -71.9503 - ] - } - }, - { - "ibge": 4209151, - "name": "José Boiteux", - "capital": 0, - "ibgeState": 42, - "siafi": 9957, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9566, - -49.6286 - ] - } - }, - { - "ibge": 3525706, - "name": "José Bonifácio", - "capital": 0, - "ibgeState": 35, - "siafi": 6615, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0551, - -49.6892 - ] - } - }, - { - "ibge": 2406007, - "name": "José da Penha", - "capital": 0, - "ibgeState": 24, - "siafi": 1717, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.31095, - -38.2823 - ] - } - }, - { - "ibge": 2205508, - "name": "José de Freitas", - "capital": 0, - "ibgeState": 22, - "siafi": 1109, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.75146, - -42.5746 - ] - } - }, - { - "ibge": 3136520, - "name": "José Gonçalves de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 634, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.9053, - -42.6014 - ] - } - }, - { - "ibge": 3136553, - "name": "José Raydan", - "capital": 0, - "ibgeState": 31, - "siafi": 636, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.2195, - -42.4946 - ] - } - }, - { - "ibge": 2105609, - "name": "Joselândia", - "capital": 0, - "ibgeState": 21, - "siafi": 811, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.98611, - -44.6958 - ] - } - }, - { - "ibge": 3136579, - "name": "Josenópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 638, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.5417, - -42.5151 - ] - } - }, - { - "ibge": 5212105, - "name": "Joviânia", - "capital": 0, - "ibgeState": 52, - "siafi": 9437, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.802, - -49.6197 - ] - } - }, - { - "ibge": 5105101, - "name": "Juara", - "capital": 0, - "ibgeState": 51, - "siafi": 9819, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.2639, - -57.5244 - ] - } - }, - { - "ibge": 2507606, - "name": "Juarez Távora", - "capital": 0, - "ibgeState": 25, - "siafi": 2053, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.1713, - -35.5686 - ] - } - }, - { - "ibge": 1711803, - "name": "Juarina", - "capital": 0, - "ibgeState": 17, - "siafi": 349, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.11951, - -49.0643 - ] - } - }, - { - "ibge": 3136652, - "name": "Juatuba", - "capital": 0, - "ibgeState": 31, - "siafi": 2691, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9448, - -44.3451 - ] - } - }, - { - "ibge": 2507705, - "name": "Juazeirinho", - "capital": 0, - "ibgeState": 25, - "siafi": 2055, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.06092, - -36.5793 - ] - } - }, - { - "ibge": 2918407, - "name": "Juazeiro", - "capital": 0, - "ibgeState": 29, - "siafi": 3669, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.41622, - -40.5033 - ] - } - }, - { - "ibge": 2307304, - "name": "Juazeiro do Norte", - "capital": 0, - "ibgeState": 23, - "siafi": 1447, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.19621, - -39.3076 - ] - } - }, - { - "ibge": 2205516, - "name": "Juazeiro do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 330, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.17459, - -41.6976 - ] - } - }, - { - "ibge": 2307403, - "name": "Jucás", - "capital": 0, - "ibgeState": 23, - "siafi": 1449, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.51523, - -39.5187 - ] - } - }, - { - "ibge": 2608255, - "name": "Jucati", - "capital": 0, - "ibgeState": 26, - "siafi": 2295, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.70195, - -36.4871 - ] - } - }, - { - "ibge": 2918456, - "name": "Jucuruçu", - "capital": 0, - "ibgeState": 29, - "siafi": 3287, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.8488, - -40.1641 - ] - } - }, - { - "ibge": 2406106, - "name": "Jucurutu", - "capital": 0, - "ibgeState": 24, - "siafi": 1719, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.0306, - -37.009 - ] - } - }, - { - "ibge": 5105150, - "name": "Juína", - "capital": 0, - "ibgeState": 51, - "siafi": 9831, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.3728, - -58.7483 - ] - } - }, - { - "ibge": 3136702, - "name": "Juiz de Fora", - "capital": 0, - "ibgeState": 31, - "siafi": 4733, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7595, - -43.3398 - ] - } - }, - { - "ibge": 2205524, - "name": "Júlio Borges", - "capital": 0, - "ibgeState": 22, - "siafi": 332, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.3225, - -44.2381 - ] - } - }, - { - "ibge": 4311205, - "name": "Júlio de Castilhos", - "capital": 0, - "ibgeState": 43, - "siafi": 8725, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.2299, - -53.6772 - ] - } - }, - { - "ibge": 3525805, - "name": "Júlio Mesquita", - "capital": 0, - "ibgeState": 35, - "siafi": 6617, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0112, - -49.7873 - ] - } - }, - { - "ibge": 3525854, - "name": "Jumirim", - "capital": 0, - "ibgeState": 35, - "siafi": 802, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0884, - -47.7868 - ] - } - }, - { - "ibge": 2105658, - "name": "Junco do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 180, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.83888, - -46.09 - ] - } - }, - { - "ibge": 2507804, - "name": "Junco do Seridó", - "capital": 0, - "ibgeState": 25, - "siafi": 2057, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.99269, - -36.7166 - ] - } - }, - { - "ibge": 2406155, - "name": "Jundiá", - "capital": 0, - "ibgeState": 24, - "siafi": 1108, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.26866, - -35.3495 - ] - } - }, - { - "ibge": 2703908, - "name": "Jundiá", - "capital": 0, - "ibgeState": 27, - "siafi": 2777, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.93297, - -35.5669 - ] - } - }, - { - "ibge": 3525904, - "name": "Jundiaí", - "capital": 0, - "ibgeState": 35, - "siafi": 6619, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1852, - -46.8974 - ] - } - }, - { - "ibge": 4112900, - "name": "Jundiaí do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 7651, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4357, - -50.2496 - ] - } - }, - { - "ibge": 2704005, - "name": "Junqueiro", - "capital": 0, - "ibgeState": 27, - "siafi": 2779, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.90696, - -36.4803 - ] - } - }, - { - "ibge": 3526001, - "name": "Junqueirópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6621, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5103, - -51.4342 - ] - } - }, - { - "ibge": 2608305, - "name": "Jupi", - "capital": 0, - "ibgeState": 26, - "siafi": 2465, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.70904, - -36.4126 - ] - } - }, - { - "ibge": 4209177, - "name": "Jupiá", - "capital": 0, - "ibgeState": 42, - "siafi": 924, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.395, - -52.7298 - ] - } - }, - { - "ibge": 3526100, - "name": "Juquiá", - "capital": 0, - "ibgeState": 35, - "siafi": 6623, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.3101, - -47.6426 - ] - } - }, - { - "ibge": 3526209, - "name": "Juquitiba", - "capital": 0, - "ibgeState": 35, - "siafi": 6625, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.9244, - -47.0653 - ] - } - }, - { - "ibge": 3136801, - "name": "Juramento", - "capital": 0, - "ibgeState": 31, - "siafi": 4735, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.8473, - -43.5865 - ] - } - }, - { - "ibge": 4112959, - "name": "Juranda", - "capital": 0, - "ibgeState": 41, - "siafi": 8463, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.4209, - -52.8413 - ] - } - }, - { - "ibge": 2608404, - "name": "Jurema", - "capital": 0, - "ibgeState": 26, - "siafi": 2467, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.70714, - -36.1347 - ] - } - }, - { - "ibge": 2205532, - "name": "Jurema", - "capital": 0, - "ibgeState": 22, - "siafi": 334, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.21992, - -43.1337 - ] - } - }, - { - "ibge": 2507903, - "name": "Juripiranga", - "capital": 0, - "ibgeState": 25, - "siafi": 2059, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.36176, - -35.2321 - ] - } - }, - { - "ibge": 2508000, - "name": "Juru", - "capital": 0, - "ibgeState": 25, - "siafi": 2061, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.52983, - -37.815 - ] - } - }, - { - "ibge": 1302207, - "name": "Juruá", - "capital": 0, - "ibgeState": 13, - "siafi": 247, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.48438, - -66.0718 - ] - } - }, - { - "ibge": 3136900, - "name": "Juruaia", - "capital": 0, - "ibgeState": 31, - "siafi": 4737, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2493, - -46.5735 - ] - } - }, - { - "ibge": 5105176, - "name": "Juruena", - "capital": 0, - "ibgeState": 51, - "siafi": 9921, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.3178, - -58.3592 - ] - } - }, - { - "ibge": 1503903, - "name": "Juruti", - "capital": 0, - "ibgeState": 15, - "siafi": 477, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.16347, - -56.0889 - ] - } - }, - { - "ibge": 5105200, - "name": "Juscimeira", - "capital": 0, - "ibgeState": 51, - "siafi": 9189, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -16.0633, - -54.8859 - ] - } - }, - { - "ibge": 2918506, - "name": "Jussara", - "capital": 0, - "ibgeState": 29, - "siafi": 3671, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.0431, - -41.9702 - ] - } - }, - { - "ibge": 5212204, - "name": "Jussara", - "capital": 0, - "ibgeState": 52, - "siafi": 9439, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.8659, - -50.8668 - ] - } - }, - { - "ibge": 4113007, - "name": "Jussara", - "capital": 0, - "ibgeState": 41, - "siafi": 7653, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6219, - -52.4693 - ] - } - }, - { - "ibge": 2918555, - "name": "Jussari", - "capital": 0, - "ibgeState": 29, - "siafi": 3069, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.192, - -39.491 - ] - } - }, - { - "ibge": 2918605, - "name": "Jussiape", - "capital": 0, - "ibgeState": 29, - "siafi": 3673, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.5155, - -41.5882 - ] - } - }, - { - "ibge": 1302306, - "name": "Jutaí", - "capital": 0, - "ibgeState": 13, - "siafi": 249, - "ddd": 97, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -2.75814, - -66.7595 - ] - } - }, - { - "ibge": 5005152, - "name": "Juti", - "capital": 0, - "ibgeState": 50, - "siafi": 9923, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.8596, - -54.6061 - ] - } - }, - { - "ibge": 3136959, - "name": "Juvenília", - "capital": 0, - "ibgeState": 31, - "siafi": 640, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.2662, - -44.1597 - ] - } - }, - { - "ibge": 4113106, - "name": "Kaloré", - "capital": 0, - "ibgeState": 41, - "siafi": 7655, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8188, - -51.6687 - ] - } - }, - { - "ibge": 1302405, - "name": "Lábrea", - "capital": 0, - "ibgeState": 13, - "siafi": 251, - "ddd": 97, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -7.26413, - -64.7948 - ] - } - }, - { - "ibge": 4209201, - "name": "Lacerdópolis", - "capital": 0, - "ibgeState": 42, - "siafi": 8181, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2579, - -51.5577 - ] - } - }, - { - "ibge": 3137007, - "name": "Ladainha", - "capital": 0, - "ibgeState": 31, - "siafi": 4739, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.6279, - -41.7488 - ] - } - }, - { - "ibge": 5005202, - "name": "Ladário", - "capital": 0, - "ibgeState": 50, - "siafi": 9103, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -19.0089, - -57.5973 - ] - } - }, - { - "ibge": 2918704, - "name": "Lafaiete Coutinho", - "capital": 0, - "ibgeState": 29, - "siafi": 3675, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.6541, - -40.2119 - ] - } - }, - { - "ibge": 3137106, - "name": "Lagamar", - "capital": 0, - "ibgeState": 31, - "siafi": 4741, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.1759, - -46.8063 - ] - } - }, - { - "ibge": 2803500, - "name": "Lagarto", - "capital": 0, - "ibgeState": 28, - "siafi": 3169, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.9136, - -37.6689 - ] - } - }, - { - "ibge": 4209300, - "name": "Lages", - "capital": 0, - "ibgeState": 42, - "siafi": 8183, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.815, - -50.3259 - ] - } - }, - { - "ibge": 2105708, - "name": "Lago da Pedra", - "capital": 0, - "ibgeState": 21, - "siafi": 813, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.56974, - -45.1319 - ] - } - }, - { - "ibge": 2105807, - "name": "Lago do Junco", - "capital": 0, - "ibgeState": 21, - "siafi": 815, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.609, - -45.049 - ] - } - }, - { - "ibge": 2105948, - "name": "Lago dos Rodrigues", - "capital": 0, - "ibgeState": 21, - "siafi": 184, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.61173, - -44.9798 - ] - } - }, - { - "ibge": 2105906, - "name": "Lago Verde", - "capital": 0, - "ibgeState": 21, - "siafi": 817, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.94661, - -44.826 - ] - } - }, - { - "ibge": 2508109, - "name": "Lagoa", - "capital": 0, - "ibgeState": 25, - "siafi": 2063, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.58572, - -37.9127 - ] - } - }, - { - "ibge": 2205557, - "name": "Lagoa Alegre", - "capital": 0, - "ibgeState": 22, - "siafi": 999, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.51539, - -42.6309 - ] - } - }, - { - "ibge": 4311239, - "name": "Lagoa Bonita do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 1148, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4939, - -53.017 - ] - } - }, - { - "ibge": 2406205, - "name": "Lagoa d'Anta", - "capital": 0, - "ibgeState": 24, - "siafi": 1723, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.39493, - -35.5949 - ] - } - }, - { - "ibge": 2704104, - "name": "Lagoa da Canoa", - "capital": 0, - "ibgeState": 27, - "siafi": 2781, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.83291, - -36.7413 - ] - } - }, - { - "ibge": 1711902, - "name": "Lagoa da Confusão", - "capital": 0, - "ibgeState": 17, - "siafi": 367, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7906, - -49.6199 - ] - } - }, - { - "ibge": 3137205, - "name": "Lagoa da Prata", - "capital": 0, - "ibgeState": 31, - "siafi": 4743, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0237, - -45.5401 - ] - } - }, - { - "ibge": 2508208, - "name": "Lagoa de Dentro", - "capital": 0, - "ibgeState": 25, - "siafi": 2065, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.67213, - -35.3706 - ] - } - }, - { - "ibge": 2608503, - "name": "Lagoa de Itaenga", - "capital": 0, - "ibgeState": 26, - "siafi": 2469, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.93005, - -35.2874 - ] - } - }, - { - "ibge": 2406304, - "name": "Lagoa de Pedras", - "capital": 0, - "ibgeState": 24, - "siafi": 1725, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.15082, - -35.4299 - ] - } - }, - { - "ibge": 2205573, - "name": "Lagoa de São Francisco", - "capital": 0, - "ibgeState": 22, - "siafi": 338, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.38505, - -41.5969 - ] - } - }, - { - "ibge": 2406403, - "name": "Lagoa de Velhos", - "capital": 0, - "ibgeState": 24, - "siafi": 1727, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.0119, - -35.8729 - ] - } - }, - { - "ibge": 2205565, - "name": "Lagoa do Barro do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 2259, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.47673, - -41.5342 - ] - } - }, - { - "ibge": 2608453, - "name": "Lagoa do Carro", - "capital": 0, - "ibgeState": 26, - "siafi": 2289, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.84383, - -35.3108 - ] - } - }, - { - "ibge": 2105922, - "name": "Lagoa do Mato", - "capital": 0, - "ibgeState": 21, - "siafi": 182, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.05023, - -43.5333 - ] - } - }, - { - "ibge": 2608602, - "name": "Lagoa do Ouro", - "capital": 0, - "ibgeState": 26, - "siafi": 2471, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.12567, - -36.4584 - ] - } - }, - { - "ibge": 2205581, - "name": "Lagoa do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 340, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.41864, - -42.6437 - ] - } - }, - { - "ibge": 2205599, - "name": "Lagoa do Sítio", - "capital": 0, - "ibgeState": 22, - "siafi": 342, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.50766, - -41.5653 - ] - } - }, - { - "ibge": 1711951, - "name": "Lagoa do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 353, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.368, - -47.538 - ] - } - }, - { - "ibge": 2608701, - "name": "Lagoa dos Gatos", - "capital": 0, - "ibgeState": 26, - "siafi": 2473, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.6602, - -35.904 - ] - } - }, - { - "ibge": 3137304, - "name": "Lagoa dos Patos", - "capital": 0, - "ibgeState": 31, - "siafi": 4745, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.978, - -44.5754 - ] - } - }, - { - "ibge": 4311270, - "name": "Lagoa dos Três Cantos", - "capital": 0, - "ibgeState": 43, - "siafi": 5951, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5676, - -52.8618 - ] - } - }, - { - "ibge": 3137403, - "name": "Lagoa Dourada", - "capital": 0, - "ibgeState": 31, - "siafi": 4747, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9139, - -44.0797 - ] - } - }, - { - "ibge": 3137502, - "name": "Lagoa Formosa", - "capital": 0, - "ibgeState": 31, - "siafi": 4749, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7715, - -46.4012 - ] - } - }, - { - "ibge": 3137536, - "name": "Lagoa Grande", - "capital": 0, - "ibgeState": 31, - "siafi": 2905, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.8323, - -46.5165 - ] - } - }, - { - "ibge": 2608750, - "name": "Lagoa Grande", - "capital": 0, - "ibgeState": 26, - "siafi": 552, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.99452, - -40.2767 - ] - } - }, - { - "ibge": 2105963, - "name": "Lagoa Grande do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 186, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.98893, - -45.3816 - ] - } - }, - { - "ibge": 2406502, - "name": "Lagoa Nova", - "capital": 0, - "ibgeState": 24, - "siafi": 1729, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.09339, - -36.4703 - ] - } - }, - { - "ibge": 2918753, - "name": "Lagoa Real", - "capital": 0, - "ibgeState": 29, - "siafi": 3289, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.0334, - -42.1328 - ] - } - }, - { - "ibge": 2406601, - "name": "Lagoa Salgada", - "capital": 0, - "ibgeState": 24, - "siafi": 1731, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.12295, - -35.4724 - ] - } - }, - { - "ibge": 5212253, - "name": "Lagoa Santa", - "capital": 0, - "ibgeState": 52, - "siafi": 1076, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.1832, - -51.3998 - ] - } - }, - { - "ibge": 3137601, - "name": "Lagoa Santa", - "capital": 0, - "ibgeState": 31, - "siafi": 4751, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6397, - -43.8932 - ] - } - }, - { - "ibge": 2508307, - "name": "Lagoa Seca", - "capital": 0, - "ibgeState": 25, - "siafi": 2067, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.15535, - -35.8491 - ] - } - }, - { - "ibge": 4311304, - "name": "Lagoa Vermelha", - "capital": 0, - "ibgeState": 43, - "siafi": 8727, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.2093, - -51.5248 - ] - } - }, - { - "ibge": 4311254, - "name": "Lagoão", - "capital": 0, - "ibgeState": 43, - "siafi": 7389, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.2348, - -52.7997 - ] - } - }, - { - "ibge": 3526308, - "name": "Lagoinha", - "capital": 0, - "ibgeState": 35, - "siafi": 6627, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0846, - -45.1944 - ] - } - }, - { - "ibge": 2205540, - "name": "Lagoinha do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 336, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.83074, - -42.6223 - ] - } - }, - { - "ibge": 4209409, - "name": "Laguna", - "capital": 0, - "ibgeState": 42, - "siafi": 8185, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.4843, - -48.7772 - ] - } - }, - { - "ibge": 5005251, - "name": "Laguna Carapã", - "capital": 0, - "ibgeState": 50, - "siafi": 163, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.5448, - -55.1502 - ] - } - }, - { - "ibge": 2918803, - "name": "Laje", - "capital": 0, - "ibgeState": 29, - "siafi": 3677, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.1673, - -39.4213 - ] - } - }, - { - "ibge": 3302304, - "name": "Laje do Muriaé", - "capital": 0, - "ibgeState": 33, - "siafi": 5845, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2091, - -42.1271 - ] - } - }, - { - "ibge": 1712009, - "name": "Lajeado", - "capital": 0, - "ibgeState": 17, - "siafi": 351, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.74996, - -48.3565 - ] - } - }, - { - "ibge": 4311403, - "name": "Lajeado", - "capital": 0, - "ibgeState": 43, - "siafi": 8729, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4591, - -51.9644 - ] - } - }, - { - "ibge": 4311429, - "name": "Lajeado do Bugre", - "capital": 0, - "ibgeState": 43, - "siafi": 5983, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6913, - -53.1818 - ] - } - }, - { - "ibge": 4209458, - "name": "Lajeado Grande", - "capital": 0, - "ibgeState": 42, - "siafi": 5739, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.8576, - -52.5648 - ] - } - }, - { - "ibge": 2105989, - "name": "Lajeado Novo", - "capital": 0, - "ibgeState": 21, - "siafi": 188, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.18539, - -47.0293 - ] - } - }, - { - "ibge": 2918902, - "name": "Lajedão", - "capital": 0, - "ibgeState": 29, - "siafi": 3679, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.6056, - -40.3383 - ] - } - }, - { - "ibge": 2919009, - "name": "Lajedinho", - "capital": 0, - "ibgeState": 29, - "siafi": 3681, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.3529, - -40.9048 - ] - } - }, - { - "ibge": 2608800, - "name": "Lajedo", - "capital": 0, - "ibgeState": 26, - "siafi": 2475, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.65791, - -36.3293 - ] - } - }, - { - "ibge": 2919058, - "name": "Lajedo do Tabocal", - "capital": 0, - "ibgeState": 29, - "siafi": 3291, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.4663, - -40.2204 - ] - } - }, - { - "ibge": 2406700, - "name": "Lajes", - "capital": 0, - "ibgeState": 24, - "siafi": 1733, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.69322, - -36.247 - ] - } - }, - { - "ibge": 2406809, - "name": "Lajes Pintadas", - "capital": 0, - "ibgeState": 24, - "siafi": 1735, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.14943, - -36.1171 - ] - } - }, - { - "ibge": 3137700, - "name": "Lajinha", - "capital": 0, - "ibgeState": 31, - "siafi": 4753, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1539, - -41.6228 - ] - } - }, - { - "ibge": 2919108, - "name": "Lamarão", - "capital": 0, - "ibgeState": 29, - "siafi": 3683, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.773, - -38.887 - ] - } - }, - { - "ibge": 3137809, - "name": "Lambari", - "capital": 0, - "ibgeState": 31, - "siafi": 4755, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9671, - -45.3498 - ] - } - }, - { - "ibge": 5105234, - "name": "Lambari D'Oeste", - "capital": 0, - "ibgeState": 51, - "siafi": 137, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.3188, - -58.0046 - ] - } - }, - { - "ibge": 3137908, - "name": "Lamim", - "capital": 0, - "ibgeState": 31, - "siafi": 4757, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.79, - -43.4706 - ] - } - }, - { - "ibge": 2205607, - "name": "Landri Sales", - "capital": 0, - "ibgeState": 22, - "siafi": 1111, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.25922, - -43.9364 - ] - } - }, - { - "ibge": 4113205, - "name": "Lapa", - "capital": 0, - "ibgeState": 41, - "siafi": 7657, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.7671, - -49.7168 - ] - } - }, - { - "ibge": 2919157, - "name": "Lapão", - "capital": 0, - "ibgeState": 29, - "siafi": 3973, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.3851, - -41.8286 - ] - } - }, - { - "ibge": 3203163, - "name": "Laranja da Terra", - "capital": 0, - "ibgeState": 32, - "siafi": 5723, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8994, - -41.0621 - ] - } - }, - { - "ibge": 3138005, - "name": "Laranjal", - "capital": 0, - "ibgeState": 31, - "siafi": 4759, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3715, - -42.4732 - ] - } - }, - { - "ibge": 4113254, - "name": "Laranjal", - "capital": 0, - "ibgeState": 41, - "siafi": 5501, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.8862, - -52.47 - ] - } - }, - { - "ibge": 1600279, - "name": "Laranjal do Jari", - "capital": 0, - "ibgeState": 16, - "siafi": 613, - "ddd": 96, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.804911, - -52.453 - ] - } - }, - { - "ibge": 3526407, - "name": "Laranjal Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 6629, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0506, - -47.8375 - ] - } - }, - { - "ibge": 2803609, - "name": "Laranjeiras", - "capital": 0, - "ibgeState": 28, - "siafi": 3171, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7981, - -37.1731 - ] - } - }, - { - "ibge": 4113304, - "name": "Laranjeiras do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 7659, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4077, - -52.4109 - ] - } - }, - { - "ibge": 3138104, - "name": "Lassance", - "capital": 0, - "ibgeState": 31, - "siafi": 4761, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.887, - -44.5735 - ] - } - }, - { - "ibge": 2508406, - "name": "Lastro", - "capital": 0, - "ibgeState": 25, - "siafi": 2069, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.50603, - -38.1742 - ] - } - }, - { - "ibge": 4209508, - "name": "Laurentino", - "capital": 0, - "ibgeState": 42, - "siafi": 8187, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2173, - -49.7331 - ] - } - }, - { - "ibge": 2919207, - "name": "Lauro de Freitas", - "capital": 0, - "ibgeState": 29, - "siafi": 3685, - "ddd": 71, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.8978, - -38.321 - ] - } - }, - { - "ibge": 4209607, - "name": "Lauro Muller", - "capital": 0, - "ibgeState": 42, - "siafi": 8189, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3859, - -49.4035 - ] - } - }, - { - "ibge": 1712157, - "name": "Lavandeira", - "capital": 0, - "ibgeState": 17, - "siafi": 86, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.7847, - -46.5099 - ] - } - }, - { - "ibge": 3526506, - "name": "Lavínia", - "capital": 0, - "ibgeState": 35, - "siafi": 6631, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1639, - -51.0412 - ] - } - }, - { - "ibge": 3138203, - "name": "Lavras", - "capital": 0, - "ibgeState": 31, - "siafi": 4763, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.248, - -45.0009 - ] - } - }, - { - "ibge": 2307502, - "name": "Lavras da Mangabeira", - "capital": 0, - "ibgeState": 23, - "siafi": 1451, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.7448, - -38.9706 - ] - } - }, - { - "ibge": 4311502, - "name": "Lavras do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8731, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.8071, - -53.8931 - ] - } - }, - { - "ibge": 3526605, - "name": "Lavrinhas", - "capital": 0, - "ibgeState": 35, - "siafi": 6633, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.57, - -44.9024 - ] - } - }, - { - "ibge": 3138302, - "name": "Leandro Ferreira", - "capital": 0, - "ibgeState": 31, - "siafi": 4765, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7193, - -45.0279 - ] - } - }, - { - "ibge": 4209706, - "name": "Lebon Régis", - "capital": 0, - "ibgeState": 42, - "siafi": 8191, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.928, - -50.6921 - ] - } - }, - { - "ibge": 3526704, - "name": "Leme", - "capital": 0, - "ibgeState": 35, - "siafi": 6635, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1809, - -47.3841 - ] - } - }, - { - "ibge": 3138351, - "name": "Leme do Prado", - "capital": 0, - "ibgeState": 31, - "siafi": 642, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.0793, - -42.6936 - ] - } - }, - { - "ibge": 2919306, - "name": "Lençóis", - "capital": 0, - "ibgeState": 29, - "siafi": 3687, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.5616, - -41.3928 - ] - } - }, - { - "ibge": 3526803, - "name": "Lençóis Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 6637, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6027, - -48.8037 - ] - } - }, - { - "ibge": 4209805, - "name": "Leoberto Leal", - "capital": 0, - "ibgeState": 42, - "siafi": 8193, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5081, - -49.2789 - ] - } - }, - { - "ibge": 3138401, - "name": "Leopoldina", - "capital": 0, - "ibgeState": 31, - "siafi": 4767, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5296, - -42.6421 - ] - } - }, - { - "ibge": 5212303, - "name": "Leopoldo de Bulhões", - "capital": 0, - "ibgeState": 52, - "siafi": 9443, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.619, - -48.7428 - ] - } - }, - { - "ibge": 4113403, - "name": "Leópolis", - "capital": 0, - "ibgeState": 41, - "siafi": 7661, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0818, - -50.7511 - ] - } - }, - { - "ibge": 4311601, - "name": "Liberato Salzano", - "capital": 0, - "ibgeState": 43, - "siafi": 8733, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.601, - -53.0753 - ] - } - }, - { - "ibge": 3138500, - "name": "Liberdade", - "capital": 0, - "ibgeState": 31, - "siafi": 4769, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0275, - -44.3208 - ] - } - }, - { - "ibge": 2919405, - "name": "Licínio de Almeida", - "capital": 0, - "ibgeState": 29, - "siafi": 3689, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.6842, - -42.5095 - ] - } - }, - { - "ibge": 4113429, - "name": "Lidianópolis", - "capital": 0, - "ibgeState": 41, - "siafi": 5507, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.11, - -51.6506 - ] - } - }, - { - "ibge": 2106003, - "name": "Lima Campos", - "capital": 0, - "ibgeState": 21, - "siafi": 819, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.51837, - -44.4646 - ] - } - }, - { - "ibge": 3138609, - "name": "Lima Duarte", - "capital": 0, - "ibgeState": 31, - "siafi": 4771, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8386, - -43.7934 - ] - } - }, - { - "ibge": 3526902, - "name": "Limeira", - "capital": 0, - "ibgeState": 35, - "siafi": 6639, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.566, - -47.397 - ] - } - }, - { - "ibge": 3138625, - "name": "Limeira do Oeste", - "capital": 0, - "ibgeState": 31, - "siafi": 2687, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5512, - -50.5815 - ] - } - }, - { - "ibge": 2608909, - "name": "Limoeiro", - "capital": 0, - "ibgeState": 26, - "siafi": 2477, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.8726, - -35.4402 - ] - } - }, - { - "ibge": 2704203, - "name": "Limoeiro de Anadia", - "capital": 0, - "ibgeState": 27, - "siafi": 2783, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.74098, - -36.5121 - ] - } - }, - { - "ibge": 1504000, - "name": "Limoeiro do Ajuru", - "capital": 0, - "ibgeState": 15, - "siafi": 479, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.8985, - -49.3903 - ] - } - }, - { - "ibge": 2307601, - "name": "Limoeiro do Norte", - "capital": 0, - "ibgeState": 23, - "siafi": 1453, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.14392, - -38.0847 - ] - } - }, - { - "ibge": 4113452, - "name": "Lindoeste", - "capital": 0, - "ibgeState": 41, - "siafi": 9959, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.2596, - -53.5733 - ] - } - }, - { - "ibge": 3527009, - "name": "Lindóia", - "capital": 0, - "ibgeState": 35, - "siafi": 6641, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5226, - -46.65 - ] - } - }, - { - "ibge": 4209854, - "name": "Lindóia do Sul", - "capital": 0, - "ibgeState": 42, - "siafi": 9961, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0545, - -52.069 - ] - } - }, - { - "ibge": 4311627, - "name": "Lindolfo Collor", - "capital": 0, - "ibgeState": 43, - "siafi": 6017, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5859, - -51.2141 - ] - } - }, - { - "ibge": 4311643, - "name": "Linha Nova", - "capital": 0, - "ibgeState": 43, - "siafi": 6047, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4679, - -51.2003 - ] - } - }, - { - "ibge": 3203205, - "name": "Linhares", - "capital": 0, - "ibgeState": 32, - "siafi": 5663, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.3946, - -40.0643 - ] - } - }, - { - "ibge": 3527108, - "name": "Lins", - "capital": 0, - "ibgeState": 35, - "siafi": 6643, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6718, - -49.7526 - ] - } - }, - { - "ibge": 2508505, - "name": "Livramento", - "capital": 0, - "ibgeState": 25, - "siafi": 2071, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.37113, - -36.9491 - ] - } - }, - { - "ibge": 2919504, - "name": "Livramento de Nossa Senhora", - "capital": 0, - "ibgeState": 29, - "siafi": 3691, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.6369, - -41.8432 - ] - } - }, - { - "ibge": 1712405, - "name": "Lizarda", - "capital": 0, - "ibgeState": 17, - "siafi": 9569, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.59002, - -46.6738 - ] - } - }, - { - "ibge": 4113502, - "name": "Loanda", - "capital": 0, - "ibgeState": 41, - "siafi": 7663, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9232, - -53.1362 - ] - } - }, - { - "ibge": 4113601, - "name": "Lobato", - "capital": 0, - "ibgeState": 41, - "siafi": 7665, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0058, - -51.9524 - ] - } - }, - { - "ibge": 2508554, - "name": "Logradouro", - "capital": 0, - "ibgeState": 25, - "siafi": 482, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.61191, - -35.4384 - ] - } - }, - { - "ibge": 4113700, - "name": "Londrina", - "capital": 0, - "ibgeState": 41, - "siafi": 7667, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.304, - -51.1691 - ] - } - }, - { - "ibge": 3138658, - "name": "Lontra", - "capital": 0, - "ibgeState": 31, - "siafi": 2695, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.9013, - -44.306 - ] - } - }, - { - "ibge": 4209904, - "name": "Lontras", - "capital": 0, - "ibgeState": 42, - "siafi": 8195, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1684, - -49.535 - ] - } - }, - { - "ibge": 3527207, - "name": "Lorena", - "capital": 0, - "ibgeState": 35, - "siafi": 6645, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7334, - -45.1197 - ] - } - }, - { - "ibge": 2106102, - "name": "Loreto", - "capital": 0, - "ibgeState": 21, - "siafi": 821, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.08111, - -45.1451 - ] - } - }, - { - "ibge": 3527256, - "name": "Lourdes", - "capital": 0, - "ibgeState": 35, - "siafi": 2937, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.966, - -50.2263 - ] - } - }, - { - "ibge": 3527306, - "name": "Louveira", - "capital": 0, - "ibgeState": 35, - "siafi": 6647, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0856, - -46.9484 - ] - } - }, - { - "ibge": 5105259, - "name": "Lucas do Rio Verde", - "capital": 0, - "ibgeState": 51, - "siafi": 9925, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -13.0588, - -55.9042 - ] - } - }, - { - "ibge": 3527405, - "name": "Lucélia", - "capital": 0, - "ibgeState": 35, - "siafi": 6649, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7182, - -51.0215 - ] - } - }, - { - "ibge": 2508604, - "name": "Lucena", - "capital": 0, - "ibgeState": 25, - "siafi": 2073, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.90258, - -34.8748 - ] - } - }, - { - "ibge": 3527504, - "name": "Lucianópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6651, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4294, - -49.522 - ] - } - }, - { - "ibge": 5105309, - "name": "Luciara", - "capital": 0, - "ibgeState": 51, - "siafi": 9105, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.2219, - -50.6676 - ] - } - }, - { - "ibge": 2406908, - "name": "Lucrécia", - "capital": 0, - "ibgeState": 24, - "siafi": 1737, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.10525, - -37.8134 - ] - } - }, - { - "ibge": 3527603, - "name": "Luís Antônio", - "capital": 0, - "ibgeState": 35, - "siafi": 6653, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.55, - -47.7801 - ] - } - }, - { - "ibge": 2205706, - "name": "Luís Correia", - "capital": 0, - "ibgeState": 22, - "siafi": 1113, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.88438, - -41.6641 - ] - } - }, - { - "ibge": 2106201, - "name": "Luís Domingues", - "capital": 0, - "ibgeState": 21, - "siafi": 823, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.27492, - -45.867 - ] - } - }, - { - "ibge": 2919553, - "name": "Luís Eduardo Magalhães", - "capital": 0, - "ibgeState": 29, - "siafi": 1112, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.0956, - -45.7866 - ] - } - }, - { - "ibge": 2407005, - "name": "Luís Gomes", - "capital": 0, - "ibgeState": 24, - "siafi": 1739, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.40588, - -38.3899 - ] - } - }, - { - "ibge": 3138674, - "name": "Luisburgo", - "capital": 0, - "ibgeState": 31, - "siafi": 644, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4468, - -42.0976 - ] - } - }, - { - "ibge": 3138682, - "name": "Luislândia", - "capital": 0, - "ibgeState": 31, - "siafi": 646, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.1095, - -44.5886 - ] - } - }, - { - "ibge": 4210001, - "name": "Luiz Alves", - "capital": 0, - "ibgeState": 42, - "siafi": 8197, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7151, - -48.9322 - ] - } - }, - { - "ibge": 4113734, - "name": "Luiziana", - "capital": 0, - "ibgeState": 41, - "siafi": 8481, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.2853, - -52.269 - ] - } - }, - { - "ibge": 3527702, - "name": "Luiziânia", - "capital": 0, - "ibgeState": 35, - "siafi": 6655, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6737, - -50.3294 - ] - } - }, - { - "ibge": 3138708, - "name": "Luminárias", - "capital": 0, - "ibgeState": 31, - "siafi": 4773, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5145, - -44.9034 - ] - } - }, - { - "ibge": 4113759, - "name": "Lunardelli", - "capital": 0, - "ibgeState": 41, - "siafi": 8459, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.0821, - -51.7368 - ] - } - }, - { - "ibge": 3527801, - "name": "Lupércio", - "capital": 0, - "ibgeState": 35, - "siafi": 6657, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4146, - -49.818 - ] - } - }, - { - "ibge": 4113809, - "name": "Lupionópolis", - "capital": 0, - "ibgeState": 41, - "siafi": 7669, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.755, - -51.6601 - ] - } - }, - { - "ibge": 3527900, - "name": "Lutécia", - "capital": 0, - "ibgeState": 35, - "siafi": 6659, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3384, - -50.394 - ] - } - }, - { - "ibge": 3138807, - "name": "Luz", - "capital": 0, - "ibgeState": 31, - "siafi": 4775, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7911, - -45.6794 - ] - } - }, - { - "ibge": 4210035, - "name": "Luzerna", - "capital": 0, - "ibgeState": 42, - "siafi": 926, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1304, - -51.4682 - ] - } - }, - { - "ibge": 5212501, - "name": "Luziânia", - "capital": 0, - "ibgeState": 52, - "siafi": 9445, - "ddd": 61, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.253, - -47.95 - ] - } - }, - { - "ibge": 2205805, - "name": "Luzilândia", - "capital": 0, - "ibgeState": 22, - "siafi": 1115, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.4683, - -42.3718 - ] - } - }, - { - "ibge": 1712454, - "name": "Luzinópolis", - "capital": 0, - "ibgeState": 17, - "siafi": 88, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.17794, - -47.8582 - ] - } - }, - { - "ibge": 3302403, - "name": "Macaé", - "capital": 0, - "ibgeState": 33, - "siafi": 5847, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3768, - -41.7848 - ] - } - }, - { - "ibge": 2407104, - "name": "Macaíba", - "capital": 0, - "ibgeState": 24, - "siafi": 1741, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.85229, - -35.3552 - ] - } - }, - { - "ibge": 2919603, - "name": "Macajuba", - "capital": 0, - "ibgeState": 29, - "siafi": 3693, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.1326, - -40.3571 - ] - } - }, - { - "ibge": 4311718, - "name": "Maçambará", - "capital": 0, - "ibgeState": 43, - "siafi": 994, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.1445, - -56.0674 - ] - } - }, - { - "ibge": 2803708, - "name": "Macambira", - "capital": 0, - "ibgeState": 28, - "siafi": 3173, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.6619, - -37.5413 - ] - } - }, - { - "ibge": 1600303, - "name": "Macapá", - "capital": 1, - "ibgeState": 16, - "siafi": 605, - "ddd": 96, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - 0.034934, - -51.0694 - ] - } - }, - { - "ibge": 2609006, - "name": "Macaparana", - "capital": 0, - "ibgeState": 26, - "siafi": 2479, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.55564, - -35.4425 - ] - } - }, - { - "ibge": 2919702, - "name": "Macarani", - "capital": 0, - "ibgeState": 29, - "siafi": 3695, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.5646, - -40.4209 - ] - } - }, - { - "ibge": 3528007, - "name": "Macatuba", - "capital": 0, - "ibgeState": 35, - "siafi": 6661, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5002, - -48.7102 - ] - } - }, - { - "ibge": 2407203, - "name": "Macau", - "capital": 0, - "ibgeState": 24, - "siafi": 1743, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.10795, - -36.6318 - ] - } - }, - { - "ibge": 3528106, - "name": "Macaubal", - "capital": 0, - "ibgeState": 35, - "siafi": 6663, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8022, - -49.9687 - ] - } - }, - { - "ibge": 2919801, - "name": "Macaúbas", - "capital": 0, - "ibgeState": 29, - "siafi": 3697, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.0186, - -42.6945 - ] - } - }, - { - "ibge": 3528205, - "name": "Macedônia", - "capital": 0, - "ibgeState": 35, - "siafi": 6665, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1444, - -50.1973 - ] - } - }, - { - "ibge": 2704302, - "name": "Maceió", - "capital": 1, - "ibgeState": 27, - "siafi": 2785, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.66599, - -35.735 - ] - } - }, - { - "ibge": 3138906, - "name": "Machacalis", - "capital": 0, - "ibgeState": 31, - "siafi": 4777, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.0723, - -40.7245 - ] - } - }, - { - "ibge": 4311700, - "name": "Machadinho", - "capital": 0, - "ibgeState": 43, - "siafi": 8735, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5667, - -51.6668 - ] - } - }, - { - "ibge": 1100130, - "name": "Machadinho D'Oeste", - "capital": 0, - "ibgeState": 11, - "siafi": 39, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -9.44363, - -61.9818 - ] - } - }, - { - "ibge": 3139003, - "name": "Machado", - "capital": 0, - "ibgeState": 31, - "siafi": 4779, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6778, - -45.9219 - ] - } - }, - { - "ibge": 2609105, - "name": "Machados", - "capital": 0, - "ibgeState": 26, - "siafi": 2481, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.68827, - -35.5114 - ] - } - }, - { - "ibge": 4210050, - "name": "Macieira", - "capital": 0, - "ibgeState": 42, - "siafi": 5575, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.8552, - -51.3705 - ] - } - }, - { - "ibge": 3302452, - "name": "Macuco", - "capital": 0, - "ibgeState": 33, - "siafi": 776, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9813, - -42.2533 - ] - } - }, - { - "ibge": 2919900, - "name": "Macururé", - "capital": 0, - "ibgeState": 29, - "siafi": 3699, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.16226, - -39.0518 - ] - } - }, - { - "ibge": 2307635, - "name": "Madalena", - "capital": 0, - "ibgeState": 23, - "siafi": 1261, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.84601, - -39.5725 - ] - } - }, - { - "ibge": 2205854, - "name": "Madeiro", - "capital": 0, - "ibgeState": 22, - "siafi": 344, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.48624, - -42.4981 - ] - } - }, - { - "ibge": 2919926, - "name": "Madre de Deus", - "capital": 0, - "ibgeState": 29, - "siafi": 3293, - "ddd": 71, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.7446, - -38.6153 - ] - } - }, - { - "ibge": 3139102, - "name": "Madre de Deus de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4781, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.483, - -44.3287 - ] - } - }, - { - "ibge": 2508703, - "name": "Mãe d'Água", - "capital": 0, - "ibgeState": 25, - "siafi": 2075, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.25201, - -37.4322 - ] - } - }, - { - "ibge": 1504059, - "name": "Mãe do Rio", - "capital": 0, - "ibgeState": 15, - "siafi": 587, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.05683, - -47.5601 - ] - } - }, - { - "ibge": 2919959, - "name": "Maetinga", - "capital": 0, - "ibgeState": 29, - "siafi": 3975, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.6623, - -41.4915 - ] - } - }, - { - "ibge": 4210100, - "name": "Mafra", - "capital": 0, - "ibgeState": 42, - "siafi": 8199, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.1159, - -49.8086 - ] - } - }, - { - "ibge": 1504109, - "name": "Magalhães Barata", - "capital": 0, - "ibgeState": 15, - "siafi": 481, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.803391, - -47.6014 - ] - } - }, - { - "ibge": 2106300, - "name": "Magalhães de Almeida", - "capital": 0, - "ibgeState": 21, - "siafi": 825, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.39232, - -42.2117 - ] - } - }, - { - "ibge": 3528304, - "name": "Magda", - "capital": 0, - "ibgeState": 35, - "siafi": 6667, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6445, - -50.2305 - ] - } - }, - { - "ibge": 3302502, - "name": "Magé", - "capital": 0, - "ibgeState": 33, - "siafi": 5849, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6632, - -43.0315 - ] - } - }, - { - "ibge": 2920007, - "name": "Maiquinique", - "capital": 0, - "ibgeState": 29, - "siafi": 3701, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.624, - -40.2587 - ] - } - }, - { - "ibge": 2920106, - "name": "Mairi", - "capital": 0, - "ibgeState": 29, - "siafi": 3703, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.7107, - -40.1437 - ] - } - }, - { - "ibge": 3528403, - "name": "Mairinque", - "capital": 0, - "ibgeState": 35, - "siafi": 6669, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5398, - -47.185 - ] - } - }, - { - "ibge": 3528502, - "name": "Mairiporã", - "capital": 0, - "ibgeState": 35, - "siafi": 6671, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3171, - -46.5897 - ] - } - }, - { - "ibge": 5212600, - "name": "Mairipotaba", - "capital": 0, - "ibgeState": 52, - "siafi": 9447, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.2975, - -49.4898 - ] - } - }, - { - "ibge": 4210209, - "name": "Major Gercino", - "capital": 0, - "ibgeState": 42, - "siafi": 8201, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4192, - -48.9488 - ] - } - }, - { - "ibge": 2704401, - "name": "Major Isidoro", - "capital": 0, - "ibgeState": 27, - "siafi": 2787, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.53009, - -36.992 - ] - } - }, - { - "ibge": 2407252, - "name": "Major Sales", - "capital": 0, - "ibgeState": 24, - "siafi": 420, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.39949, - -38.324 - ] - } - }, - { - "ibge": 4210308, - "name": "Major Vieira", - "capital": 0, - "ibgeState": 42, - "siafi": 8203, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.3709, - -50.3266 - ] - } - }, - { - "ibge": 3139201, - "name": "Malacacheta", - "capital": 0, - "ibgeState": 31, - "siafi": 4783, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.8456, - -42.0769 - ] - } - }, - { - "ibge": 2920205, - "name": "Malhada", - "capital": 0, - "ibgeState": 29, - "siafi": 3705, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.3371, - -43.7686 - ] - } - }, - { - "ibge": 2920304, - "name": "Malhada de Pedras", - "capital": 0, - "ibgeState": 29, - "siafi": 3707, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.3847, - -41.8842 - ] - } - }, - { - "ibge": 2803807, - "name": "Malhada dos Bois", - "capital": 0, - "ibgeState": 28, - "siafi": 3175, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.3418, - -36.9252 - ] - } - }, - { - "ibge": 2803906, - "name": "Malhador", - "capital": 0, - "ibgeState": 28, - "siafi": 3177, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.6649, - -37.3004 - ] - } - }, - { - "ibge": 4113908, - "name": "Mallet", - "capital": 0, - "ibgeState": 41, - "siafi": 7671, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.8806, - -50.8173 - ] - } - }, - { - "ibge": 2508802, - "name": "Malta", - "capital": 0, - "ibgeState": 25, - "siafi": 2077, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.89719, - -37.5221 - ] - } - }, - { - "ibge": 2508901, - "name": "Mamanguape", - "capital": 0, - "ibgeState": 25, - "siafi": 2079, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.8337, - -35.1213 - ] - } - }, - { - "ibge": 5212709, - "name": "Mambaí", - "capital": 0, - "ibgeState": 52, - "siafi": 9449, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.4823, - -46.1165 - ] - } - }, - { - "ibge": 4114005, - "name": "Mamborê", - "capital": 0, - "ibgeState": 41, - "siafi": 7673, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.317, - -52.5271 - ] - } - }, - { - "ibge": 3139250, - "name": "Mamonas", - "capital": 0, - "ibgeState": 31, - "siafi": 2895, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.0479, - -42.9469 - ] - } - }, - { - "ibge": 4311734, - "name": "Mampituba", - "capital": 0, - "ibgeState": 43, - "siafi": 996, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.2136, - -49.9311 - ] - } - }, - { - "ibge": 1302504, - "name": "Manacapuru", - "capital": 0, - "ibgeState": 13, - "siafi": 253, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.29066, - -60.6216 - ] - } - }, - { - "ibge": 2509008, - "name": "Manaíra", - "capital": 0, - "ibgeState": 25, - "siafi": 2081, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.70331, - -38.1523 - ] - } - }, - { - "ibge": 1302553, - "name": "Manaquiri", - "capital": 0, - "ibgeState": 13, - "siafi": 9839, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.44078, - -60.4612 - ] - } - }, - { - "ibge": 2609154, - "name": "Manari", - "capital": 0, - "ibgeState": 26, - "siafi": 554, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.9649, - -37.6313 - ] - } - }, - { - "ibge": 1302603, - "name": "Manaus", - "capital": 1, - "ibgeState": 13, - "siafi": 255, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.11866, - -60.0212 - ] - } - }, - { - "ibge": 1200336, - "name": "Mâncio Lima", - "capital": 0, - "ibgeState": 12, - "siafi": 109, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -7.61657, - -72.8997 - ] - } - }, - { - "ibge": 4114104, - "name": "Mandaguaçu", - "capital": 0, - "ibgeState": 41, - "siafi": 7675, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3458, - -52.0944 - ] - } - }, - { - "ibge": 4114203, - "name": "Mandaguari", - "capital": 0, - "ibgeState": 41, - "siafi": 7677, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5446, - -51.671 - ] - } - }, - { - "ibge": 4114302, - "name": "Mandirituba", - "capital": 0, - "ibgeState": 41, - "siafi": 7679, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.777, - -49.3282 - ] - } - }, - { - "ibge": 3528601, - "name": "Manduri", - "capital": 0, - "ibgeState": 35, - "siafi": 6673, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0056, - -49.3202 - ] - } - }, - { - "ibge": 4114351, - "name": "Manfrinópolis", - "capital": 0, - "ibgeState": 41, - "siafi": 864, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.1441, - -53.3113 - ] - } - }, - { - "ibge": 3139300, - "name": "Manga", - "capital": 0, - "ibgeState": 31, - "siafi": 4785, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.7529, - -43.9391 - ] - } - }, - { - "ibge": 3302601, - "name": "Mangaratiba", - "capital": 0, - "ibgeState": 33, - "siafi": 5851, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9594, - -44.0409 - ] - } - }, - { - "ibge": 4114401, - "name": "Mangueirinha", - "capital": 0, - "ibgeState": 41, - "siafi": 7511, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.9421, - -52.1743 - ] - } - }, - { - "ibge": 3139409, - "name": "Manhuaçu", - "capital": 0, - "ibgeState": 31, - "siafi": 4787, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2572, - -42.028 - ] - } - }, - { - "ibge": 3139508, - "name": "Manhumirim", - "capital": 0, - "ibgeState": 31, - "siafi": 4789, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3591, - -41.9589 - ] - } - }, - { - "ibge": 1302702, - "name": "Manicoré", - "capital": 0, - "ibgeState": 13, - "siafi": 257, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -5.80462, - -61.2895 - ] - } - }, - { - "ibge": 2205904, - "name": "Manoel Emídio", - "capital": 0, - "ibgeState": 22, - "siafi": 1117, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.01234, - -43.8755 - ] - } - }, - { - "ibge": 4114500, - "name": "Manoel Ribas", - "capital": 0, - "ibgeState": 41, - "siafi": 7681, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.5144, - -51.6658 - ] - } - }, - { - "ibge": 1200344, - "name": "Manoel Urbano", - "capital": 0, - "ibgeState": 12, - "siafi": 155, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -8.83291, - -69.2679 - ] - } - }, - { - "ibge": 4311759, - "name": "Manoel Viana", - "capital": 0, - "ibgeState": 43, - "siafi": 6079, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5859, - -55.4841 - ] - } - }, - { - "ibge": 2920403, - "name": "Manoel Vitorino", - "capital": 0, - "ibgeState": 29, - "siafi": 3709, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.1476, - -40.2399 - ] - } - }, - { - "ibge": 2920452, - "name": "Mansidão", - "capital": 0, - "ibgeState": 29, - "siafi": 3977, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7227, - -44.0428 - ] - } - }, - { - "ibge": 3139607, - "name": "Mantena", - "capital": 0, - "ibgeState": 31, - "siafi": 4791, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7761, - -40.9874 - ] - } - }, - { - "ibge": 3203304, - "name": "Mantenópolis", - "capital": 0, - "ibgeState": 32, - "siafi": 5665, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.8594, - -41.124 - ] - } - }, - { - "ibge": 4311775, - "name": "Maquiné", - "capital": 0, - "ibgeState": 43, - "siafi": 5783, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6798, - -50.2079 - ] - } - }, - { - "ibge": 3139805, - "name": "Mar de Espanha", - "capital": 0, - "ibgeState": 31, - "siafi": 4795, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8707, - -43.0062 - ] - } - }, - { - "ibge": 2704906, - "name": "Mar Vermelho", - "capital": 0, - "ibgeState": 27, - "siafi": 2797, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.44739, - -36.3881 - ] - } - }, - { - "ibge": 5212808, - "name": "Mara Rosa", - "capital": 0, - "ibgeState": 52, - "siafi": 9451, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.0148, - -49.1777 - ] - } - }, - { - "ibge": 1302801, - "name": "Maraã", - "capital": 0, - "ibgeState": 13, - "siafi": 259, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -1.85313, - -65.573 - ] - } - }, - { - "ibge": 1504208, - "name": "Marabá", - "capital": 0, - "ibgeState": 15, - "siafi": 483, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.38075, - -49.1327 - ] - } - }, - { - "ibge": 3528700, - "name": "Marabá Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 6675, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1068, - -51.9617 - ] - } - }, - { - "ibge": 2106326, - "name": "Maracaçumé", - "capital": 0, - "ibgeState": 21, - "siafi": 190, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.04918, - -45.9587 - ] - } - }, - { - "ibge": 3528809, - "name": "Maracaí", - "capital": 0, - "ibgeState": 35, - "siafi": 6677, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6149, - -50.6713 - ] - } - }, - { - "ibge": 4210407, - "name": "Maracajá", - "capital": 0, - "ibgeState": 42, - "siafi": 8391, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.8463, - -49.4605 - ] - } - }, - { - "ibge": 5005400, - "name": "Maracaju", - "capital": 0, - "ibgeState": 50, - "siafi": 9107, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -21.6105, - -55.1678 - ] - } - }, - { - "ibge": 1504307, - "name": "Maracanã", - "capital": 0, - "ibgeState": 15, - "siafi": 485, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.778899, - -47.452 - ] - } - }, - { - "ibge": 2307650, - "name": "Maracanaú", - "capital": 0, - "ibgeState": 23, - "siafi": 1585, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.86699, - -38.6259 - ] - } - }, - { - "ibge": 2920502, - "name": "Maracás", - "capital": 0, - "ibgeState": 29, - "siafi": 3711, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.4355, - -40.4323 - ] - } - }, - { - "ibge": 2704500, - "name": "Maragogi", - "capital": 0, - "ibgeState": 27, - "siafi": 2789, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.00744, - -35.2267 - ] - } - }, - { - "ibge": 2920601, - "name": "Maragogipe", - "capital": 0, - "ibgeState": 29, - "siafi": 3713, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.776, - -38.9175 - ] - } - }, - { - "ibge": 2609204, - "name": "Maraial", - "capital": 0, - "ibgeState": 26, - "siafi": 2483, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.79062, - -35.8266 - ] - } - }, - { - "ibge": 2106359, - "name": "Marajá do Sena", - "capital": 0, - "ibgeState": 21, - "siafi": 192, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.62806, - -45.4531 - ] - } - }, - { - "ibge": 2307700, - "name": "Maranguape", - "capital": 0, - "ibgeState": 23, - "siafi": 1455, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.89143, - -38.6829 - ] - } - }, - { - "ibge": 2106375, - "name": "Maranhãozinho", - "capital": 0, - "ibgeState": 21, - "siafi": 194, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.24078, - -45.8507 - ] - } - }, - { - "ibge": 1504406, - "name": "Marapanim", - "capital": 0, - "ibgeState": 15, - "siafi": 487, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.714702, - -47.7034 - ] - } - }, - { - "ibge": 3528858, - "name": "Marapoama", - "capital": 0, - "ibgeState": 35, - "siafi": 2977, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2587, - -49.13 - ] - } - }, - { - "ibge": 4311791, - "name": "Maratá", - "capital": 0, - "ibgeState": 43, - "siafi": 6039, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5457, - -51.5573 - ] - } - }, - { - "ibge": 3203320, - "name": "Marataízes", - "capital": 0, - "ibgeState": 32, - "siafi": 760, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0398, - -40.8384 - ] - } - }, - { - "ibge": 4311809, - "name": "Marau", - "capital": 0, - "ibgeState": 43, - "siafi": 8737, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.4498, - -52.1986 - ] - } - }, - { - "ibge": 2920700, - "name": "Maraú", - "capital": 0, - "ibgeState": 29, - "siafi": 3715, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.1035, - -39.0137 - ] - } - }, - { - "ibge": 2704609, - "name": "Maravilha", - "capital": 0, - "ibgeState": 27, - "siafi": 2791, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.23045, - -37.3524 - ] - } - }, - { - "ibge": 4210506, - "name": "Maravilha", - "capital": 0, - "ibgeState": 42, - "siafi": 8205, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7665, - -53.1737 - ] - } - }, - { - "ibge": 3139706, - "name": "Maravilhas", - "capital": 0, - "ibgeState": 31, - "siafi": 4793, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5076, - -44.6779 - ] - } - }, - { - "ibge": 2509057, - "name": "Marcação", - "capital": 0, - "ibgeState": 25, - "siafi": 484, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.76535, - -35.0087 - ] - } - }, - { - "ibge": 5105580, - "name": "Marcelândia", - "capital": 0, - "ibgeState": 51, - "siafi": 9899, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.0463, - -54.4377 - ] - } - }, - { - "ibge": 4311908, - "name": "Marcelino Ramos", - "capital": 0, - "ibgeState": 43, - "siafi": 8739, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4676, - -51.9095 - ] - } - }, - { - "ibge": 2407302, - "name": "Marcelino Vieira", - "capital": 0, - "ibgeState": 24, - "siafi": 1745, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.2846, - -38.1642 - ] - } - }, - { - "ibge": 2920809, - "name": "Marcionílio Souza", - "capital": 0, - "ibgeState": 29, - "siafi": 3717, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.0064, - -40.5295 - ] - } - }, - { - "ibge": 2307809, - "name": "Marco", - "capital": 0, - "ibgeState": 23, - "siafi": 1457, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.1285, - -40.1582 - ] - } - }, - { - "ibge": 2205953, - "name": "Marcolândia", - "capital": 0, - "ibgeState": 22, - "siafi": 2275, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.44169, - -40.6602 - ] - } - }, - { - "ibge": 2206001, - "name": "Marcos Parente", - "capital": 0, - "ibgeState": 22, - "siafi": 1119, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.11565, - -43.8926 - ] - } - }, - { - "ibge": 4114609, - "name": "Marechal Cândido Rondon", - "capital": 0, - "ibgeState": 41, - "siafi": 7683, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.557, - -54.0571 - ] - } - }, - { - "ibge": 2704708, - "name": "Marechal Deodoro", - "capital": 0, - "ibgeState": 27, - "siafi": 2793, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.70971, - -35.8967 - ] - } - }, - { - "ibge": 3203346, - "name": "Marechal Floriano", - "capital": 0, - "ibgeState": 32, - "siafi": 2929, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4159, - -40.67 - ] - } - }, - { - "ibge": 1200351, - "name": "Marechal Thaumaturgo", - "capital": 0, - "ibgeState": 12, - "siafi": 655, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -8.93898, - -72.7997 - ] - } - }, - { - "ibge": 4210555, - "name": "Marema", - "capital": 0, - "ibgeState": 42, - "siafi": 9963, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.8024, - -52.6264 - ] - } - }, - { - "ibge": 2509107, - "name": "Mari", - "capital": 0, - "ibgeState": 25, - "siafi": 2083, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.05942, - -35.318 - ] - } - }, - { - "ibge": 3139904, - "name": "Maria da Fé", - "capital": 0, - "ibgeState": 31, - "siafi": 4797, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3044, - -45.3773 - ] - } - }, - { - "ibge": 4114708, - "name": "Maria Helena", - "capital": 0, - "ibgeState": 41, - "siafi": 7685, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6158, - -53.2053 - ] - } - }, - { - "ibge": 4114807, - "name": "Marialva", - "capital": 0, - "ibgeState": 41, - "siafi": 7687, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4843, - -51.7928 - ] - } - }, - { - "ibge": 3140001, - "name": "Mariana", - "capital": 0, - "ibgeState": 31, - "siafi": 4799, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3765, - -43.414 - ] - } - }, - { - "ibge": 4311981, - "name": "Mariana Pimentel", - "capital": 0, - "ibgeState": 43, - "siafi": 5759, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.353, - -51.5803 - ] - } - }, - { - "ibge": 4312005, - "name": "Mariano Moro", - "capital": 0, - "ibgeState": 43, - "siafi": 8741, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3568, - -52.1467 - ] - } - }, - { - "ibge": 1712504, - "name": "Marianópolis do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9711, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.79377, - -49.6553 - ] - } - }, - { - "ibge": 3528908, - "name": "Mariápolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6679, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7959, - -51.1824 - ] - } - }, - { - "ibge": 2704807, - "name": "Maribondo", - "capital": 0, - "ibgeState": 27, - "siafi": 2795, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.58353, - -36.3045 - ] - } - }, - { - "ibge": 3302700, - "name": "Maricá", - "capital": 0, - "ibgeState": 33, - "siafi": 5853, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9354, - -42.8246 - ] - } - }, - { - "ibge": 3140100, - "name": "Marilac", - "capital": 0, - "ibgeState": 31, - "siafi": 4801, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5079, - -42.0822 - ] - } - }, - { - "ibge": 3203353, - "name": "Marilândia", - "capital": 0, - "ibgeState": 32, - "siafi": 5707, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.4114, - -40.5456 - ] - } - }, - { - "ibge": 4114906, - "name": "Marilândia do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 7433, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7425, - -51.3137 - ] - } - }, - { - "ibge": 4115002, - "name": "Marilena", - "capital": 0, - "ibgeState": 41, - "siafi": 7975, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7336, - -53.0402 - ] - } - }, - { - "ibge": 3529005, - "name": "Marília", - "capital": 0, - "ibgeState": 35, - "siafi": 6681, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2171, - -49.9501 - ] - } - }, - { - "ibge": 4115101, - "name": "Mariluz", - "capital": 0, - "ibgeState": 41, - "siafi": 7689, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.0089, - -53.1432 - ] - } - }, - { - "ibge": 4115200, - "name": "Maringá", - "capital": 0, - "ibgeState": 41, - "siafi": 7691, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4205, - -51.9333 - ] - } - }, - { - "ibge": 3529104, - "name": "Marinópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6683, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4389, - -50.8254 - ] - } - }, - { - "ibge": 3140159, - "name": "Mário Campos", - "capital": 0, - "ibgeState": 31, - "siafi": 648, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0582, - -44.1883 - ] - } - }, - { - "ibge": 4115309, - "name": "Mariópolis", - "capital": 0, - "ibgeState": 41, - "siafi": 7693, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.355, - -52.5532 - ] - } - }, - { - "ibge": 4115358, - "name": "Maripá", - "capital": 0, - "ibgeState": 41, - "siafi": 5487, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.42, - -53.8286 - ] - } - }, - { - "ibge": 3140209, - "name": "Maripá de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4803, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6979, - -42.9546 - ] - } - }, - { - "ibge": 1504422, - "name": "Marituba", - "capital": 0, - "ibgeState": 15, - "siafi": 54, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.36002, - -48.3421 - ] - } - }, - { - "ibge": 2509156, - "name": "Marizópolis", - "capital": 0, - "ibgeState": 25, - "siafi": 486, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.82748, - -38.3528 - ] - } - }, - { - "ibge": 3140308, - "name": "Marliéria", - "capital": 0, - "ibgeState": 31, - "siafi": 4805, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7096, - -42.7327 - ] - } - }, - { - "ibge": 4115408, - "name": "Marmeleiro", - "capital": 0, - "ibgeState": 41, - "siafi": 7695, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.1472, - -53.0267 - ] - } - }, - { - "ibge": 3140407, - "name": "Marmelópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 4807, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.447, - -45.1645 - ] - } - }, - { - "ibge": 4312054, - "name": "Marques de Souza", - "capital": 0, - "ibgeState": 43, - "siafi": 998, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3311, - -52.0973 - ] - } - }, - { - "ibge": 4115457, - "name": "Marquinho", - "capital": 0, - "ibgeState": 41, - "siafi": 866, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.112, - -52.2497 - ] - } - }, - { - "ibge": 3140506, - "name": "Martinho Campos", - "capital": 0, - "ibgeState": 31, - "siafi": 4809, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.3306, - -45.2434 - ] - } - }, - { - "ibge": 2307908, - "name": "Martinópole", - "capital": 0, - "ibgeState": 23, - "siafi": 1459, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.2252, - -40.6896 - ] - } - }, - { - "ibge": 3529203, - "name": "Martinópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6685, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1462, - -51.1709 - ] - } - }, - { - "ibge": 2407401, - "name": "Martins", - "capital": 0, - "ibgeState": 24, - "siafi": 1747, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.08279, - -37.908 - ] - } - }, - { - "ibge": 3140530, - "name": "Martins Soares", - "capital": 0, - "ibgeState": 31, - "siafi": 650, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2546, - -41.8786 - ] - } - }, - { - "ibge": 2804003, - "name": "Maruim", - "capital": 0, - "ibgeState": 28, - "siafi": 3179, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7308, - -37.0856 - ] - } - }, - { - "ibge": 4115507, - "name": "Marumbi", - "capital": 0, - "ibgeState": 41, - "siafi": 7697, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7058, - -51.6404 - ] - } - }, - { - "ibge": 5212907, - "name": "Marzagão", - "capital": 0, - "ibgeState": 52, - "siafi": 9453, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.983, - -48.6415 - ] - } - }, - { - "ibge": 2920908, - "name": "Mascote", - "capital": 0, - "ibgeState": 29, - "siafi": 3719, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.5542, - -39.3016 - ] - } - }, - { - "ibge": 2308005, - "name": "Massapê", - "capital": 0, - "ibgeState": 23, - "siafi": 1461, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.52364, - -40.3423 - ] - } - }, - { - "ibge": 2206050, - "name": "Massapê do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 346, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.47469, - -41.1103 - ] - } - }, - { - "ibge": 2509206, - "name": "Massaranduba", - "capital": 0, - "ibgeState": 25, - "siafi": 2085, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.18995, - -35.7848 - ] - } - }, - { - "ibge": 4210605, - "name": "Massaranduba", - "capital": 0, - "ibgeState": 42, - "siafi": 8207, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.6109, - -49.0054 - ] - } - }, - { - "ibge": 4312104, - "name": "Mata", - "capital": 0, - "ibgeState": 43, - "siafi": 8743, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5649, - -54.4641 - ] - } - }, - { - "ibge": 2921005, - "name": "Mata de São João", - "capital": 0, - "ibgeState": 29, - "siafi": 3721, - "ddd": 71, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.5307, - -38.3009 - ] - } - }, - { - "ibge": 2705002, - "name": "Mata Grande", - "capital": 0, - "ibgeState": 27, - "siafi": 2799, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.11824, - -37.7323 - ] - } - }, - { - "ibge": 2106409, - "name": "Mata Roma", - "capital": 0, - "ibgeState": 21, - "siafi": 827, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.62035, - -43.1112 - ] - } - }, - { - "ibge": 3140555, - "name": "Mata Verde", - "capital": 0, - "ibgeState": 31, - "siafi": 2659, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.6869, - -40.7366 - ] - } - }, - { - "ibge": 3529302, - "name": "Matão", - "capital": 0, - "ibgeState": 35, - "siafi": 6687, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6025, - -48.364 - ] - } - }, - { - "ibge": 2509305, - "name": "Mataraca", - "capital": 0, - "ibgeState": 25, - "siafi": 2087, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.59673, - -35.0531 - ] - } - }, - { - "ibge": 1712702, - "name": "Mateiros", - "capital": 0, - "ibgeState": 17, - "siafi": 317, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.5464, - -46.4168 - ] - } - }, - { - "ibge": 4115606, - "name": "Matelândia", - "capital": 0, - "ibgeState": 41, - "siafi": 7699, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.2496, - -53.9935 - ] - } - }, - { - "ibge": 3140605, - "name": "Materlândia", - "capital": 0, - "ibgeState": 31, - "siafi": 4811, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4699, - -43.0579 - ] - } - }, - { - "ibge": 3140704, - "name": "Mateus Leme", - "capital": 0, - "ibgeState": 31, - "siafi": 4813, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9794, - -44.4318 - ] - } - }, - { - "ibge": 3171501, - "name": "Mathias Lobato", - "capital": 0, - "ibgeState": 31, - "siafi": 5431, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.59, - -41.9166 - ] - } - }, - { - "ibge": 3140803, - "name": "Matias Barbosa", - "capital": 0, - "ibgeState": 31, - "siafi": 4815, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.869, - -43.3135 - ] - } - }, - { - "ibge": 3140852, - "name": "Matias Cardoso", - "capital": 0, - "ibgeState": 31, - "siafi": 2897, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.8563, - -43.9146 - ] - } - }, - { - "ibge": 2206100, - "name": "Matias Olímpio", - "capital": 0, - "ibgeState": 22, - "siafi": 1121, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.71492, - -42.5507 - ] - } - }, - { - "ibge": 2921054, - "name": "Matina", - "capital": 0, - "ibgeState": 29, - "siafi": 3295, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.9109, - -42.8439 - ] - } - }, - { - "ibge": 2106508, - "name": "Matinha", - "capital": 0, - "ibgeState": 21, - "siafi": 829, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.09849, - -45.035 - ] - } - }, - { - "ibge": 2509339, - "name": "Matinhas", - "capital": 0, - "ibgeState": 25, - "siafi": 488, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.12486, - -35.7669 - ] - } - }, - { - "ibge": 4115705, - "name": "Matinhos", - "capital": 0, - "ibgeState": 41, - "siafi": 7963, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.8237, - -48.549 - ] - } - }, - { - "ibge": 3140902, - "name": "Matipó", - "capital": 0, - "ibgeState": 31, - "siafi": 4817, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2873, - -42.3401 - ] - } - }, - { - "ibge": 4312138, - "name": "Mato Castelhano", - "capital": 0, - "ibgeState": 43, - "siafi": 5931, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.28, - -52.1932 - ] - } - }, - { - "ibge": 2509370, - "name": "Mato Grosso", - "capital": 0, - "ibgeState": 25, - "siafi": 490, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.54018, - -37.7279 - ] - } - }, - { - "ibge": 4312153, - "name": "Mato Leitão", - "capital": 0, - "ibgeState": 43, - "siafi": 6031, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5285, - -52.1278 - ] - } - }, - { - "ibge": 4312179, - "name": "Mato Queimado", - "capital": 0, - "ibgeState": 43, - "siafi": 1150, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.252, - -54.6159 - ] - } - }, - { - "ibge": 4115739, - "name": "Mato Rico", - "capital": 0, - "ibgeState": 41, - "siafi": 5503, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.6995, - -52.1454 - ] - } - }, - { - "ibge": 3141009, - "name": "Mato Verde", - "capital": 0, - "ibgeState": 31, - "siafi": 4819, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.3944, - -42.86 - ] - } - }, - { - "ibge": 2106607, - "name": "Matões", - "capital": 0, - "ibgeState": 21, - "siafi": 831, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.51359, - -43.2018 - ] - } - }, - { - "ibge": 2106631, - "name": "Matões do Norte", - "capital": 0, - "ibgeState": 21, - "siafi": 196, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.6244, - -44.5468 - ] - } - }, - { - "ibge": 4210704, - "name": "Matos Costa", - "capital": 0, - "ibgeState": 42, - "siafi": 8209, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.4709, - -51.1501 - ] - } - }, - { - "ibge": 3141108, - "name": "Matozinhos", - "capital": 0, - "ibgeState": 31, - "siafi": 4821, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5543, - -44.0868 - ] - } - }, - { - "ibge": 5212956, - "name": "Matrinchã", - "capital": 0, - "ibgeState": 52, - "siafi": 9927, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.4342, - -50.7456 - ] - } - }, - { - "ibge": 2705101, - "name": "Matriz de Camaragibe", - "capital": 0, - "ibgeState": 27, - "siafi": 2801, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.15437, - -35.5243 - ] - } - }, - { - "ibge": 5105606, - "name": "Matupá", - "capital": 0, - "ibgeState": 51, - "siafi": 9929, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.1821, - -54.9467 - ] - } - }, - { - "ibge": 2509396, - "name": "Maturéia", - "capital": 0, - "ibgeState": 25, - "siafi": 492, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.26188, - -37.351 - ] - } - }, - { - "ibge": 3141207, - "name": "Matutina", - "capital": 0, - "ibgeState": 31, - "siafi": 4823, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2179, - -45.9664 - ] - } - }, - { - "ibge": 3529401, - "name": "Mauá", - "capital": 0, - "ibgeState": 35, - "siafi": 6689, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6677, - -46.4613 - ] - } - }, - { - "ibge": 4115754, - "name": "Mauá da Serra", - "capital": 0, - "ibgeState": 41, - "siafi": 5459, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8988, - -51.2277 - ] - } - }, - { - "ibge": 1302900, - "name": "Maués", - "capital": 0, - "ibgeState": 13, - "siafi": 261, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.39289, - -57.7067 - ] - } - }, - { - "ibge": 5213004, - "name": "Maurilândia", - "capital": 0, - "ibgeState": 52, - "siafi": 9457, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.9719, - -50.3388 - ] - } - }, - { - "ibge": 1712801, - "name": "Maurilândia do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 183, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.95169, - -47.5125 - ] - } - }, - { - "ibge": 2308104, - "name": "Mauriti", - "capital": 0, - "ibgeState": 23, - "siafi": 1463, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.38597, - -38.7708 - ] - } - }, - { - "ibge": 2407500, - "name": "Maxaranguape", - "capital": 0, - "ibgeState": 24, - "siafi": 1749, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.52181, - -35.2631 - ] - } - }, - { - "ibge": 4312203, - "name": "Maximiliano de Almeida", - "capital": 0, - "ibgeState": 43, - "siafi": 8745, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6325, - -51.802 - ] - } - }, - { - "ibge": 1600402, - "name": "Mazagão", - "capital": 0, - "ibgeState": 16, - "siafi": 607, - "ddd": 96, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.11336, - -51.2891 - ] - } - }, - { - "ibge": 3141306, - "name": "Medeiros", - "capital": 0, - "ibgeState": 31, - "siafi": 4825, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9865, - -46.2181 - ] - } - }, - { - "ibge": 2921104, - "name": "Medeiros Neto", - "capital": 0, - "ibgeState": 29, - "siafi": 3723, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.3707, - -40.2238 - ] - } - }, - { - "ibge": 4115804, - "name": "Medianeira", - "capital": 0, - "ibgeState": 41, - "siafi": 7701, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.2977, - -54.0943 - ] - } - }, - { - "ibge": 1504455, - "name": "Medicilândia", - "capital": 0, - "ibgeState": 15, - "siafi": 589, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.44637, - -52.8875 - ] - } - }, - { - "ibge": 3141405, - "name": "Medina", - "capital": 0, - "ibgeState": 31, - "siafi": 4827, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.2245, - -41.4728 - ] - } - }, - { - "ibge": 4210803, - "name": "Meleiro", - "capital": 0, - "ibgeState": 42, - "siafi": 8211, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.8244, - -49.6378 - ] - } - }, - { - "ibge": 1504505, - "name": "Melgaço", - "capital": 0, - "ibgeState": 15, - "siafi": 489, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.8032, - -50.7149 - ] - } - }, - { - "ibge": 3302809, - "name": "Mendes", - "capital": 0, - "ibgeState": 33, - "siafi": 5855, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5245, - -43.7312 - ] - } - }, - { - "ibge": 3141504, - "name": "Mendes Pimentel", - "capital": 0, - "ibgeState": 31, - "siafi": 4829, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.6631, - -41.4052 - ] - } - }, - { - "ibge": 3529500, - "name": "Mendonça", - "capital": 0, - "ibgeState": 35, - "siafi": 6691, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1757, - -49.5791 - ] - } - }, - { - "ibge": 4115853, - "name": "Mercedes", - "capital": 0, - "ibgeState": 41, - "siafi": 5531, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.4538, - -54.1618 - ] - } - }, - { - "ibge": 3141603, - "name": "Mercês", - "capital": 0, - "ibgeState": 31, - "siafi": 4831, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1976, - -43.3337 - ] - } - }, - { - "ibge": 3529609, - "name": "Meridiano", - "capital": 0, - "ibgeState": 35, - "siafi": 6693, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3579, - -50.1811 - ] - } - }, - { - "ibge": 2308203, - "name": "Meruoca", - "capital": 0, - "ibgeState": 23, - "siafi": 1465, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.53974, - -40.4531 - ] - } - }, - { - "ibge": 3529658, - "name": "Mesópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 2983, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9684, - -50.6326 - ] - } - }, - { - "ibge": 3302858, - "name": "Mesquita", - "capital": 0, - "ibgeState": 33, - "siafi": 1116, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8028, - -43.4601 - ] - } - }, - { - "ibge": 3141702, - "name": "Mesquita", - "capital": 0, - "ibgeState": 31, - "siafi": 4833, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.224, - -42.6079 - ] - } - }, - { - "ibge": 2705200, - "name": "Messias", - "capital": 0, - "ibgeState": 27, - "siafi": 2803, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.39384, - -35.8392 - ] - } - }, - { - "ibge": 2407609, - "name": "Messias Targino", - "capital": 0, - "ibgeState": 24, - "siafi": 1721, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.07194, - -37.5158 - ] - } - }, - { - "ibge": 2206209, - "name": "Miguel Alves", - "capital": 0, - "ibgeState": 22, - "siafi": 1123, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.16857, - -42.8963 - ] - } - }, - { - "ibge": 2921203, - "name": "Miguel Calmon", - "capital": 0, - "ibgeState": 29, - "siafi": 3725, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.4299, - -40.6031 - ] - } - }, - { - "ibge": 2206308, - "name": "Miguel Leão", - "capital": 0, - "ibgeState": 22, - "siafi": 1125, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.68077, - -42.7436 - ] - } - }, - { - "ibge": 3302908, - "name": "Miguel Pereira", - "capital": 0, - "ibgeState": 33, - "siafi": 5857, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4572, - -43.4803 - ] - } - }, - { - "ibge": 3529708, - "name": "Miguelópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6695, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1796, - -48.031 - ] - } - }, - { - "ibge": 2308302, - "name": "Milagres", - "capital": 0, - "ibgeState": 23, - "siafi": 1467, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.29749, - -38.9378 - ] - } - }, - { - "ibge": 2921302, - "name": "Milagres", - "capital": 0, - "ibgeState": 29, - "siafi": 3727, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.8646, - -39.8611 - ] - } - }, - { - "ibge": 2106672, - "name": "Milagres do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 198, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.57443, - -42.6131 - ] - } - }, - { - "ibge": 2308351, - "name": "Milhã", - "capital": 0, - "ibgeState": 23, - "siafi": 1597, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.67252, - -39.1875 - ] - } - }, - { - "ibge": 2206357, - "name": "Milton Brandão", - "capital": 0, - "ibgeState": 22, - "siafi": 348, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.68295, - -41.4173 - ] - } - }, - { - "ibge": 5213053, - "name": "Mimoso de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9931, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.0515, - -48.1611 - ] - } - }, - { - "ibge": 3203403, - "name": "Mimoso do Sul", - "capital": 0, - "ibgeState": 32, - "siafi": 5667, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0628, - -41.3615 - ] - } - }, - { - "ibge": 5213087, - "name": "Minaçu", - "capital": 0, - "ibgeState": 52, - "siafi": 9647, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.5304, - -48.2206 - ] - } - }, - { - "ibge": 2705309, - "name": "Minador do Negrão", - "capital": 0, - "ibgeState": 27, - "siafi": 2805, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.31236, - -36.8696 - ] - } - }, - { - "ibge": 4312252, - "name": "Minas do Leão", - "capital": 0, - "ibgeState": 43, - "siafi": 5773, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.1346, - -52.0423 - ] - } - }, - { - "ibge": 3141801, - "name": "Minas Novas", - "capital": 0, - "ibgeState": 31, - "siafi": 4835, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.2156, - -42.5884 - ] - } - }, - { - "ibge": 3141900, - "name": "Minduri", - "capital": 0, - "ibgeState": 31, - "siafi": 4837, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6797, - -44.6051 - ] - } - }, - { - "ibge": 5213103, - "name": "Mineiros", - "capital": 0, - "ibgeState": 52, - "siafi": 9459, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.5654, - -52.5537 - ] - } - }, - { - "ibge": 3529807, - "name": "Mineiros do Tietê", - "capital": 0, - "ibgeState": 35, - "siafi": 6697, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.412, - -48.451 - ] - } - }, - { - "ibge": 1101203, - "name": "Ministro Andreazza", - "capital": 0, - "ibgeState": 11, - "siafi": 695, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.196, - -61.5174 - ] - } - }, - { - "ibge": 3530003, - "name": "Mira Estrela", - "capital": 0, - "ibgeState": 35, - "siafi": 6701, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9789, - -50.139 - ] - } - }, - { - "ibge": 3142007, - "name": "Mirabela", - "capital": 0, - "ibgeState": 31, - "siafi": 4839, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.256, - -44.1602 - ] - } - }, - { - "ibge": 3529906, - "name": "Miracatu", - "capital": 0, - "ibgeState": 35, - "siafi": 6699, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.2766, - -47.4625 - ] - } - }, - { - "ibge": 3303005, - "name": "Miracema", - "capital": 0, - "ibgeState": 33, - "siafi": 5859, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4148, - -42.1938 - ] - } - }, - { - "ibge": 1713205, - "name": "Miracema do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9461, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.56556, - -48.393 - ] - } - }, - { - "ibge": 2106706, - "name": "Mirador", - "capital": 0, - "ibgeState": 21, - "siafi": 833, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.37454, - -44.3683 - ] - } - }, - { - "ibge": 4115903, - "name": "Mirador", - "capital": 0, - "ibgeState": 41, - "siafi": 7703, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.255, - -52.7761 - ] - } - }, - { - "ibge": 3142106, - "name": "Miradouro", - "capital": 0, - "ibgeState": 31, - "siafi": 4841, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8899, - -42.3458 - ] - } - }, - { - "ibge": 4312302, - "name": "Miraguaí", - "capital": 0, - "ibgeState": 43, - "siafi": 8747, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.497, - -53.6891 - ] - } - }, - { - "ibge": 3142205, - "name": "Miraí", - "capital": 0, - "ibgeState": 31, - "siafi": 4843, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2021, - -42.6122 - ] - } - }, - { - "ibge": 2308377, - "name": "Miraíma", - "capital": 0, - "ibgeState": 23, - "siafi": 1263, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.56867, - -39.9663 - ] - } - }, - { - "ibge": 5005608, - "name": "Miranda", - "capital": 0, - "ibgeState": 50, - "siafi": 9111, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -20.2355, - -56.3746 - ] - } - }, - { - "ibge": 2106755, - "name": "Miranda do Norte", - "capital": 0, - "ibgeState": 21, - "siafi": 1283, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.56313, - -44.5814 - ] - } - }, - { - "ibge": 2609303, - "name": "Mirandiba", - "capital": 0, - "ibgeState": 26, - "siafi": 2485, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.12113, - -38.7388 - ] - } - }, - { - "ibge": 3530102, - "name": "Mirandópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6703, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1313, - -51.1035 - ] - } - }, - { - "ibge": 2921401, - "name": "Mirangaba", - "capital": 0, - "ibgeState": 29, - "siafi": 3729, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.961, - -40.574 - ] - } - }, - { - "ibge": 1713304, - "name": "Miranorte", - "capital": 0, - "ibgeState": 17, - "siafi": 9463, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.52907, - -48.5922 - ] - } - }, - { - "ibge": 2921450, - "name": "Mirante", - "capital": 0, - "ibgeState": 29, - "siafi": 3297, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.2385, - -40.7718 - ] - } - }, - { - "ibge": 1101302, - "name": "Mirante da Serra", - "capital": 0, - "ibgeState": 11, - "siafi": 697, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.029, - -62.6696 - ] - } - }, - { - "ibge": 3530201, - "name": "Mirante do Paranapanema", - "capital": 0, - "ibgeState": 35, - "siafi": 6705, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2904, - -51.9084 - ] - } - }, - { - "ibge": 4116000, - "name": "Miraselva", - "capital": 0, - "ibgeState": 41, - "siafi": 7705, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9657, - -51.4846 - ] - } - }, - { - "ibge": 3530300, - "name": "Mirassol", - "capital": 0, - "ibgeState": 35, - "siafi": 6707, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8169, - -49.5206 - ] - } - }, - { - "ibge": 5105622, - "name": "Mirassol d'Oeste", - "capital": 0, - "ibgeState": 51, - "siafi": 9177, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.6759, - -58.0951 - ] - } - }, - { - "ibge": 3530409, - "name": "Mirassolândia", - "capital": 0, - "ibgeState": 35, - "siafi": 6709, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6179, - -49.4617 - ] - } - }, - { - "ibge": 3142254, - "name": "Miravânia", - "capital": 0, - "ibgeState": 31, - "siafi": 652, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.7348, - -44.4092 - ] - } - }, - { - "ibge": 4210852, - "name": "Mirim Doce", - "capital": 0, - "ibgeState": 42, - "siafi": 5559, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.197, - -50.0786 - ] - } - }, - { - "ibge": 2106805, - "name": "Mirinzal", - "capital": 0, - "ibgeState": 21, - "siafi": 835, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.07094, - -44.7787 - ] - } - }, - { - "ibge": 4116059, - "name": "Missal", - "capital": 0, - "ibgeState": 41, - "siafi": 8469, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.0919, - -54.2477 - ] - } - }, - { - "ibge": 2308401, - "name": "Missão Velha", - "capital": 0, - "ibgeState": 23, - "siafi": 1469, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.23522, - -39.143 - ] - } - }, - { - "ibge": 1504604, - "name": "Mocajuba", - "capital": 0, - "ibgeState": 15, - "siafi": 491, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.5831, - -49.5042 - ] - } - }, - { - "ibge": 3530508, - "name": "Mococa", - "capital": 0, - "ibgeState": 35, - "siafi": 6711, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4647, - -47.0024 - ] - } - }, - { - "ibge": 4210902, - "name": "Modelo", - "capital": 0, - "ibgeState": 42, - "siafi": 8213, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7729, - -53.04 - ] - } - }, - { - "ibge": 3142304, - "name": "Moeda", - "capital": 0, - "ibgeState": 31, - "siafi": 4845, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3399, - -44.0509 - ] - } - }, - { - "ibge": 3142403, - "name": "Moema", - "capital": 0, - "ibgeState": 31, - "siafi": 4847, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8387, - -45.4127 - ] - } - }, - { - "ibge": 2509404, - "name": "Mogeiro", - "capital": 0, - "ibgeState": 25, - "siafi": 2089, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.28517, - -35.4832 - ] - } - }, - { - "ibge": 3530607, - "name": "Mogi das Cruzes", - "capital": 0, - "ibgeState": 35, - "siafi": 6713, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5208, - -46.1854 - ] - } - }, - { - "ibge": 3530706, - "name": "Mogi Guaçu", - "capital": 0, - "ibgeState": 35, - "siafi": 6715, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3675, - -46.9428 - ] - } - }, - { - "ibge": 3530805, - "name": "Mogi Mirim", - "capital": 0, - "ibgeState": 35, - "siafi": 6717, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4332, - -46.9532 - ] - } - }, - { - "ibge": 5213400, - "name": "Moiporá", - "capital": 0, - "ibgeState": 52, - "siafi": 9465, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.5434, - -50.739 - ] - } - }, - { - "ibge": 2804102, - "name": "Moita Bonita", - "capital": 0, - "ibgeState": 28, - "siafi": 3181, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.5769, - -37.3512 - ] - } - }, - { - "ibge": 1504703, - "name": "Moju", - "capital": 0, - "ibgeState": 15, - "siafi": 493, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.88993, - -48.7668 - ] - } - }, - { - "ibge": 1504752, - "name": "Mojuí dos Campos", - "capital": 0, - "ibgeState": 15, - "siafi": 1190, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.6822, - -54.6425 - ] - } - }, - { - "ibge": 2308500, - "name": "Mombaça", - "capital": 0, - "ibgeState": 23, - "siafi": 1471, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.73844, - -39.63 - ] - } - }, - { - "ibge": 3530904, - "name": "Mombuca", - "capital": 0, - "ibgeState": 35, - "siafi": 6719, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9285, - -47.559 - ] - } - }, - { - "ibge": 2106904, - "name": "Monção", - "capital": 0, - "ibgeState": 21, - "siafi": 837, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.48125, - -45.2496 - ] - } - }, - { - "ibge": 3531001, - "name": "Monções", - "capital": 0, - "ibgeState": 35, - "siafi": 6721, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8509, - -50.0975 - ] - } - }, - { - "ibge": 4211009, - "name": "Mondaí", - "capital": 0, - "ibgeState": 42, - "siafi": 8215, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1008, - -53.4032 - ] - } - }, - { - "ibge": 3531100, - "name": "Mongaguá", - "capital": 0, - "ibgeState": 35, - "siafi": 6723, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.0809, - -46.6265 - ] - } - }, - { - "ibge": 3142502, - "name": "Monjolos", - "capital": 0, - "ibgeState": 31, - "siafi": 4849, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.3245, - -44.118 - ] - } - }, - { - "ibge": 2206407, - "name": "Monsenhor Gil", - "capital": 0, - "ibgeState": 22, - "siafi": 1127, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.562, - -42.6075 - ] - } - }, - { - "ibge": 2206506, - "name": "Monsenhor Hipólito", - "capital": 0, - "ibgeState": 22, - "siafi": 1129, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.99275, - -41.026 - ] - } - }, - { - "ibge": 3142601, - "name": "Monsenhor Paulo", - "capital": 0, - "ibgeState": 31, - "siafi": 4851, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7579, - -45.5391 - ] - } - }, - { - "ibge": 2308609, - "name": "Monsenhor Tabosa", - "capital": 0, - "ibgeState": 23, - "siafi": 1473, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.79102, - -40.0646 - ] - } - }, - { - "ibge": 2509503, - "name": "Montadas", - "capital": 0, - "ibgeState": 25, - "siafi": 2091, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.08848, - -35.9592 - ] - } - }, - { - "ibge": 3142700, - "name": "Montalvânia", - "capital": 0, - "ibgeState": 31, - "siafi": 4853, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.4197, - -44.3719 - ] - } - }, - { - "ibge": 3203502, - "name": "Montanha", - "capital": 0, - "ibgeState": 32, - "siafi": 5669, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.1303, - -40.3668 - ] - } - }, - { - "ibge": 2407708, - "name": "Montanhas", - "capital": 0, - "ibgeState": 24, - "siafi": 1753, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.48522, - -35.2842 - ] - } - }, - { - "ibge": 4312351, - "name": "Montauri", - "capital": 0, - "ibgeState": 43, - "siafi": 7387, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6462, - -52.0767 - ] - } - }, - { - "ibge": 1504802, - "name": "Monte Alegre", - "capital": 0, - "ibgeState": 15, - "siafi": 495, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.99768, - -54.0724 - ] - } - }, - { - "ibge": 2407807, - "name": "Monte Alegre", - "capital": 0, - "ibgeState": 24, - "siafi": 1755, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.07063, - -35.3253 - ] - } - }, - { - "ibge": 5213509, - "name": "Monte Alegre de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9467, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.2552, - -46.8928 - ] - } - }, - { - "ibge": 3142809, - "name": "Monte Alegre de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4855, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.869, - -48.881 - ] - } - }, - { - "ibge": 2804201, - "name": "Monte Alegre de Sergipe", - "capital": 0, - "ibgeState": 28, - "siafi": 3183, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.0256, - -37.5616 - ] - } - }, - { - "ibge": 2206605, - "name": "Monte Alegre do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1131, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.75364, - -45.3037 - ] - } - }, - { - "ibge": 3531209, - "name": "Monte Alegre do Sul", - "capital": 0, - "ibgeState": 35, - "siafi": 6725, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6817, - -46.681 - ] - } - }, - { - "ibge": 4312377, - "name": "Monte Alegre dos Campos", - "capital": 0, - "ibgeState": 43, - "siafi": 1000, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6805, - -50.7834 - ] - } - }, - { - "ibge": 3531308, - "name": "Monte Alto", - "capital": 0, - "ibgeState": 35, - "siafi": 6727, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2655, - -48.4971 - ] - } - }, - { - "ibge": 3531407, - "name": "Monte Aprazível", - "capital": 0, - "ibgeState": 35, - "siafi": 6729, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.768, - -49.7184 - ] - } - }, - { - "ibge": 3142908, - "name": "Monte Azul", - "capital": 0, - "ibgeState": 31, - "siafi": 4857, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.1514, - -42.8718 - ] - } - }, - { - "ibge": 3531506, - "name": "Monte Azul Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 6731, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9065, - -48.6387 - ] - } - }, - { - "ibge": 3143005, - "name": "Monte Belo", - "capital": 0, - "ibgeState": 31, - "siafi": 4859, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3271, - -46.3635 - ] - } - }, - { - "ibge": 4312385, - "name": "Monte Belo do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 5993, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.1607, - -51.6333 - ] - } - }, - { - "ibge": 4211058, - "name": "Monte Carlo", - "capital": 0, - "ibgeState": 42, - "siafi": 5561, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2239, - -50.9808 - ] - } - }, - { - "ibge": 3143104, - "name": "Monte Carmelo", - "capital": 0, - "ibgeState": 31, - "siafi": 4861, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7302, - -47.4912 - ] - } - }, - { - "ibge": 4211108, - "name": "Monte Castelo", - "capital": 0, - "ibgeState": 42, - "siafi": 8217, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.461, - -50.2327 - ] - } - }, - { - "ibge": 3531605, - "name": "Monte Castelo", - "capital": 0, - "ibgeState": 35, - "siafi": 6733, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2981, - -51.5679 - ] - } - }, - { - "ibge": 2407906, - "name": "Monte das Gameleiras", - "capital": 0, - "ibgeState": 24, - "siafi": 1757, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.43698, - -35.7831 - ] - } - }, - { - "ibge": 1713601, - "name": "Monte do Carmo", - "capital": 0, - "ibgeState": 17, - "siafi": 9469, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7611, - -48.1114 - ] - } - }, - { - "ibge": 3143153, - "name": "Monte Formoso", - "capital": 0, - "ibgeState": 31, - "siafi": 654, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.8691, - -41.2473 - ] - } - }, - { - "ibge": 2509602, - "name": "Monte Horebe", - "capital": 0, - "ibgeState": 25, - "siafi": 2093, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.20402, - -38.5838 - ] - } - }, - { - "ibge": 3531803, - "name": "Monte Mor", - "capital": 0, - "ibgeState": 35, - "siafi": 6737, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.945, - -47.3122 - ] - } - }, - { - "ibge": 1101401, - "name": "Monte Negro", - "capital": 0, - "ibgeState": 11, - "siafi": 685, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.2458, - -63.29 - ] - } - }, - { - "ibge": 2921500, - "name": "Monte Santo", - "capital": 0, - "ibgeState": 29, - "siafi": 3731, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.4374, - -39.3321 - ] - } - }, - { - "ibge": 3143203, - "name": "Monte Santo de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4863, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1873, - -46.9753 - ] - } - }, - { - "ibge": 1713700, - "name": "Monte Santo do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 90, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.0075, - -48.9941 - ] - } - }, - { - "ibge": 3143401, - "name": "Monte Sião", - "capital": 0, - "ibgeState": 31, - "siafi": 4867, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4335, - -46.573 - ] - } - }, - { - "ibge": 2509701, - "name": "Monteiro", - "capital": 0, - "ibgeState": 25, - "siafi": 2095, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.88363, - -37.1184 - ] - } - }, - { - "ibge": 3531704, - "name": "Monteiro Lobato", - "capital": 0, - "ibgeState": 35, - "siafi": 6735, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9544, - -45.8407 - ] - } - }, - { - "ibge": 2705408, - "name": "Monteirópolis", - "capital": 0, - "ibgeState": 27, - "siafi": 2807, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.60357, - -37.2505 - ] - } - }, - { - "ibge": 4312401, - "name": "Montenegro", - "capital": 0, - "ibgeState": 43, - "siafi": 8749, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6824, - -51.4679 - ] - } - }, - { - "ibge": 2107001, - "name": "Montes Altos", - "capital": 0, - "ibgeState": 21, - "siafi": 839, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.83067, - -47.0673 - ] - } - }, - { - "ibge": 3143302, - "name": "Montes Claros", - "capital": 0, - "ibgeState": 31, - "siafi": 4865, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.7282, - -43.8578 - ] - } - }, - { - "ibge": 5213707, - "name": "Montes Claros de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9471, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0059, - -51.3979 - ] - } - }, - { - "ibge": 3143450, - "name": "Montezuma", - "capital": 0, - "ibgeState": 31, - "siafi": 2697, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.1702, - -42.4941 - ] - } - }, - { - "ibge": 5213756, - "name": "Montividiu", - "capital": 0, - "ibgeState": 52, - "siafi": 9933, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.4439, - -51.1728 - ] - } - }, - { - "ibge": 5213772, - "name": "Montividiu do Norte", - "capital": 0, - "ibgeState": 52, - "siafi": 79, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.3485, - -48.6853 - ] - } - }, - { - "ibge": 2308708, - "name": "Morada Nova", - "capital": 0, - "ibgeState": 23, - "siafi": 1475, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.09736, - -38.3702 - ] - } - }, - { - "ibge": 3143500, - "name": "Morada Nova de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4869, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5998, - -45.3584 - ] - } - }, - { - "ibge": 2308807, - "name": "Moraújo", - "capital": 0, - "ibgeState": 23, - "siafi": 1477, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.46311, - -40.6776 - ] - } - }, - { - "ibge": 2614303, - "name": "Moreilândia", - "capital": 0, - "ibgeState": 26, - "siafi": 2585, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.61931, - -39.546 - ] - } - }, - { - "ibge": 4116109, - "name": "Moreira Sales", - "capital": 0, - "ibgeState": 41, - "siafi": 7707, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.0509, - -53.0102 - ] - } - }, - { - "ibge": 2609402, - "name": "Moreno", - "capital": 0, - "ibgeState": 26, - "siafi": 2487, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.10871, - -35.0835 - ] - } - }, - { - "ibge": 4312427, - "name": "Mormaço", - "capital": 0, - "ibgeState": 43, - "siafi": 5933, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6968, - -52.6999 - ] - } - }, - { - "ibge": 2921609, - "name": "Morpará", - "capital": 0, - "ibgeState": 29, - "siafi": 3733, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.5569, - -43.2766 - ] - } - }, - { - "ibge": 4116208, - "name": "Morretes", - "capital": 0, - "ibgeState": 41, - "siafi": 7709, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4744, - -48.8345 - ] - } - }, - { - "ibge": 5213806, - "name": "Morrinhos", - "capital": 0, - "ibgeState": 52, - "siafi": 9473, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.7334, - -49.1059 - ] - } - }, - { - "ibge": 2308906, - "name": "Morrinhos", - "capital": 0, - "ibgeState": 23, - "siafi": 1479, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.23426, - -40.1233 - ] - } - }, - { - "ibge": 4312443, - "name": "Morrinhos do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 5775, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3578, - -49.9328 - ] - } - }, - { - "ibge": 3531902, - "name": "Morro Agudo", - "capital": 0, - "ibgeState": 35, - "siafi": 6739, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7288, - -48.0581 - ] - } - }, - { - "ibge": 5213855, - "name": "Morro Agudo de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9935, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.3184, - -50.0553 - ] - } - }, - { - "ibge": 2206654, - "name": "Morro Cabeça no Tempo", - "capital": 0, - "ibgeState": 22, - "siafi": 350, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.71891, - -43.9072 - ] - } - }, - { - "ibge": 4211207, - "name": "Morro da Fumaça", - "capital": 0, - "ibgeState": 42, - "siafi": 8219, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6511, - -49.2169 - ] - } - }, - { - "ibge": 3143609, - "name": "Morro da Garça", - "capital": 0, - "ibgeState": 31, - "siafi": 4871, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5356, - -44.601 - ] - } - }, - { - "ibge": 2921708, - "name": "Morro do Chapéu", - "capital": 0, - "ibgeState": 29, - "siafi": 3735, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.5488, - -41.1565 - ] - } - }, - { - "ibge": 2206670, - "name": "Morro do Chapéu do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 352, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.73337, - -42.3024 - ] - } - }, - { - "ibge": 3143708, - "name": "Morro do Pilar", - "capital": 0, - "ibgeState": 31, - "siafi": 4873, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2236, - -43.3795 - ] - } - }, - { - "ibge": 4211256, - "name": "Morro Grande", - "capital": 0, - "ibgeState": 42, - "siafi": 5539, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.8006, - -49.7214 - ] - } - }, - { - "ibge": 4312450, - "name": "Morro Redondo", - "capital": 0, - "ibgeState": 43, - "siafi": 7385, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.5887, - -52.6261 - ] - } - }, - { - "ibge": 4312476, - "name": "Morro Reuter", - "capital": 0, - "ibgeState": 43, - "siafi": 6019, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5379, - -51.0811 - ] - } - }, - { - "ibge": 2107100, - "name": "Morros", - "capital": 0, - "ibgeState": 21, - "siafi": 841, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.85379, - -44.0357 - ] - } - }, - { - "ibge": 2921807, - "name": "Mortugaba", - "capital": 0, - "ibgeState": 29, - "siafi": 3737, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.0225, - -42.3727 - ] - } - }, - { - "ibge": 3532009, - "name": "Morungaba", - "capital": 0, - "ibgeState": 35, - "siafi": 6741, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8811, - -46.7896 - ] - } - }, - { - "ibge": 5213905, - "name": "Mossâmedes", - "capital": 0, - "ibgeState": 52, - "siafi": 9475, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.124, - -50.2136 - ] - } - }, - { - "ibge": 2408003, - "name": "Mossoró", - "capital": 0, - "ibgeState": 24, - "siafi": 1759, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.18374, - -37.3474 - ] - } - }, - { - "ibge": 4312500, - "name": "Mostardas", - "capital": 0, - "ibgeState": 43, - "siafi": 8751, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.1054, - -50.9167 - ] - } - }, - { - "ibge": 3532058, - "name": "Motuca", - "capital": 0, - "ibgeState": 35, - "siafi": 7263, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5103, - -48.1538 - ] - } - }, - { - "ibge": 5214002, - "name": "Mozarlândia", - "capital": 0, - "ibgeState": 52, - "siafi": 9477, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.7457, - -50.5713 - ] - } - }, - { - "ibge": 1504901, - "name": "Muaná", - "capital": 0, - "ibgeState": 15, - "siafi": 497, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.53936, - -49.2224 - ] - } - }, - { - "ibge": 1400308, - "name": "Mucajaí", - "capital": 0, - "ibgeState": 14, - "siafi": 309, - "ddd": 95, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - 2.43998, - -60.9096 - ] - } - }, - { - "ibge": 2309003, - "name": "Mucambo", - "capital": 0, - "ibgeState": 23, - "siafi": 1481, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.90271, - -40.7452 - ] - } - }, - { - "ibge": 2921906, - "name": "Mucugê", - "capital": 0, - "ibgeState": 29, - "siafi": 3739, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.0053, - -41.3703 - ] - } - }, - { - "ibge": 4312609, - "name": "Muçum", - "capital": 0, - "ibgeState": 43, - "siafi": 8753, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.163, - -51.8714 - ] - } - }, - { - "ibge": 2922003, - "name": "Mucuri", - "capital": 0, - "ibgeState": 29, - "siafi": 3741, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.0754, - -39.5565 - ] - } - }, - { - "ibge": 3203601, - "name": "Mucurici", - "capital": 0, - "ibgeState": 32, - "siafi": 5671, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.0965, - -40.52 - ] - } - }, - { - "ibge": 4312617, - "name": "Muitos Capões", - "capital": 0, - "ibgeState": 43, - "siafi": 1002, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3132, - -51.1836 - ] - } - }, - { - "ibge": 4312625, - "name": "Muliterno", - "capital": 0, - "ibgeState": 43, - "siafi": 5935, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3253, - -51.7697 - ] - } - }, - { - "ibge": 2509800, - "name": "Mulungu", - "capital": 0, - "ibgeState": 25, - "siafi": 2097, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.02525, - -35.46 - ] - } - }, - { - "ibge": 2309102, - "name": "Mulungu", - "capital": 0, - "ibgeState": 23, - "siafi": 1483, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.30294, - -38.9951 - ] - } - }, - { - "ibge": 2922052, - "name": "Mulungu do Morro", - "capital": 0, - "ibgeState": 29, - "siafi": 3299, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.9648, - -41.6374 - ] - } - }, - { - "ibge": 2922102, - "name": "Mundo Novo", - "capital": 0, - "ibgeState": 29, - "siafi": 3743, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.8541, - -40.4714 - ] - } - }, - { - "ibge": 5005681, - "name": "Mundo Novo", - "capital": 0, - "ibgeState": 50, - "siafi": 9179, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -23.9355, - -54.281 - ] - } - }, - { - "ibge": 5214051, - "name": "Mundo Novo", - "capital": 0, - "ibgeState": 52, - "siafi": 9651, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.7729, - -50.2814 - ] - } - }, - { - "ibge": 3143807, - "name": "Munhoz", - "capital": 0, - "ibgeState": 31, - "siafi": 4875, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6092, - -46.362 - ] - } - }, - { - "ibge": 4116307, - "name": "Munhoz de Melo", - "capital": 0, - "ibgeState": 41, - "siafi": 7711, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1487, - -51.7737 - ] - } - }, - { - "ibge": 2922201, - "name": "Muniz Ferreira", - "capital": 0, - "ibgeState": 29, - "siafi": 3745, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.0092, - -39.1092 - ] - } - }, - { - "ibge": 3203700, - "name": "Muniz Freire", - "capital": 0, - "ibgeState": 32, - "siafi": 5673, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4652, - -41.4156 - ] - } - }, - { - "ibge": 2922250, - "name": "Muquém de São Francisco", - "capital": 0, - "ibgeState": 29, - "siafi": 3005, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.065, - -43.5497 - ] - } - }, - { - "ibge": 3203809, - "name": "Muqui", - "capital": 0, - "ibgeState": 32, - "siafi": 5675, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9509, - -41.346 - ] - } - }, - { - "ibge": 3143906, - "name": "Muriaé", - "capital": 0, - "ibgeState": 31, - "siafi": 4877, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.13, - -42.3693 - ] - } - }, - { - "ibge": 2804300, - "name": "Muribeca", - "capital": 0, - "ibgeState": 28, - "siafi": 3185, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.4271, - -36.9588 - ] - } - }, - { - "ibge": 2705507, - "name": "Murici", - "capital": 0, - "ibgeState": 27, - "siafi": 2809, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.30682, - -35.9428 - ] - } - }, - { - "ibge": 2206696, - "name": "Murici dos Portelas", - "capital": 0, - "ibgeState": 22, - "siafi": 354, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.319, - -42.094 - ] - } - }, - { - "ibge": 1713957, - "name": "Muricilândia", - "capital": 0, - "ibgeState": 17, - "siafi": 187, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.14669, - -48.6091 - ] - } - }, - { - "ibge": 2922300, - "name": "Muritiba", - "capital": 0, - "ibgeState": 29, - "siafi": 3747, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.6329, - -38.9921 - ] - } - }, - { - "ibge": 3532108, - "name": "Murutinga do Sul", - "capital": 0, - "ibgeState": 35, - "siafi": 6743, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9908, - -51.2774 - ] - } - }, - { - "ibge": 2922409, - "name": "Mutuípe", - "capital": 0, - "ibgeState": 29, - "siafi": 3749, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.2284, - -39.5044 - ] - } - }, - { - "ibge": 3144003, - "name": "Mutum", - "capital": 0, - "ibgeState": 31, - "siafi": 4879, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8121, - -41.4407 - ] - } - }, - { - "ibge": 5214101, - "name": "Mutunópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9479, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.7303, - -49.2745 - ] - } - }, - { - "ibge": 3144102, - "name": "Muzambinho", - "capital": 0, - "ibgeState": 31, - "siafi": 4881, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3692, - -46.5213 - ] - } - }, - { - "ibge": 3144201, - "name": "Nacip Raydan", - "capital": 0, - "ibgeState": 31, - "siafi": 4883, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4544, - -42.2481 - ] - } - }, - { - "ibge": 3532157, - "name": "Nantes", - "capital": 0, - "ibgeState": 35, - "siafi": 804, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6156, - -51.24 - ] - } - }, - { - "ibge": 3144300, - "name": "Nanuque", - "capital": 0, - "ibgeState": 31, - "siafi": 4885, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.8481, - -40.3533 - ] - } - }, - { - "ibge": 4312658, - "name": "Não-Me-Toque", - "capital": 0, - "ibgeState": 43, - "siafi": 8755, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.4548, - -52.8182 - ] - } - }, - { - "ibge": 3144359, - "name": "Naque", - "capital": 0, - "ibgeState": 31, - "siafi": 656, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2291, - -42.3312 - ] - } - }, - { - "ibge": 3532207, - "name": "Narandiba", - "capital": 0, - "ibgeState": 35, - "siafi": 6745, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4057, - -51.5274 - ] - } - }, - { - "ibge": 2408102, - "name": "Natal", - "capital": 1, - "ibgeState": 24, - "siafi": 1761, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.79357, - -35.1986 - ] - } - }, - { - "ibge": 3144375, - "name": "Natalândia", - "capital": 0, - "ibgeState": 31, - "siafi": 658, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.5021, - -46.4874 - ] - } - }, - { - "ibge": 3144409, - "name": "Natércia", - "capital": 0, - "ibgeState": 31, - "siafi": 4887, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1158, - -45.5123 - ] - } - }, - { - "ibge": 1714203, - "name": "Natividade", - "capital": 0, - "ibgeState": 17, - "siafi": 9481, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.7034, - -47.7223 - ] - } - }, - { - "ibge": 3303104, - "name": "Natividade", - "capital": 0, - "ibgeState": 33, - "siafi": 5861, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.039, - -41.9697 - ] - } - }, - { - "ibge": 3532306, - "name": "Natividade da Serra", - "capital": 0, - "ibgeState": 35, - "siafi": 6747, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3707, - -45.4468 - ] - } - }, - { - "ibge": 2509909, - "name": "Natuba", - "capital": 0, - "ibgeState": 25, - "siafi": 2099, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.63514, - -35.5586 - ] - } - }, - { - "ibge": 4211306, - "name": "Navegantes", - "capital": 0, - "ibgeState": 42, - "siafi": 8221, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.8943, - -48.6546 - ] - } - }, - { - "ibge": 5005707, - "name": "Naviraí", - "capital": 0, - "ibgeState": 50, - "siafi": 9113, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -23.0618, - -54.1995 - ] - } - }, - { - "ibge": 2922508, - "name": "Nazaré", - "capital": 0, - "ibgeState": 29, - "siafi": 3751, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.0235, - -39.0108 - ] - } - }, - { - "ibge": 1714302, - "name": "Nazaré", - "capital": 0, - "ibgeState": 17, - "siafi": 9483, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.37496, - -47.6643 - ] - } - }, - { - "ibge": 2609501, - "name": "Nazaré da Mata", - "capital": 0, - "ibgeState": 26, - "siafi": 2489, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.74149, - -35.2193 - ] - } - }, - { - "ibge": 2206704, - "name": "Nazaré do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1133, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.97023, - -42.6773 - ] - } - }, - { - "ibge": 3532405, - "name": "Nazaré Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 6749, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1747, - -46.3983 - ] - } - }, - { - "ibge": 3144508, - "name": "Nazareno", - "capital": 0, - "ibgeState": 31, - "siafi": 4889, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2168, - -44.6138 - ] - } - }, - { - "ibge": 2510006, - "name": "Nazarezinho", - "capital": 0, - "ibgeState": 25, - "siafi": 2101, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.9114, - -38.322 - ] - } - }, - { - "ibge": 2206720, - "name": "Nazária", - "capital": 0, - "ibgeState": 22, - "siafi": 1180, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.35128, - -42.8153 - ] - } - }, - { - "ibge": 5214408, - "name": "Nazário", - "capital": 0, - "ibgeState": 52, - "siafi": 9485, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.5808, - -49.8817 - ] - } - }, - { - "ibge": 2804409, - "name": "Neópolis", - "capital": 0, - "ibgeState": 28, - "siafi": 3187, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.3215, - -36.585 - ] - } - }, - { - "ibge": 3144607, - "name": "Nepomuceno", - "capital": 0, - "ibgeState": 31, - "siafi": 4891, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2324, - -45.235 - ] - } - }, - { - "ibge": 5214507, - "name": "Nerópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9487, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.4047, - -49.2227 - ] - } - }, - { - "ibge": 3532504, - "name": "Neves Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 6751, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.843, - -49.6358 - ] - } - }, - { - "ibge": 1303007, - "name": "Nhamundá", - "capital": 0, - "ibgeState": 13, - "siafi": 263, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -2.20793, - -56.7112 - ] - } - }, - { - "ibge": 3532603, - "name": "Nhandeara", - "capital": 0, - "ibgeState": 35, - "siafi": 6753, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6945, - -50.0436 - ] - } - }, - { - "ibge": 4312674, - "name": "Nicolau Vergueiro", - "capital": 0, - "ibgeState": 43, - "siafi": 5937, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5298, - -52.4676 - ] - } - }, - { - "ibge": 2922607, - "name": "Nilo Peçanha", - "capital": 0, - "ibgeState": 29, - "siafi": 3753, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.604, - -39.1091 - ] - } - }, - { - "ibge": 3303203, - "name": "Nilópolis", - "capital": 0, - "ibgeState": 33, - "siafi": 5863, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8057, - -43.4233 - ] - } - }, - { - "ibge": 2107209, - "name": "Nina Rodrigues", - "capital": 0, - "ibgeState": 21, - "siafi": 843, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.46788, - -43.9134 - ] - } - }, - { - "ibge": 3144656, - "name": "Ninheira", - "capital": 0, - "ibgeState": 31, - "siafi": 660, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.3148, - -41.7564 - ] - } - }, - { - "ibge": 5005806, - "name": "Nioaque", - "capital": 0, - "ibgeState": 50, - "siafi": 9115, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -21.1419, - -55.8296 - ] - } - }, - { - "ibge": 3532702, - "name": "Nipoã", - "capital": 0, - "ibgeState": 35, - "siafi": 6755, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9114, - -49.7833 - ] - } - }, - { - "ibge": 5214606, - "name": "Niquelândia", - "capital": 0, - "ibgeState": 52, - "siafi": 9489, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.4662, - -48.4599 - ] - } - }, - { - "ibge": 2408201, - "name": "Nísia Floresta", - "capital": 0, - "ibgeState": 24, - "siafi": 1763, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.09329, - -35.1991 - ] - } - }, - { - "ibge": 3303302, - "name": "Niterói", - "capital": 0, - "ibgeState": 33, - "siafi": 5865, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8832, - -43.1034 - ] - } - }, - { - "ibge": 5105903, - "name": "Nobres", - "capital": 0, - "ibgeState": 51, - "siafi": 9117, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.7192, - -56.3284 - ] - } - }, - { - "ibge": 4312708, - "name": "Nonoai", - "capital": 0, - "ibgeState": 43, - "siafi": 8757, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3689, - -52.7756 - ] - } - }, - { - "ibge": 2922656, - "name": "Nordestina", - "capital": 0, - "ibgeState": 29, - "siafi": 3979, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.8192, - -39.4297 - ] - } - }, - { - "ibge": 1400407, - "name": "Normandia", - "capital": 0, - "ibgeState": 14, - "siafi": 311, - "ddd": 95, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - 3.8853, - -59.6204 - ] - } - }, - { - "ibge": 5106000, - "name": "Nortelândia", - "capital": 0, - "ibgeState": 51, - "siafi": 9119, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.454, - -56.7945 - ] - } - }, - { - "ibge": 2804458, - "name": "Nossa Senhora Aparecida", - "capital": 0, - "ibgeState": 28, - "siafi": 3135, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.3944, - -37.4517 - ] - } - }, - { - "ibge": 2804508, - "name": "Nossa Senhora da Glória", - "capital": 0, - "ibgeState": 28, - "siafi": 3189, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.2158, - -37.4211 - ] - } - }, - { - "ibge": 2804607, - "name": "Nossa Senhora das Dores", - "capital": 0, - "ibgeState": 28, - "siafi": 3191, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.4854, - -37.1963 - ] - } - }, - { - "ibge": 4116406, - "name": "Nossa Senhora das Graças", - "capital": 0, - "ibgeState": 41, - "siafi": 7713, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9129, - -51.7978 - ] - } - }, - { - "ibge": 2804706, - "name": "Nossa Senhora de Lourdes", - "capital": 0, - "ibgeState": 28, - "siafi": 3193, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.0772, - -37.0615 - ] - } - }, - { - "ibge": 2206753, - "name": "Nossa Senhora de Nazaré", - "capital": 0, - "ibgeState": 22, - "siafi": 356, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.63019, - -42.173 - ] - } - }, - { - "ibge": 5106109, - "name": "Nossa Senhora do Livramento", - "capital": 0, - "ibgeState": 51, - "siafi": 9121, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.772, - -56.3432 - ] - } - }, - { - "ibge": 2804805, - "name": "Nossa Senhora do Socorro", - "capital": 0, - "ibgeState": 28, - "siafi": 3195, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.8468, - -37.1231 - ] - } - }, - { - "ibge": 2206803, - "name": "Nossa Senhora dos Remédios", - "capital": 0, - "ibgeState": 22, - "siafi": 1135, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.97574, - -42.6184 - ] - } - }, - { - "ibge": 3532801, - "name": "Nova Aliança", - "capital": 0, - "ibgeState": 35, - "siafi": 6757, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0156, - -49.4986 - ] - } - }, - { - "ibge": 4116505, - "name": "Nova Aliança do Ivaí", - "capital": 0, - "ibgeState": 41, - "siafi": 7715, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1763, - -52.6032 - ] - } - }, - { - "ibge": 4312757, - "name": "Nova Alvorada", - "capital": 0, - "ibgeState": 43, - "siafi": 7383, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6822, - -52.1631 - ] - } - }, - { - "ibge": 5006002, - "name": "Nova Alvorada do Sul", - "capital": 0, - "ibgeState": 50, - "siafi": 143, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -21.4657, - -54.3825 - ] - } - }, - { - "ibge": 5214705, - "name": "Nova América", - "capital": 0, - "ibgeState": 52, - "siafi": 9491, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.0206, - -49.8953 - ] - } - }, - { - "ibge": 4116604, - "name": "Nova América da Colina", - "capital": 0, - "ibgeState": 41, - "siafi": 7717, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3308, - -50.7168 - ] - } - }, - { - "ibge": 5006200, - "name": "Nova Andradina", - "capital": 0, - "ibgeState": 50, - "siafi": 9123, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.238, - -53.3437 - ] - } - }, - { - "ibge": 4312807, - "name": "Nova Araçá", - "capital": 0, - "ibgeState": 43, - "siafi": 8759, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6537, - -51.7458 - ] - } - }, - { - "ibge": 4116703, - "name": "Nova Aurora", - "capital": 0, - "ibgeState": 41, - "siafi": 7965, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.5289, - -53.2575 - ] - } - }, - { - "ibge": 5214804, - "name": "Nova Aurora", - "capital": 0, - "ibgeState": 52, - "siafi": 9493, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.0597, - -48.2552 - ] - } - }, - { - "ibge": 5106158, - "name": "Nova Bandeirantes", - "capital": 0, - "ibgeState": 51, - "siafi": 117, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -9.84977, - -57.8139 - ] - } - }, - { - "ibge": 4312906, - "name": "Nova Bassano", - "capital": 0, - "ibgeState": 43, - "siafi": 8761, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.7291, - -51.7072 - ] - } - }, - { - "ibge": 3144672, - "name": "Nova Belém", - "capital": 0, - "ibgeState": 31, - "siafi": 662, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4925, - -41.1107 - ] - } - }, - { - "ibge": 4312955, - "name": "Nova Boa Vista", - "capital": 0, - "ibgeState": 43, - "siafi": 5953, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9926, - -52.9784 - ] - } - }, - { - "ibge": 5106208, - "name": "Nova Brasilândia", - "capital": 0, - "ibgeState": 51, - "siafi": 8981, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.9612, - -54.9685 - ] - } - }, - { - "ibge": 1100148, - "name": "Nova Brasilândia D'Oeste", - "capital": 0, - "ibgeState": 11, - "siafi": 41, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.7247, - -62.3127 - ] - } - }, - { - "ibge": 4313003, - "name": "Nova Bréscia", - "capital": 0, - "ibgeState": 43, - "siafi": 8763, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.2182, - -52.0319 - ] - } - }, - { - "ibge": 3532827, - "name": "Nova Campina", - "capital": 0, - "ibgeState": 35, - "siafi": 3061, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.1224, - -48.9022 - ] - } - }, - { - "ibge": 2922706, - "name": "Nova Canaã", - "capital": 0, - "ibgeState": 29, - "siafi": 3755, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.7912, - -40.1458 - ] - } - }, - { - "ibge": 5106216, - "name": "Nova Canaã do Norte", - "capital": 0, - "ibgeState": 51, - "siafi": 9889, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.558, - -55.953 - ] - } - }, - { - "ibge": 3532843, - "name": "Nova Canaã Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 2985, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3836, - -50.9483 - ] - } - }, - { - "ibge": 4313011, - "name": "Nova Candelária", - "capital": 0, - "ibgeState": 43, - "siafi": 1004, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6137, - -54.1074 - ] - } - }, - { - "ibge": 4116802, - "name": "Nova Cantu", - "capital": 0, - "ibgeState": 41, - "siafi": 7719, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.6723, - -52.5661 - ] - } - }, - { - "ibge": 3532868, - "name": "Nova Castilho", - "capital": 0, - "ibgeState": 35, - "siafi": 806, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7615, - -50.3477 - ] - } - }, - { - "ibge": 2107258, - "name": "Nova Colinas", - "capital": 0, - "ibgeState": 21, - "siafi": 200, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.12263, - -46.2607 - ] - } - }, - { - "ibge": 5214838, - "name": "Nova Crixás", - "capital": 0, - "ibgeState": 52, - "siafi": 9653, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.0957, - -50.33 - ] - } - }, - { - "ibge": 2408300, - "name": "Nova Cruz", - "capital": 0, - "ibgeState": 24, - "siafi": 1765, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.47511, - -35.4286 - ] - } - }, - { - "ibge": 3144706, - "name": "Nova Era", - "capital": 0, - "ibgeState": 31, - "siafi": 4893, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7577, - -43.0333 - ] - } - }, - { - "ibge": 4211405, - "name": "Nova Erechim", - "capital": 0, - "ibgeState": 42, - "siafi": 8223, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.8982, - -52.9066 - ] - } - }, - { - "ibge": 4116901, - "name": "Nova Esperança", - "capital": 0, - "ibgeState": 41, - "siafi": 7721, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.182, - -52.2031 - ] - } - }, - { - "ibge": 1504950, - "name": "Nova Esperança do Piriá", - "capital": 0, - "ibgeState": 15, - "siafi": 391, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.26693, - -46.9731 - ] - } - }, - { - "ibge": 4116950, - "name": "Nova Esperança do Sudoeste", - "capital": 0, - "ibgeState": 41, - "siafi": 5477, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.9004, - -53.2618 - ] - } - }, - { - "ibge": 4313037, - "name": "Nova Esperança do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 7381, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4066, - -54.8293 - ] - } - }, - { - "ibge": 3532900, - "name": "Nova Europa", - "capital": 0, - "ibgeState": 35, - "siafi": 6759, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7765, - -48.5705 - ] - } - }, - { - "ibge": 4117008, - "name": "Nova Fátima", - "capital": 0, - "ibgeState": 41, - "siafi": 7723, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4324, - -50.5665 - ] - } - }, - { - "ibge": 2922730, - "name": "Nova Fátima", - "capital": 0, - "ibgeState": 29, - "siafi": 3007, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.6031, - -39.6302 - ] - } - }, - { - "ibge": 2510105, - "name": "Nova Floresta", - "capital": 0, - "ibgeState": 25, - "siafi": 2103, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.45056, - -36.2057 - ] - } - }, - { - "ibge": 3303401, - "name": "Nova Friburgo", - "capital": 0, - "ibgeState": 33, - "siafi": 5867, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2932, - -42.5377 - ] - } - }, - { - "ibge": 5214861, - "name": "Nova Glória", - "capital": 0, - "ibgeState": 52, - "siafi": 9655, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.145, - -49.5737 - ] - } - }, - { - "ibge": 3533007, - "name": "Nova Granada", - "capital": 0, - "ibgeState": 35, - "siafi": 6761, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5321, - -49.3123 - ] - } - }, - { - "ibge": 5108808, - "name": "Nova Guarita", - "capital": 0, - "ibgeState": 51, - "siafi": 121, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.312, - -55.4061 - ] - } - }, - { - "ibge": 3533106, - "name": "Nova Guataporanga", - "capital": 0, - "ibgeState": 35, - "siafi": 6763, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.332, - -51.6447 - ] - } - }, - { - "ibge": 4313060, - "name": "Nova Hartz", - "capital": 0, - "ibgeState": 43, - "siafi": 7379, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5808, - -50.9051 - ] - } - }, - { - "ibge": 2922755, - "name": "Nova Ibiá", - "capital": 0, - "ibgeState": 29, - "siafi": 3009, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.812, - -39.6182 - ] - } - }, - { - "ibge": 3303500, - "name": "Nova Iguaçu", - "capital": 0, - "ibgeState": 33, - "siafi": 5869, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7556, - -43.4603 - ] - } - }, - { - "ibge": 5214879, - "name": "Nova Iguaçu de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 87, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.2868, - -49.3872 - ] - } - }, - { - "ibge": 3533205, - "name": "Nova Independência", - "capital": 0, - "ibgeState": 35, - "siafi": 6765, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1026, - -51.4905 - ] - } - }, - { - "ibge": 2107308, - "name": "Nova Iorque", - "capital": 0, - "ibgeState": 21, - "siafi": 845, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.73047, - -44.0471 - ] - } - }, - { - "ibge": 1504976, - "name": "Nova Ipixuna", - "capital": 0, - "ibgeState": 15, - "siafi": 56, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.91622, - -49.0822 - ] - } - }, - { - "ibge": 4211454, - "name": "Nova Itaberaba", - "capital": 0, - "ibgeState": 42, - "siafi": 5589, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9428, - -52.8141 - ] - } - }, - { - "ibge": 2922805, - "name": "Nova Itarana", - "capital": 0, - "ibgeState": 29, - "siafi": 3757, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.0241, - -40.0653 - ] - } - }, - { - "ibge": 5106182, - "name": "Nova Lacerda", - "capital": 0, - "ibgeState": 51, - "siafi": 1040, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.4727, - -59.6001 - ] - } - }, - { - "ibge": 4117057, - "name": "Nova Laranjeiras", - "capital": 0, - "ibgeState": 41, - "siafi": 5479, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.3054, - -52.5447 - ] - } - }, - { - "ibge": 3144805, - "name": "Nova Lima", - "capital": 0, - "ibgeState": 31, - "siafi": 4895, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9758, - -43.8509 - ] - } - }, - { - "ibge": 4117107, - "name": "Nova Londrina", - "capital": 0, - "ibgeState": 41, - "siafi": 7725, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7639, - -52.9868 - ] - } - }, - { - "ibge": 3533304, - "name": "Nova Luzitânia", - "capital": 0, - "ibgeState": 35, - "siafi": 6767, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.856, - -50.2617 - ] - } - }, - { - "ibge": 1100338, - "name": "Nova Mamoré", - "capital": 0, - "ibgeState": 11, - "siafi": 47, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.4077, - -65.3346 - ] - } - }, - { - "ibge": 5108857, - "name": "Nova Marilândia", - "capital": 0, - "ibgeState": 51, - "siafi": 103, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.3568, - -56.9696 - ] - } - }, - { - "ibge": 5108907, - "name": "Nova Maringá", - "capital": 0, - "ibgeState": 51, - "siafi": 111, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -13.0136, - -57.0908 - ] - } - }, - { - "ibge": 3144904, - "name": "Nova Módica", - "capital": 0, - "ibgeState": 31, - "siafi": 4897, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4417, - -41.4984 - ] - } - }, - { - "ibge": 5108956, - "name": "Nova Monte Verde", - "capital": 0, - "ibgeState": 51, - "siafi": 119, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -9.99998, - -57.5261 - ] - } - }, - { - "ibge": 5106224, - "name": "Nova Mutum", - "capital": 0, - "ibgeState": 51, - "siafi": 9937, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -13.8374, - -56.0743 - ] - } - }, - { - "ibge": 5106174, - "name": "Nova Nazaré", - "capital": 0, - "ibgeState": 51, - "siafi": 1086, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -13.9486, - -51.8002 - ] - } - }, - { - "ibge": 3533403, - "name": "Nova Odessa", - "capital": 0, - "ibgeState": 35, - "siafi": 6769, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7832, - -47.2941 - ] - } - }, - { - "ibge": 4117206, - "name": "Nova Olímpia", - "capital": 0, - "ibgeState": 41, - "siafi": 7967, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4703, - -53.0898 - ] - } - }, - { - "ibge": 5106232, - "name": "Nova Olímpia", - "capital": 0, - "ibgeState": 51, - "siafi": 9893, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.7889, - -57.2886 - ] - } - }, - { - "ibge": 1714880, - "name": "Nova Olinda", - "capital": 0, - "ibgeState": 17, - "siafi": 9663, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.63171, - -48.4252 - ] - } - }, - { - "ibge": 2309201, - "name": "Nova Olinda", - "capital": 0, - "ibgeState": 23, - "siafi": 1485, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.08415, - -39.6713 - ] - } - }, - { - "ibge": 2510204, - "name": "Nova Olinda", - "capital": 0, - "ibgeState": 25, - "siafi": 2105, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.47232, - -38.0382 - ] - } - }, - { - "ibge": 2107357, - "name": "Nova Olinda do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 202, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.84227, - -45.6953 - ] - } - }, - { - "ibge": 1303106, - "name": "Nova Olinda do Norte", - "capital": 0, - "ibgeState": 13, - "siafi": 265, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.90037, - -59.094 - ] - } - }, - { - "ibge": 4313086, - "name": "Nova Pádua", - "capital": 0, - "ibgeState": 43, - "siafi": 5991, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.0275, - -51.3098 - ] - } - }, - { - "ibge": 4313102, - "name": "Nova Palma", - "capital": 0, - "ibgeState": 43, - "siafi": 8765, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.471, - -53.4689 - ] - } - }, - { - "ibge": 2510303, - "name": "Nova Palmeira", - "capital": 0, - "ibgeState": 25, - "siafi": 2107, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.67122, - -36.422 - ] - } - }, - { - "ibge": 4313201, - "name": "Nova Petrópolis", - "capital": 0, - "ibgeState": 43, - "siafi": 8767, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3741, - -51.1136 - ] - } - }, - { - "ibge": 3145000, - "name": "Nova Ponte", - "capital": 0, - "ibgeState": 31, - "siafi": 4899, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.1461, - -47.6779 - ] - } - }, - { - "ibge": 3145059, - "name": "Nova Porteirinha", - "capital": 0, - "ibgeState": 31, - "siafi": 664, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.7993, - -43.2941 - ] - } - }, - { - "ibge": 4313300, - "name": "Nova Prata", - "capital": 0, - "ibgeState": 43, - "siafi": 8769, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.7799, - -51.6113 - ] - } - }, - { - "ibge": 4117255, - "name": "Nova Prata do Iguaçu", - "capital": 0, - "ibgeState": 41, - "siafi": 7995, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.6309, - -53.3469 - ] - } - }, - { - "ibge": 4313334, - "name": "Nova Ramada", - "capital": 0, - "ibgeState": 43, - "siafi": 1006, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.0667, - -53.6992 - ] - } - }, - { - "ibge": 2922854, - "name": "Nova Redenção", - "capital": 0, - "ibgeState": 29, - "siafi": 3011, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.815, - -41.0748 - ] - } - }, - { - "ibge": 3145109, - "name": "Nova Resende", - "capital": 0, - "ibgeState": 31, - "siafi": 4901, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1286, - -46.4157 - ] - } - }, - { - "ibge": 5214903, - "name": "Nova Roma", - "capital": 0, - "ibgeState": 52, - "siafi": 9495, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.7388, - -46.8734 - ] - } - }, - { - "ibge": 4313359, - "name": "Nova Roma do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 7377, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.9882, - -51.4095 - ] - } - }, - { - "ibge": 1715002, - "name": "Nova Rosalândia", - "capital": 0, - "ibgeState": 17, - "siafi": 9721, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.5651, - -48.9125 - ] - } - }, - { - "ibge": 2309300, - "name": "Nova Russas", - "capital": 0, - "ibgeState": 23, - "siafi": 1487, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.70581, - -40.5621 - ] - } - }, - { - "ibge": 4117214, - "name": "Nova Santa Bárbara", - "capital": 0, - "ibgeState": 41, - "siafi": 5457, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5865, - -50.7598 - ] - } - }, - { - "ibge": 5106190, - "name": "Nova Santa Helena", - "capital": 0, - "ibgeState": 51, - "siafi": 1088, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.8651, - -55.1872 - ] - } - }, - { - "ibge": 4313375, - "name": "Nova Santa Rita", - "capital": 0, - "ibgeState": 43, - "siafi": 5757, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.8525, - -51.2837 - ] - } - }, - { - "ibge": 2207959, - "name": "Nova Santa Rita", - "capital": 0, - "ibgeState": 22, - "siafi": 370, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.09707, - -42.0471 - ] - } - }, - { - "ibge": 4117222, - "name": "Nova Santa Rosa", - "capital": 0, - "ibgeState": 41, - "siafi": 7979, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.4693, - -53.9552 - ] - } - }, - { - "ibge": 3145208, - "name": "Nova Serrana", - "capital": 0, - "ibgeState": 31, - "siafi": 4903, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8713, - -44.9847 - ] - } - }, - { - "ibge": 2922904, - "name": "Nova Soure", - "capital": 0, - "ibgeState": 29, - "siafi": 3759, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.2329, - -38.4871 - ] - } - }, - { - "ibge": 4117271, - "name": "Nova Tebas", - "capital": 0, - "ibgeState": 41, - "siafi": 9913, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.438, - -51.9454 - ] - } - }, - { - "ibge": 1505007, - "name": "Nova Timboteua", - "capital": 0, - "ibgeState": 15, - "siafi": 499, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.20874, - -47.3921 - ] - } - }, - { - "ibge": 4211504, - "name": "Nova Trento", - "capital": 0, - "ibgeState": 42, - "siafi": 8225, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.278, - -48.9298 - ] - } - }, - { - "ibge": 5106240, - "name": "Nova Ubiratã", - "capital": 0, - "ibgeState": 51, - "siafi": 1042, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.9834, - -55.2556 - ] - } - }, - { - "ibge": 3136603, - "name": "Nova União", - "capital": 0, - "ibgeState": 31, - "siafi": 4731, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6876, - -43.583 - ] - } - }, - { - "ibge": 1101435, - "name": "Nova União", - "capital": 0, - "ibgeState": 11, - "siafi": 10, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.9068, - -62.5564 - ] - } - }, - { - "ibge": 3203908, - "name": "Nova Venécia", - "capital": 0, - "ibgeState": 32, - "siafi": 5677, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.715, - -40.4053 - ] - } - }, - { - "ibge": 4211603, - "name": "Nova Veneza", - "capital": 0, - "ibgeState": 42, - "siafi": 8227, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6338, - -49.5055 - ] - } - }, - { - "ibge": 5215009, - "name": "Nova Veneza", - "capital": 0, - "ibgeState": 52, - "siafi": 9497, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.3695, - -49.3168 - ] - } - }, - { - "ibge": 2923001, - "name": "Nova Viçosa", - "capital": 0, - "ibgeState": 29, - "siafi": 3761, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.8926, - -39.3743 - ] - } - }, - { - "ibge": 5106257, - "name": "Nova Xavantina", - "capital": 0, - "ibgeState": 51, - "siafi": 9195, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.6771, - -52.3502 - ] - } - }, - { - "ibge": 3533254, - "name": "Novais", - "capital": 0, - "ibgeState": 35, - "siafi": 2979, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9893, - -48.9141 - ] - } - }, - { - "ibge": 1715101, - "name": "Novo Acordo", - "capital": 0, - "ibgeState": 17, - "siafi": 9499, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.97063, - -47.6785 - ] - } - }, - { - "ibge": 1303205, - "name": "Novo Airão", - "capital": 0, - "ibgeState": 13, - "siafi": 201, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -2.63637, - -60.9434 - ] - } - }, - { - "ibge": 1715150, - "name": "Novo Alegre", - "capital": 0, - "ibgeState": 17, - "siafi": 9703, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.9217, - -46.5713 - ] - } - }, - { - "ibge": 1303304, - "name": "Novo Aripuanã", - "capital": 0, - "ibgeState": 13, - "siafi": 267, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -5.12593, - -60.3732 - ] - } - }, - { - "ibge": 4313490, - "name": "Novo Barreiro", - "capital": 0, - "ibgeState": 43, - "siafi": 5985, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9077, - -53.1103 - ] - } - }, - { - "ibge": 5215207, - "name": "Novo Brasil", - "capital": 0, - "ibgeState": 52, - "siafi": 9501, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0313, - -50.7113 - ] - } - }, - { - "ibge": 4313391, - "name": "Novo Cabrais", - "capital": 0, - "ibgeState": 43, - "siafi": 1008, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.7338, - -52.9489 - ] - } - }, - { - "ibge": 3145307, - "name": "Novo Cruzeiro", - "capital": 0, - "ibgeState": 31, - "siafi": 4905, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.4654, - -41.8826 - ] - } - }, - { - "ibge": 5215231, - "name": "Novo Gama", - "capital": 0, - "ibgeState": 52, - "siafi": 1058, - "ddd": 61, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0592, - -48.0417 - ] - } - }, - { - "ibge": 4313409, - "name": "Novo Hamburgo", - "capital": 0, - "ibgeState": 43, - "siafi": 8771, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6875, - -51.1328 - ] - } - }, - { - "ibge": 4211652, - "name": "Novo Horizonte", - "capital": 0, - "ibgeState": 42, - "siafi": 5591, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.4442, - -52.8281 - ] - } - }, - { - "ibge": 3533502, - "name": "Novo Horizonte", - "capital": 0, - "ibgeState": 35, - "siafi": 6771, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4651, - -49.2234 - ] - } - }, - { - "ibge": 2923035, - "name": "Novo Horizonte", - "capital": 0, - "ibgeState": 29, - "siafi": 3013, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.8083, - -42.1682 - ] - } - }, - { - "ibge": 5106273, - "name": "Novo Horizonte do Norte", - "capital": 0, - "ibgeState": 51, - "siafi": 9903, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.4089, - -57.3488 - ] - } - }, - { - "ibge": 1100502, - "name": "Novo Horizonte do Oeste", - "capital": 0, - "ibgeState": 11, - "siafi": 689, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.6961, - -61.9951 - ] - } - }, - { - "ibge": 5006259, - "name": "Novo Horizonte do Sul", - "capital": 0, - "ibgeState": 50, - "siafi": 159, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.6693, - -53.8601 - ] - } - }, - { - "ibge": 4117297, - "name": "Novo Itacolomi", - "capital": 0, - "ibgeState": 41, - "siafi": 5517, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7631, - -51.5079 - ] - } - }, - { - "ibge": 1715259, - "name": "Novo Jardim", - "capital": 0, - "ibgeState": 17, - "siafi": 321, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.826, - -46.6325 - ] - } - }, - { - "ibge": 2705606, - "name": "Novo Lino", - "capital": 0, - "ibgeState": 27, - "siafi": 2811, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.94191, - -35.664 - ] - } - }, - { - "ibge": 4313425, - "name": "Novo Machado", - "capital": 0, - "ibgeState": 43, - "siafi": 6057, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5765, - -54.5036 - ] - } - }, - { - "ibge": 5106265, - "name": "Novo Mundo", - "capital": 0, - "ibgeState": 51, - "siafi": 1044, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -9.95616, - -55.2029 - ] - } - }, - { - "ibge": 2309409, - "name": "Novo Oriente", - "capital": 0, - "ibgeState": 23, - "siafi": 1489, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.52552, - -40.7713 - ] - } - }, - { - "ibge": 3145356, - "name": "Novo Oriente de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 666, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.4089, - -41.2194 - ] - } - }, - { - "ibge": 2206902, - "name": "Novo Oriente do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1137, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.44901, - -41.9261 - ] - } - }, - { - "ibge": 5215256, - "name": "Novo Planalto", - "capital": 0, - "ibgeState": 52, - "siafi": 9735, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.2424, - -49.506 - ] - } - }, - { - "ibge": 1505031, - "name": "Novo Progresso", - "capital": 0, - "ibgeState": 15, - "siafi": 633, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.14347, - -55.3786 - ] - } - }, - { - "ibge": 1505064, - "name": "Novo Repartimento", - "capital": 0, - "ibgeState": 15, - "siafi": 629, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.24749, - -49.9499 - ] - } - }, - { - "ibge": 2206951, - "name": "Novo Santo Antônio", - "capital": 0, - "ibgeState": 22, - "siafi": 358, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.28749, - -41.9325 - ] - } - }, - { - "ibge": 5106315, - "name": "Novo Santo Antônio", - "capital": 0, - "ibgeState": 51, - "siafi": 1090, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.2875, - -50.9686 - ] - } - }, - { - "ibge": 5106281, - "name": "Novo São Joaquim", - "capital": 0, - "ibgeState": 51, - "siafi": 9867, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.9054, - -53.0194 - ] - } - }, - { - "ibge": 4313441, - "name": "Novo Tiradentes", - "capital": 0, - "ibgeState": 43, - "siafi": 5973, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5649, - -53.1837 - ] - } - }, - { - "ibge": 2923050, - "name": "Novo Triunfo", - "capital": 0, - "ibgeState": 29, - "siafi": 3015, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.3182, - -38.4014 - ] - } - }, - { - "ibge": 4313466, - "name": "Novo Xingu", - "capital": 0, - "ibgeState": 43, - "siafi": 1152, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.749, - -53.0639 - ] - } - }, - { - "ibge": 3145372, - "name": "Novorizonte", - "capital": 0, - "ibgeState": 31, - "siafi": 668, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0162, - -42.4044 - ] - } - }, - { - "ibge": 3533601, - "name": "Nuporanga", - "capital": 0, - "ibgeState": 35, - "siafi": 6773, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7296, - -47.7429 - ] - } - }, - { - "ibge": 1505106, - "name": "Óbidos", - "capital": 0, - "ibgeState": 15, - "siafi": 501, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.90107, - -55.5208 - ] - } - }, - { - "ibge": 2309458, - "name": "Ocara", - "capital": 0, - "ibgeState": 23, - "siafi": 1265, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.48523, - -38.5933 - ] - } - }, - { - "ibge": 3533700, - "name": "Ocauçu", - "capital": 0, - "ibgeState": 35, - "siafi": 6775, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.438, - -49.922 - ] - } - }, - { - "ibge": 2207009, - "name": "Oeiras", - "capital": 0, - "ibgeState": 22, - "siafi": 1139, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.01915, - -42.1283 - ] - } - }, - { - "ibge": 1505205, - "name": "Oeiras do Pará", - "capital": 0, - "ibgeState": 15, - "siafi": 503, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.00358, - -49.8628 - ] - } - }, - { - "ibge": 1600501, - "name": "Oiapoque", - "capital": 0, - "ibgeState": 16, - "siafi": 609, - "ddd": 96, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - 3.84074, - -51.8331 - ] - } - }, - { - "ibge": 3145406, - "name": "Olaria", - "capital": 0, - "ibgeState": 31, - "siafi": 4907, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8598, - -43.9356 - ] - } - }, - { - "ibge": 3533809, - "name": "Óleo", - "capital": 0, - "ibgeState": 35, - "siafi": 6777, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9435, - -49.3419 - ] - } - }, - { - "ibge": 2510402, - "name": "Olho d'Água", - "capital": 0, - "ibgeState": 25, - "siafi": 2109, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.22118, - -37.7406 - ] - } - }, - { - "ibge": 2107407, - "name": "Olho d'Água das Cunhãs", - "capital": 0, - "ibgeState": 21, - "siafi": 847, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.13417, - -45.1163 - ] - } - }, - { - "ibge": 2705705, - "name": "Olho d'Água das Flores", - "capital": 0, - "ibgeState": 27, - "siafi": 2813, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.53686, - -37.2971 - ] - } - }, - { - "ibge": 2705804, - "name": "Olho d'Água do Casado", - "capital": 0, - "ibgeState": 27, - "siafi": 2815, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.50357, - -37.8301 - ] - } - }, - { - "ibge": 2207108, - "name": "Olho D'Água do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 360, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.84125, - -42.5594 - ] - } - }, - { - "ibge": 2705903, - "name": "Olho d'Água Grande", - "capital": 0, - "ibgeState": 27, - "siafi": 2817, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.0572, - -36.8101 - ] - } - }, - { - "ibge": 2408409, - "name": "Olho-d'Água do Borges", - "capital": 0, - "ibgeState": 24, - "siafi": 1767, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.9486, - -37.7047 - ] - } - }, - { - "ibge": 3145455, - "name": "Olhos d'Água", - "capital": 0, - "ibgeState": 31, - "siafi": 670, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.3982, - -43.5719 - ] - } - }, - { - "ibge": 3533908, - "name": "Olímpia", - "capital": 0, - "ibgeState": 35, - "siafi": 6779, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7366, - -48.9106 - ] - } - }, - { - "ibge": 3145505, - "name": "Olímpio Noronha", - "capital": 0, - "ibgeState": 31, - "siafi": 4909, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0685, - -45.2657 - ] - } - }, - { - "ibge": 2609600, - "name": "Olinda", - "capital": 0, - "ibgeState": 26, - "siafi": 2491, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.01017, - -34.8545 - ] - } - }, - { - "ibge": 2107456, - "name": "Olinda Nova do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 204, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.99295, - -44.9897 - ] - } - }, - { - "ibge": 2923100, - "name": "Olindina", - "capital": 0, - "ibgeState": 29, - "siafi": 3763, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.3497, - -38.3379 - ] - } - }, - { - "ibge": 2510501, - "name": "Olivedos", - "capital": 0, - "ibgeState": 25, - "siafi": 2111, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.98434, - -36.241 - ] - } - }, - { - "ibge": 3145604, - "name": "Oliveira", - "capital": 0, - "ibgeState": 31, - "siafi": 4911, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6982, - -44.829 - ] - } - }, - { - "ibge": 1715507, - "name": "Oliveira de Fátima", - "capital": 0, - "ibgeState": 17, - "siafi": 92, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.707, - -48.9086 - ] - } - }, - { - "ibge": 2923209, - "name": "Oliveira dos Brejinhos", - "capital": 0, - "ibgeState": 29, - "siafi": 3765, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.3132, - -42.8969 - ] - } - }, - { - "ibge": 3145703, - "name": "Oliveira Fortes", - "capital": 0, - "ibgeState": 31, - "siafi": 4913, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3401, - -43.4499 - ] - } - }, - { - "ibge": 2706000, - "name": "Olivença", - "capital": 0, - "ibgeState": 27, - "siafi": 2819, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.51954, - -37.1954 - ] - } - }, - { - "ibge": 3145802, - "name": "Onça de Pitangui", - "capital": 0, - "ibgeState": 31, - "siafi": 4915, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7276, - -44.8058 - ] - } - }, - { - "ibge": 3534005, - "name": "Onda Verde", - "capital": 0, - "ibgeState": 35, - "siafi": 6781, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6042, - -49.2929 - ] - } - }, - { - "ibge": 3145851, - "name": "Oratórios", - "capital": 0, - "ibgeState": 31, - "siafi": 672, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4298, - -42.7977 - ] - } - }, - { - "ibge": 3534104, - "name": "Oriente", - "capital": 0, - "ibgeState": 35, - "siafi": 6783, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1549, - -50.0971 - ] - } - }, - { - "ibge": 3534203, - "name": "Orindiúva", - "capital": 0, - "ibgeState": 35, - "siafi": 6785, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1861, - -49.3464 - ] - } - }, - { - "ibge": 1505304, - "name": "Oriximiná", - "capital": 0, - "ibgeState": 15, - "siafi": 505, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.75989, - -55.8579 - ] - } - }, - { - "ibge": 3145877, - "name": "Orizânia", - "capital": 0, - "ibgeState": 31, - "siafi": 674, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5142, - -42.1991 - ] - } - }, - { - "ibge": 5215306, - "name": "Orizona", - "capital": 0, - "ibgeState": 52, - "siafi": 9503, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.0334, - -48.2964 - ] - } - }, - { - "ibge": 3534302, - "name": "Orlândia", - "capital": 0, - "ibgeState": 35, - "siafi": 6787, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7169, - -47.8852 - ] - } - }, - { - "ibge": 4211702, - "name": "Orleans", - "capital": 0, - "ibgeState": 42, - "siafi": 8229, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3487, - -49.2986 - ] - } - }, - { - "ibge": 2609709, - "name": "Orobó", - "capital": 0, - "ibgeState": 26, - "siafi": 2493, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.74553, - -35.5956 - ] - } - }, - { - "ibge": 2609808, - "name": "Orocó", - "capital": 0, - "ibgeState": 26, - "siafi": 2495, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.61026, - -39.6026 - ] - } - }, - { - "ibge": 2309508, - "name": "Orós", - "capital": 0, - "ibgeState": 23, - "siafi": 1491, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.25182, - -38.9053 - ] - } - }, - { - "ibge": 4117305, - "name": "Ortigueira", - "capital": 0, - "ibgeState": 41, - "siafi": 7727, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.2058, - -50.9185 - ] - } - }, - { - "ibge": 3534401, - "name": "Osasco", - "capital": 0, - "ibgeState": 35, - "siafi": 6789, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5324, - -46.7916 - ] - } - }, - { - "ibge": 3534500, - "name": "Oscar Bressane", - "capital": 0, - "ibgeState": 35, - "siafi": 6791, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3149, - -50.2811 - ] - } - }, - { - "ibge": 4313508, - "name": "Osório", - "capital": 0, - "ibgeState": 43, - "siafi": 8773, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.8881, - -50.2667 - ] - } - }, - { - "ibge": 3534609, - "name": "Osvaldo Cruz", - "capital": 0, - "ibgeState": 35, - "siafi": 6793, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7968, - -50.8793 - ] - } - }, - { - "ibge": 4211751, - "name": "Otacílio Costa", - "capital": 0, - "ibgeState": 42, - "siafi": 8397, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4789, - -50.1231 - ] - } - }, - { - "ibge": 1505403, - "name": "Ourém", - "capital": 0, - "ibgeState": 15, - "siafi": 507, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.54168, - -47.1126 - ] - } - }, - { - "ibge": 2923308, - "name": "Ouriçangas", - "capital": 0, - "ibgeState": 29, - "siafi": 3767, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.0175, - -38.6166 - ] - } - }, - { - "ibge": 2609907, - "name": "Ouricuri", - "capital": 0, - "ibgeState": 26, - "siafi": 2497, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.87918, - -40.08 - ] - } - }, - { - "ibge": 1505437, - "name": "Ourilândia do Norte", - "capital": 0, - "ibgeState": 15, - "siafi": 591, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.7529, - -51.0858 - ] - } - }, - { - "ibge": 3534708, - "name": "Ourinhos", - "capital": 0, - "ibgeState": 35, - "siafi": 6795, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9797, - -49.8697 - ] - } - }, - { - "ibge": 4117404, - "name": "Ourizona", - "capital": 0, - "ibgeState": 41, - "siafi": 7729, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4053, - -52.1964 - ] - } - }, - { - "ibge": 4211801, - "name": "Ouro", - "capital": 0, - "ibgeState": 42, - "siafi": 8231, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3379, - -51.6194 - ] - } - }, - { - "ibge": 3145901, - "name": "Ouro Branco", - "capital": 0, - "ibgeState": 31, - "siafi": 4917, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5263, - -43.6962 - ] - } - }, - { - "ibge": 2408508, - "name": "Ouro Branco", - "capital": 0, - "ibgeState": 24, - "siafi": 1769, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.6958, - -36.9428 - ] - } - }, - { - "ibge": 2706109, - "name": "Ouro Branco", - "capital": 0, - "ibgeState": 27, - "siafi": 2821, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.15884, - -37.3556 - ] - } - }, - { - "ibge": 3146008, - "name": "Ouro Fino", - "capital": 0, - "ibgeState": 31, - "siafi": 4919, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2779, - -46.3716 - ] - } - }, - { - "ibge": 3146107, - "name": "Ouro Preto", - "capital": 0, - "ibgeState": 31, - "siafi": 4921, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3796, - -43.512 - ] - } - }, - { - "ibge": 1100155, - "name": "Ouro Preto do Oeste", - "capital": 0, - "ibgeState": 11, - "siafi": 17, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.7167, - -62.2565 - ] - } - }, - { - "ibge": 2510600, - "name": "Ouro Velho", - "capital": 0, - "ibgeState": 25, - "siafi": 2113, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.61604, - -37.1519 - ] - } - }, - { - "ibge": 4211850, - "name": "Ouro Verde", - "capital": 0, - "ibgeState": 42, - "siafi": 5741, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.692, - -52.3108 - ] - } - }, - { - "ibge": 3534807, - "name": "Ouro Verde", - "capital": 0, - "ibgeState": 35, - "siafi": 6797, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4872, - -51.7024 - ] - } - }, - { - "ibge": 5215405, - "name": "Ouro Verde de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9505, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.2181, - -49.1942 - ] - } - }, - { - "ibge": 3146206, - "name": "Ouro Verde de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4923, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.0719, - -41.2734 - ] - } - }, - { - "ibge": 4117453, - "name": "Ouro Verde do Oeste", - "capital": 0, - "ibgeState": 41, - "siafi": 9965, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.7933, - -53.9043 - ] - } - }, - { - "ibge": 3534757, - "name": "Ouroeste", - "capital": 0, - "ibgeState": 35, - "siafi": 808, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0061, - -50.3768 - ] - } - }, - { - "ibge": 2923357, - "name": "Ourolândia", - "capital": 0, - "ibgeState": 29, - "siafi": 3017, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.9578, - -41.0756 - ] - } - }, - { - "ibge": 5215504, - "name": "Ouvidor", - "capital": 0, - "ibgeState": 52, - "siafi": 9507, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.2277, - -47.8355 - ] - } - }, - { - "ibge": 3534906, - "name": "Pacaembu", - "capital": 0, - "ibgeState": 35, - "siafi": 6799, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5627, - -51.2654 - ] - } - }, - { - "ibge": 1505486, - "name": "Pacajá", - "capital": 0, - "ibgeState": 15, - "siafi": 593, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.83542, - -50.6399 - ] - } - }, - { - "ibge": 2309607, - "name": "Pacajus", - "capital": 0, - "ibgeState": 23, - "siafi": 1493, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.17107, - -38.465 - ] - } - }, - { - "ibge": 1400456, - "name": "Pacaraima", - "capital": 0, - "ibgeState": 14, - "siafi": 34, - "ddd": 95, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - 4.4799, - -61.1477 - ] - } - }, - { - "ibge": 2309706, - "name": "Pacatuba", - "capital": 0, - "ibgeState": 23, - "siafi": 1495, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.9784, - -38.6183 - ] - } - }, - { - "ibge": 2804904, - "name": "Pacatuba", - "capital": 0, - "ibgeState": 28, - "siafi": 3197, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.4538, - -36.6531 - ] - } - }, - { - "ibge": 2107506, - "name": "Paço do Lumiar", - "capital": 0, - "ibgeState": 21, - "siafi": 849, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.51657, - -44.1019 - ] - } - }, - { - "ibge": 2309805, - "name": "Pacoti", - "capital": 0, - "ibgeState": 23, - "siafi": 1497, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.22492, - -38.922 - ] - } - }, - { - "ibge": 2309904, - "name": "Pacujá", - "capital": 0, - "ibgeState": 23, - "siafi": 1499, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.98327, - -40.6989 - ] - } - }, - { - "ibge": 5215603, - "name": "Padre Bernardo", - "capital": 0, - "ibgeState": 52, - "siafi": 9509, - "ddd": 61, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.1605, - -48.2833 - ] - } - }, - { - "ibge": 3146255, - "name": "Padre Carvalho", - "capital": 0, - "ibgeState": 31, - "siafi": 676, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.3646, - -42.5088 - ] - } - }, - { - "ibge": 2207207, - "name": "Padre Marcos", - "capital": 0, - "ibgeState": 22, - "siafi": 1143, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.35101, - -40.8997 - ] - } - }, - { - "ibge": 3146305, - "name": "Padre Paraíso", - "capital": 0, - "ibgeState": 31, - "siafi": 4925, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.0758, - -41.4821 - ] - } - }, - { - "ibge": 2207306, - "name": "Paes Landim", - "capital": 0, - "ibgeState": 22, - "siafi": 1145, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.77375, - -42.2474 - ] - } - }, - { - "ibge": 3146552, - "name": "Pai Pedro", - "capital": 0, - "ibgeState": 31, - "siafi": 678, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.5271, - -43.07 - ] - } - }, - { - "ibge": 4211876, - "name": "Paial", - "capital": 0, - "ibgeState": 42, - "siafi": 928, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2541, - -52.4975 - ] - } - }, - { - "ibge": 4117503, - "name": "Paiçandu", - "capital": 0, - "ibgeState": 41, - "siafi": 7731, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4555, - -52.046 - ] - } - }, - { - "ibge": 4313607, - "name": "Paim Filho", - "capital": 0, - "ibgeState": 43, - "siafi": 8775, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7075, - -51.763 - ] - } - }, - { - "ibge": 3146404, - "name": "Paineiras", - "capital": 0, - "ibgeState": 31, - "siafi": 4927, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.8993, - -45.5321 - ] - } - }, - { - "ibge": 4211892, - "name": "Painel", - "capital": 0, - "ibgeState": 42, - "siafi": 930, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9234, - -50.0972 - ] - } - }, - { - "ibge": 3146503, - "name": "Pains", - "capital": 0, - "ibgeState": 31, - "siafi": 4929, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3705, - -45.6627 - ] - } - }, - { - "ibge": 3146602, - "name": "Paiva", - "capital": 0, - "ibgeState": 31, - "siafi": 4931, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2913, - -43.4088 - ] - } - }, - { - "ibge": 2207355, - "name": "Pajeú do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 362, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.85508, - -42.8248 - ] - } - }, - { - "ibge": 2706208, - "name": "Palestina", - "capital": 0, - "ibgeState": 27, - "siafi": 2823, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.67493, - -37.339 - ] - } - }, - { - "ibge": 3535002, - "name": "Palestina", - "capital": 0, - "ibgeState": 35, - "siafi": 6801, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.39, - -49.4309 - ] - } - }, - { - "ibge": 5215652, - "name": "Palestina de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9737, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.7392, - -51.5309 - ] - } - }, - { - "ibge": 1505494, - "name": "Palestina do Pará", - "capital": 0, - "ibgeState": 15, - "siafi": 379, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.74027, - -48.3181 - ] - } - }, - { - "ibge": 2310001, - "name": "Palhano", - "capital": 0, - "ibgeState": 23, - "siafi": 1501, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.73672, - -37.9655 - ] - } - }, - { - "ibge": 4211900, - "name": "Palhoça", - "capital": 0, - "ibgeState": 42, - "siafi": 8233, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6455, - -48.6697 - ] - } - }, - { - "ibge": 3146701, - "name": "Palma", - "capital": 0, - "ibgeState": 31, - "siafi": 4933, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3748, - -42.3123 - ] - } - }, - { - "ibge": 4212007, - "name": "Palma Sola", - "capital": 0, - "ibgeState": 42, - "siafi": 8235, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.3471, - -53.2771 - ] - } - }, - { - "ibge": 2310100, - "name": "Palmácia", - "capital": 0, - "ibgeState": 23, - "siafi": 1503, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.13831, - -38.8446 - ] - } - }, - { - "ibge": 2610004, - "name": "Palmares", - "capital": 0, - "ibgeState": 26, - "siafi": 2499, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.68423, - -35.589 - ] - } - }, - { - "ibge": 4313656, - "name": "Palmares do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8967, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.2535, - -50.5103 - ] - } - }, - { - "ibge": 3535101, - "name": "Palmares Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 6803, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0854, - -48.8037 - ] - } - }, - { - "ibge": 4117602, - "name": "Palmas", - "capital": 0, - "ibgeState": 41, - "siafi": 7733, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.4839, - -51.9888 - ] - } - }, - { - "ibge": 1721000, - "name": "Palmas", - "capital": 1, - "ibgeState": 17, - "siafi": 9733, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.24, - -48.3558 - ] - } - }, - { - "ibge": 2923407, - "name": "Palmas de Monte Alto", - "capital": 0, - "ibgeState": 29, - "siafi": 3769, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.2676, - -43.1609 - ] - } - }, - { - "ibge": 4117701, - "name": "Palmeira", - "capital": 0, - "ibgeState": 41, - "siafi": 7735, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4257, - -50.007 - ] - } - }, - { - "ibge": 4212056, - "name": "Palmeira", - "capital": 0, - "ibgeState": 42, - "siafi": 932, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.583, - -50.1577 - ] - } - }, - { - "ibge": 3535200, - "name": "Palmeira d'Oeste", - "capital": 0, - "ibgeState": 35, - "siafi": 6805, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4148, - -50.7632 - ] - } - }, - { - "ibge": 4313706, - "name": "Palmeira das Missões", - "capital": 0, - "ibgeState": 43, - "siafi": 8777, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9007, - -53.3134 - ] - } - }, - { - "ibge": 2207405, - "name": "Palmeira do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1147, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.73076, - -44.2466 - ] - } - }, - { - "ibge": 2706307, - "name": "Palmeira dos Índios", - "capital": 0, - "ibgeState": 27, - "siafi": 2825, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.40568, - -36.6328 - ] - } - }, - { - "ibge": 2207504, - "name": "Palmeirais", - "capital": 0, - "ibgeState": 22, - "siafi": 1149, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.97086, - -43.056 - ] - } - }, - { - "ibge": 2107605, - "name": "Palmeirândia", - "capital": 0, - "ibgeState": 21, - "siafi": 851, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.64433, - -44.8933 - ] - } - }, - { - "ibge": 1715705, - "name": "Palmeirante", - "capital": 0, - "ibgeState": 17, - "siafi": 189, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.84786, - -47.9242 - ] - } - }, - { - "ibge": 2923506, - "name": "Palmeiras", - "capital": 0, - "ibgeState": 29, - "siafi": 3771, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.5059, - -41.5809 - ] - } - }, - { - "ibge": 5215702, - "name": "Palmeiras de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9511, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.8044, - -49.924 - ] - } - }, - { - "ibge": 1713809, - "name": "Palmeiras do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 185, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.61658, - -47.5464 - ] - } - }, - { - "ibge": 2610103, - "name": "Palmeirina", - "capital": 0, - "ibgeState": 26, - "siafi": 2501, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.0109, - -36.3242 - ] - } - }, - { - "ibge": 1715754, - "name": "Palmeirópolis", - "capital": 0, - "ibgeState": 17, - "siafi": 9649, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.0447, - -48.4026 - ] - } - }, - { - "ibge": 5215801, - "name": "Palmelo", - "capital": 0, - "ibgeState": 52, - "siafi": 9513, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.3258, - -48.426 - ] - } - }, - { - "ibge": 5215900, - "name": "Palminópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9515, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.7924, - -50.1652 - ] - } - }, - { - "ibge": 3535309, - "name": "Palmital", - "capital": 0, - "ibgeState": 35, - "siafi": 6807, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7858, - -50.218 - ] - } - }, - { - "ibge": 4117800, - "name": "Palmital", - "capital": 0, - "ibgeState": 41, - "siafi": 7737, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.8853, - -52.2029 - ] - } - }, - { - "ibge": 4313805, - "name": "Palmitinho", - "capital": 0, - "ibgeState": 43, - "siafi": 8779, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3596, - -53.558 - ] - } - }, - { - "ibge": 4212106, - "name": "Palmitos", - "capital": 0, - "ibgeState": 42, - "siafi": 8237, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0702, - -53.1586 - ] - } - }, - { - "ibge": 3146750, - "name": "Palmópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 2661, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.7364, - -40.4296 - ] - } - }, - { - "ibge": 4117909, - "name": "Palotina", - "capital": 0, - "ibgeState": 41, - "siafi": 7739, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.2868, - -53.8404 - ] - } - }, - { - "ibge": 5216007, - "name": "Panamá", - "capital": 0, - "ibgeState": 52, - "siafi": 9517, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.1783, - -49.355 - ] - } - }, - { - "ibge": 4313904, - "name": "Panambi", - "capital": 0, - "ibgeState": 43, - "siafi": 8781, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.2833, - -53.5023 - ] - } - }, - { - "ibge": 3204005, - "name": "Pancas", - "capital": 0, - "ibgeState": 32, - "siafi": 5679, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2229, - -40.8534 - ] - } - }, - { - "ibge": 2610202, - "name": "Panelas", - "capital": 0, - "ibgeState": 26, - "siafi": 2503, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.66121, - -36.0125 - ] - } - }, - { - "ibge": 3535408, - "name": "Panorama", - "capital": 0, - "ibgeState": 35, - "siafi": 6809, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.354, - -51.8562 - ] - } - }, - { - "ibge": 4313953, - "name": "Pantano Grande", - "capital": 0, - "ibgeState": 43, - "siafi": 7375, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.1902, - -52.3729 - ] - } - }, - { - "ibge": 2706406, - "name": "Pão de Açúcar", - "capital": 0, - "ibgeState": 27, - "siafi": 2827, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.74032, - -37.4403 - ] - } - }, - { - "ibge": 3146909, - "name": "Papagaios", - "capital": 0, - "ibgeState": 31, - "siafi": 4937, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.4419, - -44.7468 - ] - } - }, - { - "ibge": 4212205, - "name": "Papanduva", - "capital": 0, - "ibgeState": 42, - "siafi": 8239, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.3777, - -50.1419 - ] - } - }, - { - "ibge": 2207553, - "name": "Paquetá", - "capital": 0, - "ibgeState": 22, - "siafi": 364, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.10303, - -41.7 - ] - } - }, - { - "ibge": 3147105, - "name": "Pará de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4941, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8534, - -44.6114 - ] - } - }, - { - "ibge": 3303609, - "name": "Paracambi", - "capital": 0, - "ibgeState": 33, - "siafi": 5871, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6078, - -43.7108 - ] - } - }, - { - "ibge": 3147006, - "name": "Paracatu", - "capital": 0, - "ibgeState": 31, - "siafi": 4939, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.2252, - -46.8711 - ] - } - }, - { - "ibge": 2310209, - "name": "Paracuru", - "capital": 0, - "ibgeState": 23, - "siafi": 1505, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.41436, - -39.03 - ] - } - }, - { - "ibge": 1505502, - "name": "Paragominas", - "capital": 0, - "ibgeState": 15, - "siafi": 509, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.00212, - -47.3527 - ] - } - }, - { - "ibge": 3147204, - "name": "Paraguaçu", - "capital": 0, - "ibgeState": 31, - "siafi": 4943, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5465, - -45.7374 - ] - } - }, - { - "ibge": 3535507, - "name": "Paraguaçu Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 6811, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4114, - -50.5732 - ] - } - }, - { - "ibge": 4314001, - "name": "Paraí", - "capital": 0, - "ibgeState": 43, - "siafi": 8783, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5964, - -51.7896 - ] - } - }, - { - "ibge": 3303708, - "name": "Paraíba do Sul", - "capital": 0, - "ibgeState": 33, - "siafi": 5873, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1585, - -43.304 - ] - } - }, - { - "ibge": 2107704, - "name": "Paraibano", - "capital": 0, - "ibgeState": 21, - "siafi": 853, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.4264, - -43.9792 - ] - } - }, - { - "ibge": 3535606, - "name": "Paraibuna", - "capital": 0, - "ibgeState": 35, - "siafi": 6813, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3872, - -45.6639 - ] - } - }, - { - "ibge": 2310258, - "name": "Paraipaba", - "capital": 0, - "ibgeState": 23, - "siafi": 1599, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.43799, - -39.1479 - ] - } - }, - { - "ibge": 3535705, - "name": "Paraíso", - "capital": 0, - "ibgeState": 35, - "siafi": 6815, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0159, - -48.7761 - ] - } - }, - { - "ibge": 4212239, - "name": "Paraíso", - "capital": 0, - "ibgeState": 42, - "siafi": 5747, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.62, - -53.6716 - ] - } - }, - { - "ibge": 5006275, - "name": "Paraíso das Águas", - "capital": 0, - "ibgeState": 50, - "siafi": 1196, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -19.0216, - -53.0116 - ] - } - }, - { - "ibge": 4118006, - "name": "Paraíso do Norte", - "capital": 0, - "ibgeState": 41, - "siafi": 7741, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2824, - -52.6054 - ] - } - }, - { - "ibge": 4314027, - "name": "Paraíso do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 7373, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6717, - -53.144 - ] - } - }, - { - "ibge": 1716109, - "name": "Paraíso do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9519, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.175, - -48.8823 - ] - } - }, - { - "ibge": 3147303, - "name": "Paraisópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 4945, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5539, - -45.7803 - ] - } - }, - { - "ibge": 2310308, - "name": "Parambu", - "capital": 0, - "ibgeState": 23, - "siafi": 1507, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.20768, - -40.6905 - ] - } - }, - { - "ibge": 2923605, - "name": "Paramirim", - "capital": 0, - "ibgeState": 29, - "siafi": 3773, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.4388, - -42.2395 - ] - } - }, - { - "ibge": 2310407, - "name": "Paramoti", - "capital": 0, - "ibgeState": 23, - "siafi": 1509, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.08815, - -39.2417 - ] - } - }, - { - "ibge": 1716208, - "name": "Paranã", - "capital": 0, - "ibgeState": 17, - "siafi": 9521, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.6167, - -47.8734 - ] - } - }, - { - "ibge": 2408607, - "name": "Paraná", - "capital": 0, - "ibgeState": 24, - "siafi": 1771, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.47565, - -38.3057 - ] - } - }, - { - "ibge": 4118105, - "name": "Paranacity", - "capital": 0, - "ibgeState": 41, - "siafi": 7743, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9297, - -52.1549 - ] - } - }, - { - "ibge": 4118204, - "name": "Paranaguá", - "capital": 0, - "ibgeState": 41, - "siafi": 7745, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.5161, - -48.5225 - ] - } - }, - { - "ibge": 5006309, - "name": "Paranaíba", - "capital": 0, - "ibgeState": 50, - "siafi": 9125, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -19.6746, - -51.1909 - ] - } - }, - { - "ibge": 5216304, - "name": "Paranaiguara", - "capital": 0, - "ibgeState": 52, - "siafi": 9455, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.9141, - -50.6539 - ] - } - }, - { - "ibge": 5106299, - "name": "Paranaíta", - "capital": 0, - "ibgeState": 51, - "siafi": 9885, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -9.65835, - -56.4786 - ] - } - }, - { - "ibge": 3535804, - "name": "Paranapanema", - "capital": 0, - "ibgeState": 35, - "siafi": 6817, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3862, - -48.7214 - ] - } - }, - { - "ibge": 4118303, - "name": "Paranapoema", - "capital": 0, - "ibgeState": 41, - "siafi": 7747, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6412, - -52.0905 - ] - } - }, - { - "ibge": 3535903, - "name": "Paranapuã", - "capital": 0, - "ibgeState": 35, - "siafi": 6819, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1048, - -50.5886 - ] - } - }, - { - "ibge": 2610301, - "name": "Paranatama", - "capital": 0, - "ibgeState": 26, - "siafi": 2505, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.91875, - -36.6549 - ] - } - }, - { - "ibge": 5106307, - "name": "Paranatinga", - "capital": 0, - "ibgeState": 51, - "siafi": 8983, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.4265, - -54.0524 - ] - } - }, - { - "ibge": 4118402, - "name": "Paranavaí", - "capital": 0, - "ibgeState": 41, - "siafi": 7749, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0816, - -52.4617 - ] - } - }, - { - "ibge": 5006358, - "name": "Paranhos", - "capital": 0, - "ibgeState": 50, - "siafi": 9739, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -23.8911, - -55.429 - ] - } - }, - { - "ibge": 3147402, - "name": "Paraopeba", - "capital": 0, - "ibgeState": 31, - "siafi": 4947, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2732, - -44.4044 - ] - } - }, - { - "ibge": 3536000, - "name": "Parapuã", - "capital": 0, - "ibgeState": 35, - "siafi": 6821, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7792, - -50.7949 - ] - } - }, - { - "ibge": 2510659, - "name": "Parari", - "capital": 0, - "ibgeState": 25, - "siafi": 494, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.30975, - -36.6522 - ] - } - }, - { - "ibge": 2923704, - "name": "Paratinga", - "capital": 0, - "ibgeState": 29, - "siafi": 3775, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.687, - -43.1798 - ] - } - }, - { - "ibge": 3303807, - "name": "Paraty", - "capital": 0, - "ibgeState": 33, - "siafi": 5875, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2221, - -44.7175 - ] - } - }, - { - "ibge": 2408706, - "name": "Paraú", - "capital": 0, - "ibgeState": 24, - "siafi": 1773, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.76893, - -37.1032 - ] - } - }, - { - "ibge": 1505536, - "name": "Parauapebas", - "capital": 0, - "ibgeState": 15, - "siafi": 595, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.06781, - -49.9037 - ] - } - }, - { - "ibge": 5216403, - "name": "Paraúna", - "capital": 0, - "ibgeState": 52, - "siafi": 9523, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.9463, - -50.4484 - ] - } - }, - { - "ibge": 2408805, - "name": "Parazinho", - "capital": 0, - "ibgeState": 24, - "siafi": 1775, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.22276, - -35.8398 - ] - } - }, - { - "ibge": 3536109, - "name": "Pardinho", - "capital": 0, - "ibgeState": 35, - "siafi": 6823, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0841, - -48.3679 - ] - } - }, - { - "ibge": 4314035, - "name": "Pareci Novo", - "capital": 0, - "ibgeState": 43, - "siafi": 6041, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6365, - -51.3974 - ] - } - }, - { - "ibge": 1101450, - "name": "Parecis", - "capital": 0, - "ibgeState": 11, - "siafi": 12, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.1754, - -61.6032 - ] - } - }, - { - "ibge": 2408904, - "name": "Parelhas", - "capital": 0, - "ibgeState": 24, - "siafi": 1777, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.68491, - -36.6566 - ] - } - }, - { - "ibge": 2706422, - "name": "Pariconha", - "capital": 0, - "ibgeState": 27, - "siafi": 2645, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.25634, - -37.9988 - ] - } - }, - { - "ibge": 1303403, - "name": "Parintins", - "capital": 0, - "ibgeState": 13, - "siafi": 269, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -2.63741, - -56.729 - ] - } - }, - { - "ibge": 2923803, - "name": "Paripiranga", - "capital": 0, - "ibgeState": 29, - "siafi": 3777, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.6859, - -37.8626 - ] - } - }, - { - "ibge": 2706448, - "name": "Paripueira", - "capital": 0, - "ibgeState": 27, - "siafi": 2641, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.46313, - -35.552 - ] - } - }, - { - "ibge": 3536208, - "name": "Pariquera-Açu", - "capital": 0, - "ibgeState": 35, - "siafi": 6825, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.7147, - -47.8742 - ] - } - }, - { - "ibge": 3536257, - "name": "Parisi", - "capital": 0, - "ibgeState": 35, - "siafi": 2989, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3034, - -50.0163 - ] - } - }, - { - "ibge": 2207603, - "name": "Parnaguá", - "capital": 0, - "ibgeState": 22, - "siafi": 1151, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.2166, - -44.63 - ] - } - }, - { - "ibge": 2207702, - "name": "Parnaíba", - "capital": 0, - "ibgeState": 22, - "siafi": 1153, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.90585, - -41.7754 - ] - } - }, - { - "ibge": 2403251, - "name": "Parnamirim", - "capital": 0, - "ibgeState": 24, - "siafi": 1779, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.91116, - -35.271 - ] - } - }, - { - "ibge": 2610400, - "name": "Parnamirim", - "capital": 0, - "ibgeState": 26, - "siafi": 2507, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.08729, - -39.5795 - ] - } - }, - { - "ibge": 2107803, - "name": "Parnarama", - "capital": 0, - "ibgeState": 21, - "siafi": 855, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.67365, - -43.1011 - ] - } - }, - { - "ibge": 4314050, - "name": "Parobé", - "capital": 0, - "ibgeState": 43, - "siafi": 9825, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6243, - -50.8312 - ] - } - }, - { - "ibge": 2409100, - "name": "Passa e Fica", - "capital": 0, - "ibgeState": 24, - "siafi": 1781, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.43018, - -35.6442 - ] - } - }, - { - "ibge": 3147600, - "name": "Passa Quatro", - "capital": 0, - "ibgeState": 31, - "siafi": 4951, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3871, - -44.9709 - ] - } - }, - { - "ibge": 4314068, - "name": "Passa Sete", - "capital": 0, - "ibgeState": 43, - "siafi": 1010, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4577, - -52.9599 - ] - } - }, - { - "ibge": 3147709, - "name": "Passa Tempo", - "capital": 0, - "ibgeState": 31, - "siafi": 4953, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6539, - -44.4926 - ] - } - }, - { - "ibge": 3147808, - "name": "Passa-Vinte", - "capital": 0, - "ibgeState": 31, - "siafi": 4955, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2097, - -44.2344 - ] - } - }, - { - "ibge": 3147501, - "name": "Passabém", - "capital": 0, - "ibgeState": 31, - "siafi": 4949, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.3509, - -43.1383 - ] - } - }, - { - "ibge": 2409209, - "name": "Passagem", - "capital": 0, - "ibgeState": 24, - "siafi": 1783, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.27268, - -35.37 - ] - } - }, - { - "ibge": 2510709, - "name": "Passagem", - "capital": 0, - "ibgeState": 25, - "siafi": 2115, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.13467, - -37.0433 - ] - } - }, - { - "ibge": 2107902, - "name": "Passagem Franca", - "capital": 0, - "ibgeState": 21, - "siafi": 857, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.17745, - -43.7755 - ] - } - }, - { - "ibge": 2207751, - "name": "Passagem Franca do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1293, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.86036, - -42.4436 - ] - } - }, - { - "ibge": 2610509, - "name": "Passira", - "capital": 0, - "ibgeState": 26, - "siafi": 2509, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.9971, - -35.5813 - ] - } - }, - { - "ibge": 2706505, - "name": "Passo de Camaragibe", - "capital": 0, - "ibgeState": 27, - "siafi": 2829, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.24511, - -35.4745 - ] - } - }, - { - "ibge": 4212254, - "name": "Passo de Torres", - "capital": 0, - "ibgeState": 42, - "siafi": 5541, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3099, - -49.722 - ] - } - }, - { - "ibge": 4314076, - "name": "Passo do Sobrado", - "capital": 0, - "ibgeState": 43, - "siafi": 5765, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.748, - -52.2748 - ] - } - }, - { - "ibge": 4314100, - "name": "Passo Fundo", - "capital": 0, - "ibgeState": 43, - "siafi": 8785, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.2576, - -52.4091 - ] - } - }, - { - "ibge": 3147907, - "name": "Passos", - "capital": 0, - "ibgeState": 31, - "siafi": 4957, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7193, - -46.609 - ] - } - }, - { - "ibge": 4212270, - "name": "Passos Maia", - "capital": 0, - "ibgeState": 42, - "siafi": 5743, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7829, - -52.0568 - ] - } - }, - { - "ibge": 2108009, - "name": "Pastos Bons", - "capital": 0, - "ibgeState": 21, - "siafi": 859, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.60296, - -44.0745 - ] - } - }, - { - "ibge": 3147956, - "name": "Patis", - "capital": 0, - "ibgeState": 31, - "siafi": 680, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0773, - -44.0787 - ] - } - }, - { - "ibge": 4118451, - "name": "Pato Bragado", - "capital": 0, - "ibgeState": 41, - "siafi": 5533, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.6271, - -54.2265 - ] - } - }, - { - "ibge": 4118501, - "name": "Pato Branco", - "capital": 0, - "ibgeState": 41, - "siafi": 7751, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.2292, - -52.6706 - ] - } - }, - { - "ibge": 2510808, - "name": "Patos", - "capital": 0, - "ibgeState": 25, - "siafi": 2117, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.01743, - -37.2747 - ] - } - }, - { - "ibge": 3148004, - "name": "Patos de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 4959, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5699, - -46.5013 - ] - } - }, - { - "ibge": 2207777, - "name": "Patos do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 2277, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.67231, - -41.2408 - ] - } - }, - { - "ibge": 3148103, - "name": "Patrocínio", - "capital": 0, - "ibgeState": 31, - "siafi": 4961, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.9379, - -46.9934 - ] - } - }, - { - "ibge": 3148202, - "name": "Patrocínio do Muriaé", - "capital": 0, - "ibgeState": 31, - "siafi": 4963, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1544, - -42.2125 - ] - } - }, - { - "ibge": 3536307, - "name": "Patrocínio Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 6827, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6384, - -47.2801 - ] - } - }, - { - "ibge": 2409308, - "name": "Patu", - "capital": 0, - "ibgeState": 24, - "siafi": 1785, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.10656, - -37.6356 - ] - } - }, - { - "ibge": 3303856, - "name": "Paty do Alferes", - "capital": 0, - "ibgeState": 33, - "siafi": 6005, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4309, - -43.4285 - ] - } - }, - { - "ibge": 2923902, - "name": "Pau Brasil", - "capital": 0, - "ibgeState": 29, - "siafi": 3779, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.4572, - -39.6458 - ] - } - }, - { - "ibge": 1505551, - "name": "Pau d'Arco", - "capital": 0, - "ibgeState": 15, - "siafi": 387, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.59772, - -46.9268 - ] - } - }, - { - "ibge": 1716307, - "name": "Pau D'Arco", - "capital": 0, - "ibgeState": 17, - "siafi": 191, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.53919, - -49.367 - ] - } - }, - { - "ibge": 2207793, - "name": "Pau D'Arco do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1104, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.26072, - -42.3908 - ] - } - }, - { - "ibge": 2409407, - "name": "Pau dos Ferros", - "capital": 0, - "ibgeState": 24, - "siafi": 1787, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.10498, - -38.2077 - ] - } - }, - { - "ibge": 2610608, - "name": "Paudalho", - "capital": 0, - "ibgeState": 26, - "siafi": 2511, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.90287, - -35.1716 - ] - } - }, - { - "ibge": 1303502, - "name": "Pauini", - "capital": 0, - "ibgeState": 13, - "siafi": 271, - "ddd": 97, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -7.71311, - -66.992 - ] - } - }, - { - "ibge": 3148301, - "name": "Paula Cândido", - "capital": 0, - "ibgeState": 31, - "siafi": 4965, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8754, - -42.9752 - ] - } - }, - { - "ibge": 4118600, - "name": "Paula Freitas", - "capital": 0, - "ibgeState": 41, - "siafi": 7753, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.2105, - -50.931 - ] - } - }, - { - "ibge": 3536406, - "name": "Paulicéia", - "capital": 0, - "ibgeState": 35, - "siafi": 6829, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3153, - -51.8321 - ] - } - }, - { - "ibge": 3536505, - "name": "Paulínia", - "capital": 0, - "ibgeState": 35, - "siafi": 6831, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7542, - -47.1488 - ] - } - }, - { - "ibge": 2108058, - "name": "Paulino Neves", - "capital": 0, - "ibgeState": 21, - "siafi": 206, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.72094, - -42.5258 - ] - } - }, - { - "ibge": 2510907, - "name": "Paulista", - "capital": 0, - "ibgeState": 25, - "siafi": 2119, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.59138, - -37.6185 - ] - } - }, - { - "ibge": 2610707, - "name": "Paulista", - "capital": 0, - "ibgeState": 26, - "siafi": 2513, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.93401, - -34.8684 - ] - } - }, - { - "ibge": 2207801, - "name": "Paulistana", - "capital": 0, - "ibgeState": 22, - "siafi": 1155, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.13436, - -41.1431 - ] - } - }, - { - "ibge": 3536570, - "name": "Paulistânia", - "capital": 0, - "ibgeState": 35, - "siafi": 810, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5768, - -49.4008 - ] - } - }, - { - "ibge": 3148400, - "name": "Paulistas", - "capital": 0, - "ibgeState": 31, - "siafi": 4967, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4276, - -42.8628 - ] - } - }, - { - "ibge": 2924009, - "name": "Paulo Afonso", - "capital": 0, - "ibgeState": 29, - "siafi": 3781, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.3983, - -38.2216 - ] - } - }, - { - "ibge": 4314134, - "name": "Paulo Bento", - "capital": 0, - "ibgeState": 43, - "siafi": 1154, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7051, - -52.4169 - ] - } - }, - { - "ibge": 3536604, - "name": "Paulo de Faria", - "capital": 0, - "ibgeState": 35, - "siafi": 6833, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0296, - -49.4 - ] - } - }, - { - "ibge": 4118709, - "name": "Paulo Frontin", - "capital": 0, - "ibgeState": 41, - "siafi": 7755, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.0466, - -50.8304 - ] - } - }, - { - "ibge": 2706604, - "name": "Paulo Jacinto", - "capital": 0, - "ibgeState": 27, - "siafi": 2831, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.36792, - -36.3672 - ] - } - }, - { - "ibge": 4212304, - "name": "Paulo Lopes", - "capital": 0, - "ibgeState": 42, - "siafi": 8241, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9607, - -48.6864 - ] - } - }, - { - "ibge": 2108108, - "name": "Paulo Ramos", - "capital": 0, - "ibgeState": 21, - "siafi": 959, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.44485, - -45.2398 - ] - } - }, - { - "ibge": 3148509, - "name": "Pavão", - "capital": 0, - "ibgeState": 31, - "siafi": 4969, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.4267, - -41.0035 - ] - } - }, - { - "ibge": 4314159, - "name": "Paverama", - "capital": 0, - "ibgeState": 43, - "siafi": 7371, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5486, - -51.7339 - ] - } - }, - { - "ibge": 2207850, - "name": "Pavussu", - "capital": 0, - "ibgeState": 22, - "siafi": 366, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.96059, - -43.2284 - ] - } - }, - { - "ibge": 2924058, - "name": "Pé de Serra", - "capital": 0, - "ibgeState": 29, - "siafi": 3981, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.8313, - -39.611 - ] - } - }, - { - "ibge": 4118808, - "name": "Peabiru", - "capital": 0, - "ibgeState": 41, - "siafi": 7757, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.914, - -52.3431 - ] - } - }, - { - "ibge": 3148608, - "name": "Peçanha", - "capital": 0, - "ibgeState": 31, - "siafi": 4971, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5441, - -42.5583 - ] - } - }, - { - "ibge": 3536703, - "name": "Pederneiras", - "capital": 0, - "ibgeState": 35, - "siafi": 6835, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3511, - -48.7781 - ] - } - }, - { - "ibge": 2610806, - "name": "Pedra", - "capital": 0, - "ibgeState": 26, - "siafi": 2515, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.49641, - -36.94 - ] - } - }, - { - "ibge": 3148707, - "name": "Pedra Azul", - "capital": 0, - "ibgeState": 31, - "siafi": 4973, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0086, - -41.2909 - ] - } - }, - { - "ibge": 3536802, - "name": "Pedra Bela", - "capital": 0, - "ibgeState": 35, - "siafi": 6837, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7902, - -46.4455 - ] - } - }, - { - "ibge": 3148756, - "name": "Pedra Bonita", - "capital": 0, - "ibgeState": 31, - "siafi": 682, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5219, - -42.3304 - ] - } - }, - { - "ibge": 2511004, - "name": "Pedra Branca", - "capital": 0, - "ibgeState": 25, - "siafi": 2121, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.42169, - -38.0689 - ] - } - }, - { - "ibge": 2310506, - "name": "Pedra Branca", - "capital": 0, - "ibgeState": 23, - "siafi": 1511, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.45341, - -39.7078 - ] - } - }, - { - "ibge": 1600154, - "name": "Pedra Branca do Amapari", - "capital": 0, - "ibgeState": 16, - "siafi": 663, - "ddd": 96, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - 0.777424, - -51.9503 - ] - } - }, - { - "ibge": 3148806, - "name": "Pedra do Anta", - "capital": 0, - "ibgeState": 31, - "siafi": 4975, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5968, - -42.7123 - ] - } - }, - { - "ibge": 3148905, - "name": "Pedra do Indaiá", - "capital": 0, - "ibgeState": 31, - "siafi": 4977, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2563, - -45.2107 - ] - } - }, - { - "ibge": 3149002, - "name": "Pedra Dourada", - "capital": 0, - "ibgeState": 31, - "siafi": 4979, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8266, - -42.1515 - ] - } - }, - { - "ibge": 2409506, - "name": "Pedra Grande", - "capital": 0, - "ibgeState": 24, - "siafi": 1789, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.14988, - -35.876 - ] - } - }, - { - "ibge": 2511103, - "name": "Pedra Lavrada", - "capital": 0, - "ibgeState": 25, - "siafi": 2123, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.74997, - -36.4758 - ] - } - }, - { - "ibge": 2805000, - "name": "Pedra Mole", - "capital": 0, - "ibgeState": 28, - "siafi": 3199, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.6134, - -37.6922 - ] - } - }, - { - "ibge": 2409605, - "name": "Pedra Preta", - "capital": 0, - "ibgeState": 24, - "siafi": 1791, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.57352, - -36.1084 - ] - } - }, - { - "ibge": 5106372, - "name": "Pedra Preta", - "capital": 0, - "ibgeState": 51, - "siafi": 9181, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -16.6245, - -54.4722 - ] - } - }, - { - "ibge": 3149101, - "name": "Pedralva", - "capital": 0, - "ibgeState": 31, - "siafi": 4981, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2386, - -45.4654 - ] - } - }, - { - "ibge": 3536901, - "name": "Pedranópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6839, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2474, - -50.1129 - ] - } - }, - { - "ibge": 2924108, - "name": "Pedrão", - "capital": 0, - "ibgeState": 29, - "siafi": 3783, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.1491, - -38.6487 - ] - } - }, - { - "ibge": 4314175, - "name": "Pedras Altas", - "capital": 0, - "ibgeState": 43, - "siafi": 1156, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.7365, - -53.5814 - ] - } - }, - { - "ibge": 2511202, - "name": "Pedras de Fogo", - "capital": 0, - "ibgeState": 25, - "siafi": 2125, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.39107, - -35.1065 - ] - } - }, - { - "ibge": 3149150, - "name": "Pedras de Maria da Cruz", - "capital": 0, - "ibgeState": 31, - "siafi": 2899, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.6032, - -44.391 - ] - } - }, - { - "ibge": 4212403, - "name": "Pedras Grandes", - "capital": 0, - "ibgeState": 42, - "siafi": 8243, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.4339, - -49.1949 - ] - } - }, - { - "ibge": 3537008, - "name": "Pedregulho", - "capital": 0, - "ibgeState": 35, - "siafi": 6841, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2535, - -47.4775 - ] - } - }, - { - "ibge": 3537107, - "name": "Pedreira", - "capital": 0, - "ibgeState": 35, - "siafi": 6843, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7413, - -46.8948 - ] - } - }, - { - "ibge": 2108207, - "name": "Pedreiras", - "capital": 0, - "ibgeState": 21, - "siafi": 861, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.56482, - -44.6006 - ] - } - }, - { - "ibge": 2805109, - "name": "Pedrinhas", - "capital": 0, - "ibgeState": 28, - "siafi": 3201, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.1902, - -37.6775 - ] - } - }, - { - "ibge": 3537156, - "name": "Pedrinhas Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 2963, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8174, - -50.7933 - ] - } - }, - { - "ibge": 3149200, - "name": "Pedrinópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 4983, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2241, - -47.4579 - ] - } - }, - { - "ibge": 1716505, - "name": "Pedro Afonso", - "capital": 0, - "ibgeState": 17, - "siafi": 9525, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.97034, - -48.1729 - ] - } - }, - { - "ibge": 2924207, - "name": "Pedro Alexandre", - "capital": 0, - "ibgeState": 29, - "siafi": 3785, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.012, - -37.8932 - ] - } - }, - { - "ibge": 2409704, - "name": "Pedro Avelino", - "capital": 0, - "ibgeState": 24, - "siafi": 1793, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.5161, - -36.3867 - ] - } - }, - { - "ibge": 3204054, - "name": "Pedro Canário", - "capital": 0, - "ibgeState": 32, - "siafi": 5715, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.3004, - -39.9574 - ] - } - }, - { - "ibge": 3537206, - "name": "Pedro de Toledo", - "capital": 0, - "ibgeState": 35, - "siafi": 6845, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.2764, - -47.2354 - ] - } - }, - { - "ibge": 2108256, - "name": "Pedro do Rosário", - "capital": 0, - "ibgeState": 21, - "siafi": 208, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.97272, - -45.3493 - ] - } - }, - { - "ibge": 5006408, - "name": "Pedro Gomes", - "capital": 0, - "ibgeState": 50, - "siafi": 9127, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -18.0996, - -54.5507 - ] - } - }, - { - "ibge": 2207900, - "name": "Pedro II", - "capital": 0, - "ibgeState": 22, - "siafi": 1157, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.42585, - -41.4482 - ] - } - }, - { - "ibge": 2207934, - "name": "Pedro Laurentino", - "capital": 0, - "ibgeState": 22, - "siafi": 368, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.06807, - -42.2847 - ] - } - }, - { - "ibge": 3149309, - "name": "Pedro Leopoldo", - "capital": 0, - "ibgeState": 31, - "siafi": 4985, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6308, - -44.0383 - ] - } - }, - { - "ibge": 4314209, - "name": "Pedro Osório", - "capital": 0, - "ibgeState": 43, - "siafi": 8787, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.8642, - -52.8184 - ] - } - }, - { - "ibge": 2512721, - "name": "Pedro Régis", - "capital": 0, - "ibgeState": 25, - "siafi": 500, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.63323, - -35.2966 - ] - } - }, - { - "ibge": 3149408, - "name": "Pedro Teixeira", - "capital": 0, - "ibgeState": 31, - "siafi": 4987, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7076, - -43.743 - ] - } - }, - { - "ibge": 2409803, - "name": "Pedro Velho", - "capital": 0, - "ibgeState": 24, - "siafi": 1795, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.4356, - -35.2195 - ] - } - }, - { - "ibge": 1716604, - "name": "Peixe", - "capital": 0, - "ibgeState": 17, - "siafi": 9527, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.0254, - -48.5395 - ] - } - }, - { - "ibge": 1505601, - "name": "Peixe-Boi", - "capital": 0, - "ibgeState": 15, - "siafi": 511, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.19382, - -47.324 - ] - } - }, - { - "ibge": 5106422, - "name": "Peixoto de Azevedo", - "capital": 0, - "ibgeState": 51, - "siafi": 9891, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.2262, - -54.9794 - ] - } - }, - { - "ibge": 4314308, - "name": "Pejuçara", - "capital": 0, - "ibgeState": 43, - "siafi": 8789, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.4283, - -53.6579 - ] - } - }, - { - "ibge": 4314407, - "name": "Pelotas", - "capital": 0, - "ibgeState": 43, - "siafi": 8791, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.7649, - -52.3371 - ] - } - }, - { - "ibge": 2310605, - "name": "Penaforte", - "capital": 0, - "ibgeState": 23, - "siafi": 1513, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.82163, - -39.0707 - ] - } - }, - { - "ibge": 2108306, - "name": "Penalva", - "capital": 0, - "ibgeState": 21, - "siafi": 863, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.27674, - -45.1768 - ] - } - }, - { - "ibge": 3537305, - "name": "Penápolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6847, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4148, - -50.0769 - ] - } - }, - { - "ibge": 2409902, - "name": "Pendências", - "capital": 0, - "ibgeState": 24, - "siafi": 1797, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.2564, - -36.7095 - ] - } - }, - { - "ibge": 2706703, - "name": "Penedo", - "capital": 0, - "ibgeState": 27, - "siafi": 2833, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.2874, - -36.5819 - ] - } - }, - { - "ibge": 4212502, - "name": "Penha", - "capital": 0, - "ibgeState": 42, - "siafi": 8245, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7754, - -48.6465 - ] - } - }, - { - "ibge": 2310704, - "name": "Pentecoste", - "capital": 0, - "ibgeState": 23, - "siafi": 1515, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.79274, - -39.2692 - ] - } - }, - { - "ibge": 3149507, - "name": "Pequeri", - "capital": 0, - "ibgeState": 31, - "siafi": 4989, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8341, - -43.1145 - ] - } - }, - { - "ibge": 3149606, - "name": "Pequi", - "capital": 0, - "ibgeState": 31, - "siafi": 4991, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6284, - -44.6604 - ] - } - }, - { - "ibge": 1716653, - "name": "Pequizeiro", - "capital": 0, - "ibgeState": 17, - "siafi": 9705, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.5932, - -48.9327 - ] - } - }, - { - "ibge": 3149705, - "name": "Perdigão", - "capital": 0, - "ibgeState": 31, - "siafi": 4993, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9411, - -45.078 - ] - } - }, - { - "ibge": 3149804, - "name": "Perdizes", - "capital": 0, - "ibgeState": 31, - "siafi": 4995, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.3434, - -47.2963 - ] - } - }, - { - "ibge": 3149903, - "name": "Perdões", - "capital": 0, - "ibgeState": 31, - "siafi": 4997, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0932, - -45.0896 - ] - } - }, - { - "ibge": 3537404, - "name": "Pereira Barreto", - "capital": 0, - "ibgeState": 35, - "siafi": 6849, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6368, - -51.1123 - ] - } - }, - { - "ibge": 3537503, - "name": "Pereiras", - "capital": 0, - "ibgeState": 35, - "siafi": 6851, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0804, - -47.972 - ] - } - }, - { - "ibge": 2310803, - "name": "Pereiro", - "capital": 0, - "ibgeState": 23, - "siafi": 1517, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.03576, - -38.4624 - ] - } - }, - { - "ibge": 2108405, - "name": "Peri Mirim", - "capital": 0, - "ibgeState": 21, - "siafi": 865, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.57676, - -44.8504 - ] - } - }, - { - "ibge": 3149952, - "name": "Periquito", - "capital": 0, - "ibgeState": 31, - "siafi": 684, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.1573, - -42.2333 - ] - } - }, - { - "ibge": 4212601, - "name": "Peritiba", - "capital": 0, - "ibgeState": 42, - "siafi": 8247, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3754, - -51.9018 - ] - } - }, - { - "ibge": 2108454, - "name": "Peritoró", - "capital": 0, - "ibgeState": 21, - "siafi": 210, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.37459, - -44.3369 - ] - } - }, - { - "ibge": 4118857, - "name": "Perobal", - "capital": 0, - "ibgeState": 41, - "siafi": 868, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8949, - -53.4098 - ] - } - }, - { - "ibge": 4118907, - "name": "Pérola", - "capital": 0, - "ibgeState": 41, - "siafi": 7969, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8039, - -53.6834 - ] - } - }, - { - "ibge": 4119004, - "name": "Pérola d'Oeste", - "capital": 0, - "ibgeState": 41, - "siafi": 7759, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.8278, - -53.7433 - ] - } - }, - { - "ibge": 5216452, - "name": "Perolândia", - "capital": 0, - "ibgeState": 52, - "siafi": 75, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.5258, - -52.065 - ] - } - }, - { - "ibge": 3537602, - "name": "Peruíbe", - "capital": 0, - "ibgeState": 35, - "siafi": 6853, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.312, - -47.0012 - ] - } - }, - { - "ibge": 3150000, - "name": "Pescador", - "capital": 0, - "ibgeState": 31, - "siafi": 4999, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.357, - -41.6006 - ] - } - }, - { - "ibge": 4212650, - "name": "Pescaria Brava", - "capital": 0, - "ibgeState": 42, - "siafi": 1194, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3966, - -48.8864 - ] - } - }, - { - "ibge": 2610905, - "name": "Pesqueira", - "capital": 0, - "ibgeState": 26, - "siafi": 2517, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.35797, - -36.6978 - ] - } - }, - { - "ibge": 2611002, - "name": "Petrolândia", - "capital": 0, - "ibgeState": 26, - "siafi": 2519, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.06863, - -38.3027 - ] - } - }, - { - "ibge": 4212700, - "name": "Petrolândia", - "capital": 0, - "ibgeState": 42, - "siafi": 8249, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5346, - -49.6937 - ] - } - }, - { - "ibge": 2611101, - "name": "Petrolina", - "capital": 0, - "ibgeState": 26, - "siafi": 2521, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.38866, - -40.5027 - ] - } - }, - { - "ibge": 5216809, - "name": "Petrolina de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9531, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0968, - -49.3364 - ] - } - }, - { - "ibge": 3303906, - "name": "Petrópolis", - "capital": 0, - "ibgeState": 33, - "siafi": 5877, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.52, - -43.1926 - ] - } - }, - { - "ibge": 2706802, - "name": "Piaçabuçu", - "capital": 0, - "ibgeState": 27, - "siafi": 2835, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.406, - -36.434 - ] - } - }, - { - "ibge": 3537701, - "name": "Piacatu", - "capital": 0, - "ibgeState": 35, - "siafi": 6855, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5921, - -50.6003 - ] - } - }, - { - "ibge": 2511301, - "name": "Piancó", - "capital": 0, - "ibgeState": 25, - "siafi": 2127, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.19282, - -37.9289 - ] - } - }, - { - "ibge": 2924306, - "name": "Piatã", - "capital": 0, - "ibgeState": 29, - "siafi": 3787, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.1465, - -41.7702 - ] - } - }, - { - "ibge": 3150109, - "name": "Piau", - "capital": 0, - "ibgeState": 31, - "siafi": 5001, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5096, - -43.313 - ] - } - }, - { - "ibge": 4314423, - "name": "Picada Café", - "capital": 0, - "ibgeState": 43, - "siafi": 6021, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4464, - -51.1367 - ] - } - }, - { - "ibge": 1505635, - "name": "Piçarra", - "capital": 0, - "ibgeState": 15, - "siafi": 58, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.43778, - -48.8716 - ] - } - }, - { - "ibge": 2208007, - "name": "Picos", - "capital": 0, - "ibgeState": 22, - "siafi": 1159, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.07721, - -41.467 - ] - } - }, - { - "ibge": 2511400, - "name": "Picuí", - "capital": 0, - "ibgeState": 25, - "siafi": 2129, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.50845, - -36.3497 - ] - } - }, - { - "ibge": 3537800, - "name": "Piedade", - "capital": 0, - "ibgeState": 35, - "siafi": 6857, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7139, - -47.4256 - ] - } - }, - { - "ibge": 3150158, - "name": "Piedade de Caratinga", - "capital": 0, - "ibgeState": 31, - "siafi": 686, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7593, - -42.0756 - ] - } - }, - { - "ibge": 3150208, - "name": "Piedade de Ponte Nova", - "capital": 0, - "ibgeState": 31, - "siafi": 5003, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2438, - -42.7379 - ] - } - }, - { - "ibge": 3150307, - "name": "Piedade do Rio Grande", - "capital": 0, - "ibgeState": 31, - "siafi": 5005, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.469, - -44.1938 - ] - } - }, - { - "ibge": 3150406, - "name": "Piedade dos Gerais", - "capital": 0, - "ibgeState": 31, - "siafi": 5007, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4715, - -44.2243 - ] - } - }, - { - "ibge": 4119103, - "name": "Piên", - "capital": 0, - "ibgeState": 41, - "siafi": 7761, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.0965, - -49.4336 - ] - } - }, - { - "ibge": 2924405, - "name": "Pilão Arcado", - "capital": 0, - "ibgeState": 29, - "siafi": 3789, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.0051, - -42.4936 - ] - } - }, - { - "ibge": 2511509, - "name": "Pilar", - "capital": 0, - "ibgeState": 25, - "siafi": 2131, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.26403, - -35.2523 - ] - } - }, - { - "ibge": 2706901, - "name": "Pilar", - "capital": 0, - "ibgeState": 27, - "siafi": 2837, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.60135, - -35.9543 - ] - } - }, - { - "ibge": 5216908, - "name": "Pilar de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9535, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.7608, - -49.5784 - ] - } - }, - { - "ibge": 3537909, - "name": "Pilar do Sul", - "capital": 0, - "ibgeState": 35, - "siafi": 6859, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8077, - -47.7222 - ] - } - }, - { - "ibge": 2410009, - "name": "Pilões", - "capital": 0, - "ibgeState": 24, - "siafi": 1799, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.26364, - -38.0461 - ] - } - }, - { - "ibge": 2511608, - "name": "Pilões", - "capital": 0, - "ibgeState": 25, - "siafi": 2133, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.86827, - -35.613 - ] - } - }, - { - "ibge": 2511707, - "name": "Pilõezinhos", - "capital": 0, - "ibgeState": 25, - "siafi": 2135, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.84277, - -35.531 - ] - } - }, - { - "ibge": 3150505, - "name": "Pimenta", - "capital": 0, - "ibgeState": 31, - "siafi": 5009, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4827, - -45.8049 - ] - } - }, - { - "ibge": 1100189, - "name": "Pimenta Bueno", - "capital": 0, - "ibgeState": 11, - "siafi": 11, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.672, - -61.198 - ] - } - }, - { - "ibge": 2208106, - "name": "Pimenteiras", - "capital": 0, - "ibgeState": 22, - "siafi": 1161, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.23839, - -41.4113 - ] - } - }, - { - "ibge": 1101468, - "name": "Pimenteiras do Oeste", - "capital": 0, - "ibgeState": 11, - "siafi": 14, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -13.4823, - -61.0471 - ] - } - }, - { - "ibge": 2924504, - "name": "Pindaí", - "capital": 0, - "ibgeState": 29, - "siafi": 3791, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.4921, - -42.686 - ] - } - }, - { - "ibge": 3538006, - "name": "Pindamonhangaba", - "capital": 0, - "ibgeState": 35, - "siafi": 6861, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9246, - -45.4613 - ] - } - }, - { - "ibge": 2108504, - "name": "Pindaré-Mirim", - "capital": 0, - "ibgeState": 21, - "siafi": 867, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.60985, - -45.342 - ] - } - }, - { - "ibge": 2707008, - "name": "Pindoba", - "capital": 0, - "ibgeState": 27, - "siafi": 2839, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.47382, - -36.2918 - ] - } - }, - { - "ibge": 2924603, - "name": "Pindobaçu", - "capital": 0, - "ibgeState": 29, - "siafi": 3793, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7433, - -40.3675 - ] - } - }, - { - "ibge": 3538105, - "name": "Pindorama", - "capital": 0, - "ibgeState": 35, - "siafi": 6863, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1853, - -48.9086 - ] - } - }, - { - "ibge": 1717008, - "name": "Pindorama do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9537, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.1311, - -47.5726 - ] - } - }, - { - "ibge": 2310852, - "name": "Pindoretama", - "capital": 0, - "ibgeState": 23, - "siafi": 1267, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.01584, - -38.3061 - ] - } - }, - { - "ibge": 3150539, - "name": "Pingo-d'Água", - "capital": 0, - "ibgeState": 31, - "siafi": 688, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7287, - -42.4095 - ] - } - }, - { - "ibge": 4119152, - "name": "Pinhais", - "capital": 0, - "ibgeState": 41, - "siafi": 5453, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4429, - -49.1927 - ] - } - }, - { - "ibge": 4314456, - "name": "Pinhal", - "capital": 0, - "ibgeState": 43, - "siafi": 7369, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.508, - -53.2082 - ] - } - }, - { - "ibge": 4314464, - "name": "Pinhal da Serra", - "capital": 0, - "ibgeState": 43, - "siafi": 1158, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.8751, - -51.1673 - ] - } - }, - { - "ibge": 4119251, - "name": "Pinhal de São Bento", - "capital": 0, - "ibgeState": 41, - "siafi": 5495, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.0324, - -53.482 - ] - } - }, - { - "ibge": 4314472, - "name": "Pinhal Grande", - "capital": 0, - "ibgeState": 43, - "siafi": 5787, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.345, - -53.3206 - ] - } - }, - { - "ibge": 4119202, - "name": "Pinhalão", - "capital": 0, - "ibgeState": 41, - "siafi": 7763, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7982, - -50.0536 - ] - } - }, - { - "ibge": 3538204, - "name": "Pinhalzinho", - "capital": 0, - "ibgeState": 35, - "siafi": 6867, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7811, - -46.5897 - ] - } - }, - { - "ibge": 4212908, - "name": "Pinhalzinho", - "capital": 0, - "ibgeState": 42, - "siafi": 8253, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.8495, - -52.9913 - ] - } - }, - { - "ibge": 2805208, - "name": "Pinhão", - "capital": 0, - "ibgeState": 28, - "siafi": 3203, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.5677, - -37.7242 - ] - } - }, - { - "ibge": 4119301, - "name": "Pinhão", - "capital": 0, - "ibgeState": 41, - "siafi": 7765, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.6944, - -51.6536 - ] - } - }, - { - "ibge": 3303955, - "name": "Pinheiral", - "capital": 0, - "ibgeState": 33, - "siafi": 778, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5172, - -44.0022 - ] - } - }, - { - "ibge": 4314498, - "name": "Pinheirinho do Vale", - "capital": 0, - "ibgeState": 43, - "siafi": 5975, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2109, - -53.608 - ] - } - }, - { - "ibge": 2108603, - "name": "Pinheiro", - "capital": 0, - "ibgeState": 21, - "siafi": 869, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.52224, - -45.0788 - ] - } - }, - { - "ibge": 4314506, - "name": "Pinheiro Machado", - "capital": 0, - "ibgeState": 43, - "siafi": 8793, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.5794, - -53.3798 - ] - } - }, - { - "ibge": 4213005, - "name": "Pinheiro Preto", - "capital": 0, - "ibgeState": 42, - "siafi": 8255, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0483, - -51.2243 - ] - } - }, - { - "ibge": 3204104, - "name": "Pinheiros", - "capital": 0, - "ibgeState": 32, - "siafi": 5681, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4141, - -40.2171 - ] - } - }, - { - "ibge": 2924652, - "name": "Pintadas", - "capital": 0, - "ibgeState": 29, - "siafi": 3983, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.8117, - -39.9009 - ] - } - }, - { - "ibge": 4314548, - "name": "Pinto Bandeira", - "capital": 0, - "ibgeState": 43, - "siafi": 1160, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.0975, - -51.4503 - ] - } - }, - { - "ibge": 3150570, - "name": "Pintópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 690, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0572, - -45.1402 - ] - } - }, - { - "ibge": 2208205, - "name": "Pio IX", - "capital": 0, - "ibgeState": 22, - "siafi": 1163, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.83002, - -40.6083 - ] - } - }, - { - "ibge": 2108702, - "name": "Pio XII", - "capital": 0, - "ibgeState": 21, - "siafi": 871, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.89315, - -45.1759 - ] - } - }, - { - "ibge": 3538303, - "name": "Piquerobi", - "capital": 0, - "ibgeState": 35, - "siafi": 6869, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8747, - -51.7282 - ] - } - }, - { - "ibge": 2310902, - "name": "Piquet Carneiro", - "capital": 0, - "ibgeState": 23, - "siafi": 1519, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.80025, - -39.417 - ] - } - }, - { - "ibge": 3538501, - "name": "Piquete", - "capital": 0, - "ibgeState": 35, - "siafi": 6871, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6069, - -45.1869 - ] - } - }, - { - "ibge": 3538600, - "name": "Piracaia", - "capital": 0, - "ibgeState": 35, - "siafi": 6873, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0525, - -46.3594 - ] - } - }, - { - "ibge": 5217104, - "name": "Piracanjuba", - "capital": 0, - "ibgeState": 52, - "siafi": 9539, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.302, - -49.017 - ] - } - }, - { - "ibge": 3150604, - "name": "Piracema", - "capital": 0, - "ibgeState": 31, - "siafi": 5011, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5089, - -44.4783 - ] - } - }, - { - "ibge": 3538709, - "name": "Piracicaba", - "capital": 0, - "ibgeState": 35, - "siafi": 6875, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7338, - -47.6476 - ] - } - }, - { - "ibge": 2208304, - "name": "Piracuruca", - "capital": 0, - "ibgeState": 22, - "siafi": 1165, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.93335, - -41.7088 - ] - } - }, - { - "ibge": 3304003, - "name": "Piraí", - "capital": 0, - "ibgeState": 33, - "siafi": 5879, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6215, - -43.9081 - ] - } - }, - { - "ibge": 2924678, - "name": "Piraí do Norte", - "capital": 0, - "ibgeState": 29, - "siafi": 3019, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.759, - -39.3836 - ] - } - }, - { - "ibge": 4119400, - "name": "Piraí do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 7767, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.5306, - -49.9433 - ] - } - }, - { - "ibge": 3538808, - "name": "Piraju", - "capital": 0, - "ibgeState": 35, - "siafi": 6877, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1981, - -49.3803 - ] - } - }, - { - "ibge": 3150703, - "name": "Pirajuba", - "capital": 0, - "ibgeState": 31, - "siafi": 5013, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9092, - -48.7027 - ] - } - }, - { - "ibge": 3538907, - "name": "Pirajuí", - "capital": 0, - "ibgeState": 35, - "siafi": 6879, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.999, - -49.4608 - ] - } - }, - { - "ibge": 2805307, - "name": "Pirambu", - "capital": 0, - "ibgeState": 28, - "siafi": 3205, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7215, - -36.8544 - ] - } - }, - { - "ibge": 3150802, - "name": "Piranga", - "capital": 0, - "ibgeState": 31, - "siafi": 5015, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6834, - -43.2967 - ] - } - }, - { - "ibge": 3539004, - "name": "Pirangi", - "capital": 0, - "ibgeState": 35, - "siafi": 6881, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0886, - -48.6607 - ] - } - }, - { - "ibge": 3150901, - "name": "Piranguçu", - "capital": 0, - "ibgeState": 31, - "siafi": 5017, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5249, - -45.4945 - ] - } - }, - { - "ibge": 3151008, - "name": "Piranguinho", - "capital": 0, - "ibgeState": 31, - "siafi": 5019, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.395, - -45.5324 - ] - } - }, - { - "ibge": 2707107, - "name": "Piranhas", - "capital": 0, - "ibgeState": 27, - "siafi": 2841, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.624, - -37.757 - ] - } - }, - { - "ibge": 5217203, - "name": "Piranhas", - "capital": 0, - "ibgeState": 52, - "siafi": 9541, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.4258, - -51.8235 - ] - } - }, - { - "ibge": 2108801, - "name": "Pirapemas", - "capital": 0, - "ibgeState": 21, - "siafi": 873, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.72041, - -44.2216 - ] - } - }, - { - "ibge": 3151107, - "name": "Pirapetinga", - "capital": 0, - "ibgeState": 31, - "siafi": 5021, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6554, - -42.3434 - ] - } - }, - { - "ibge": 4314555, - "name": "Pirapó", - "capital": 0, - "ibgeState": 43, - "siafi": 7367, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.0439, - -55.2001 - ] - } - }, - { - "ibge": 3151206, - "name": "Pirapora", - "capital": 0, - "ibgeState": 31, - "siafi": 5023, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.3392, - -44.934 - ] - } - }, - { - "ibge": 3539103, - "name": "Pirapora do Bom Jesus", - "capital": 0, - "ibgeState": 35, - "siafi": 6883, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3965, - -46.9991 - ] - } - }, - { - "ibge": 3539202, - "name": "Pirapozinho", - "capital": 0, - "ibgeState": 35, - "siafi": 6885, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2711, - -51.4976 - ] - } - }, - { - "ibge": 4119509, - "name": "Piraquara", - "capital": 0, - "ibgeState": 41, - "siafi": 7769, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4422, - -49.0624 - ] - } - }, - { - "ibge": 1717206, - "name": "Piraquê", - "capital": 0, - "ibgeState": 17, - "siafi": 355, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.77302, - -48.2958 - ] - } - }, - { - "ibge": 3539301, - "name": "Pirassununga", - "capital": 0, - "ibgeState": 35, - "siafi": 6887, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.996, - -47.4257 - ] - } - }, - { - "ibge": 4314605, - "name": "Piratini", - "capital": 0, - "ibgeState": 43, - "siafi": 8795, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.4473, - -53.0973 - ] - } - }, - { - "ibge": 3539400, - "name": "Piratininga", - "capital": 0, - "ibgeState": 35, - "siafi": 6889, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4142, - -49.1339 - ] - } - }, - { - "ibge": 4213104, - "name": "Piratuba", - "capital": 0, - "ibgeState": 42, - "siafi": 8257, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4242, - -51.7668 - ] - } - }, - { - "ibge": 3151305, - "name": "Piraúba", - "capital": 0, - "ibgeState": 31, - "siafi": 5025, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2825, - -43.0172 - ] - } - }, - { - "ibge": 5217302, - "name": "Pirenópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9543, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.8507, - -48.9584 - ] - } - }, - { - "ibge": 5217401, - "name": "Pires do Rio", - "capital": 0, - "ibgeState": 52, - "siafi": 9545, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.3019, - -48.2768 - ] - } - }, - { - "ibge": 2310951, - "name": "Pires Ferreira", - "capital": 0, - "ibgeState": 23, - "siafi": 1269, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.23922, - -40.6442 - ] - } - }, - { - "ibge": 2924702, - "name": "Piripá", - "capital": 0, - "ibgeState": 29, - "siafi": 3795, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.9444, - -41.7168 - ] - } - }, - { - "ibge": 2208403, - "name": "Piripiri", - "capital": 0, - "ibgeState": 22, - "siafi": 1167, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.27157, - -41.7716 - ] - } - }, - { - "ibge": 2924801, - "name": "Piritiba", - "capital": 0, - "ibgeState": 29, - "siafi": 3797, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.73, - -40.5587 - ] - } - }, - { - "ibge": 2511806, - "name": "Pirpirituba", - "capital": 0, - "ibgeState": 25, - "siafi": 2137, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.77922, - -35.4906 - ] - } - }, - { - "ibge": 4119608, - "name": "Pitanga", - "capital": 0, - "ibgeState": 41, - "siafi": 7771, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.7588, - -51.7596 - ] - } - }, - { - "ibge": 3539509, - "name": "Pitangueiras", - "capital": 0, - "ibgeState": 35, - "siafi": 6891, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0132, - -48.221 - ] - } - }, - { - "ibge": 4119657, - "name": "Pitangueiras", - "capital": 0, - "ibgeState": 41, - "siafi": 5461, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2281, - -51.5873 - ] - } - }, - { - "ibge": 3151404, - "name": "Pitangui", - "capital": 0, - "ibgeState": 31, - "siafi": 5027, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6741, - -44.8964 - ] - } - }, - { - "ibge": 2511905, - "name": "Pitimbu", - "capital": 0, - "ibgeState": 25, - "siafi": 2139, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.4664, - -34.8151 - ] - } - }, - { - "ibge": 1717503, - "name": "Pium", - "capital": 0, - "ibgeState": 17, - "siafi": 9547, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.442, - -49.1876 - ] - } - }, - { - "ibge": 3204203, - "name": "Piúma", - "capital": 0, - "ibgeState": 32, - "siafi": 5683, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8334, - -40.7268 - ] - } - }, - { - "ibge": 3151503, - "name": "Piumhi", - "capital": 0, - "ibgeState": 31, - "siafi": 5029, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4762, - -45.9589 - ] - } - }, - { - "ibge": 1505650, - "name": "Placas", - "capital": 0, - "ibgeState": 15, - "siafi": 60, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.86813, - -54.2124 - ] - } - }, - { - "ibge": 1200385, - "name": "Plácido de Castro", - "capital": 0, - "ibgeState": 12, - "siafi": 151, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -10.2806, - -67.1371 - ] - } - }, - { - "ibge": 5217609, - "name": "Planaltina", - "capital": 0, - "ibgeState": 52, - "siafi": 9595, - "ddd": 61, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.452, - -47.6089 - ] - } - }, - { - "ibge": 4119707, - "name": "Planaltina do Paraná", - "capital": 0, - "ibgeState": 41, - "siafi": 7773, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0101, - -52.9162 - ] - } - }, - { - "ibge": 2924900, - "name": "Planaltino", - "capital": 0, - "ibgeState": 29, - "siafi": 3799, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.2618, - -40.3695 - ] - } - }, - { - "ibge": 2925006, - "name": "Planalto", - "capital": 0, - "ibgeState": 29, - "siafi": 3801, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.6654, - -40.4718 - ] - } - }, - { - "ibge": 4314704, - "name": "Planalto", - "capital": 0, - "ibgeState": 43, - "siafi": 8797, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3297, - -53.0575 - ] - } - }, - { - "ibge": 3539608, - "name": "Planalto", - "capital": 0, - "ibgeState": 35, - "siafi": 6893, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0342, - -49.933 - ] - } - }, - { - "ibge": 4119806, - "name": "Planalto", - "capital": 0, - "ibgeState": 41, - "siafi": 7775, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.7211, - -53.7642 - ] - } - }, - { - "ibge": 4213153, - "name": "Planalto Alegre", - "capital": 0, - "ibgeState": 42, - "siafi": 5593, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0704, - -52.867 - ] - } - }, - { - "ibge": 5106455, - "name": "Planalto da Serra", - "capital": 0, - "ibgeState": 51, - "siafi": 91, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.6518, - -54.7819 - ] - } - }, - { - "ibge": 3151602, - "name": "Planura", - "capital": 0, - "ibgeState": 31, - "siafi": 5031, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1376, - -48.7 - ] - } - }, - { - "ibge": 3539707, - "name": "Platina", - "capital": 0, - "ibgeState": 35, - "siafi": 6895, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6371, - -50.2104 - ] - } - }, - { - "ibge": 3539806, - "name": "Poá", - "capital": 0, - "ibgeState": 35, - "siafi": 6897, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5333, - -46.3473 - ] - } - }, - { - "ibge": 2611200, - "name": "Poção", - "capital": 0, - "ibgeState": 26, - "siafi": 2523, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.18726, - -36.7111 - ] - } - }, - { - "ibge": 2108900, - "name": "Poção de Pedras", - "capital": 0, - "ibgeState": 21, - "siafi": 875, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.74626, - -44.9432 - ] - } - }, - { - "ibge": 2512002, - "name": "Pocinhos", - "capital": 0, - "ibgeState": 25, - "siafi": 2141, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.06658, - -36.0668 - ] - } - }, - { - "ibge": 2410108, - "name": "Poço Branco", - "capital": 0, - "ibgeState": 24, - "siafi": 1801, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.62233, - -35.6635 - ] - } - }, - { - "ibge": 2512036, - "name": "Poço Dantas", - "capital": 0, - "ibgeState": 25, - "siafi": 496, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.39876, - -38.4909 - ] - } - }, - { - "ibge": 4314753, - "name": "Poço das Antas", - "capital": 0, - "ibgeState": 43, - "siafi": 7365, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4481, - -51.6719 - ] - } - }, - { - "ibge": 2707206, - "name": "Poço das Trincheiras", - "capital": 0, - "ibgeState": 27, - "siafi": 2843, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.30742, - -37.2889 - ] - } - }, - { - "ibge": 2512077, - "name": "Poço de José de Moura", - "capital": 0, - "ibgeState": 25, - "siafi": 498, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.56401, - -38.5111 - ] - } - }, - { - "ibge": 3151701, - "name": "Poço Fundo", - "capital": 0, - "ibgeState": 31, - "siafi": 5033, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.78, - -45.9658 - ] - } - }, - { - "ibge": 2805406, - "name": "Poço Redondo", - "capital": 0, - "ibgeState": 28, - "siafi": 3207, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.80616, - -37.6833 - ] - } - }, - { - "ibge": 2805505, - "name": "Poço Verde", - "capital": 0, - "ibgeState": 28, - "siafi": 3209, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7151, - -38.1813 - ] - } - }, - { - "ibge": 2925105, - "name": "Poções", - "capital": 0, - "ibgeState": 29, - "siafi": 3803, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.5234, - -40.3634 - ] - } - }, - { - "ibge": 5106505, - "name": "Poconé", - "capital": 0, - "ibgeState": 51, - "siafi": 9129, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -16.266, - -56.6261 - ] - } - }, - { - "ibge": 3151800, - "name": "Poços de Caldas", - "capital": 0, - "ibgeState": 31, - "siafi": 5035, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.78, - -46.5692 - ] - } - }, - { - "ibge": 3151909, - "name": "Pocrane", - "capital": 0, - "ibgeState": 31, - "siafi": 5037, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6208, - -41.6334 - ] - } - }, - { - "ibge": 2925204, - "name": "Pojuca", - "capital": 0, - "ibgeState": 29, - "siafi": 3805, - "ddd": 71, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.4303, - -38.3374 - ] - } - }, - { - "ibge": 3539905, - "name": "Poloni", - "capital": 0, - "ibgeState": 35, - "siafi": 6899, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7829, - -49.8258 - ] - } - }, - { - "ibge": 2512101, - "name": "Pombal", - "capital": 0, - "ibgeState": 25, - "siafi": 2143, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.76606, - -37.8003 - ] - } - }, - { - "ibge": 2611309, - "name": "Pombos", - "capital": 0, - "ibgeState": 26, - "siafi": 2525, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.13982, - -35.3967 - ] - } - }, - { - "ibge": 4213203, - "name": "Pomerode", - "capital": 0, - "ibgeState": 42, - "siafi": 8259, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7384, - -49.1785 - ] - } - }, - { - "ibge": 3540002, - "name": "Pompéia", - "capital": 0, - "ibgeState": 35, - "siafi": 6901, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.107, - -50.176 - ] - } - }, - { - "ibge": 3152006, - "name": "Pompéu", - "capital": 0, - "ibgeState": 31, - "siafi": 5039, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2257, - -45.0141 - ] - } - }, - { - "ibge": 3540101, - "name": "Pongaí", - "capital": 0, - "ibgeState": 35, - "siafi": 6903, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7396, - -49.3604 - ] - } - }, - { - "ibge": 1505700, - "name": "Ponta de Pedras", - "capital": 0, - "ibgeState": 15, - "siafi": 513, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.39587, - -48.8661 - ] - } - }, - { - "ibge": 4119905, - "name": "Ponta Grossa", - "capital": 0, - "ibgeState": 41, - "siafi": 7777, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.0916, - -50.1668 - ] - } - }, - { - "ibge": 5006606, - "name": "Ponta Porã", - "capital": 0, - "ibgeState": 50, - "siafi": 9131, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.5296, - -55.7203 - ] - } - }, - { - "ibge": 3540200, - "name": "Pontal", - "capital": 0, - "ibgeState": 35, - "siafi": 6905, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0216, - -48.0423 - ] - } - }, - { - "ibge": 5106653, - "name": "Pontal do Araguaia", - "capital": 0, - "ibgeState": 51, - "siafi": 95, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.9274, - -52.3273 - ] - } - }, - { - "ibge": 4119954, - "name": "Pontal do Paraná", - "capital": 0, - "ibgeState": 41, - "siafi": 870, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.6735, - -48.5111 - ] - } - }, - { - "ibge": 5217708, - "name": "Pontalina", - "capital": 0, - "ibgeState": 52, - "siafi": 9549, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.5225, - -49.4489 - ] - } - }, - { - "ibge": 3540259, - "name": "Pontalinda", - "capital": 0, - "ibgeState": 35, - "siafi": 2987, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4396, - -50.5258 - ] - } - }, - { - "ibge": 4314779, - "name": "Pontão", - "capital": 0, - "ibgeState": 43, - "siafi": 5939, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.0585, - -52.6791 - ] - } - }, - { - "ibge": 4213302, - "name": "Ponte Alta", - "capital": 0, - "ibgeState": 42, - "siafi": 8261, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4835, - -50.3764 - ] - } - }, - { - "ibge": 1717800, - "name": "Ponte Alta do Bom Jesus", - "capital": 0, - "ibgeState": 17, - "siafi": 9551, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.0853, - -46.4825 - ] - } - }, - { - "ibge": 4213351, - "name": "Ponte Alta do Norte", - "capital": 0, - "ibgeState": 42, - "siafi": 5569, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1591, - -50.4659 - ] - } - }, - { - "ibge": 1717909, - "name": "Ponte Alta do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9553, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7481, - -47.5276 - ] - } - }, - { - "ibge": 5106703, - "name": "Ponte Branca", - "capital": 0, - "ibgeState": 51, - "siafi": 9133, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -16.7584, - -52.8369 - ] - } - }, - { - "ibge": 3152105, - "name": "Ponte Nova", - "capital": 0, - "ibgeState": 31, - "siafi": 5041, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4111, - -42.8978 - ] - } - }, - { - "ibge": 4314787, - "name": "Ponte Preta", - "capital": 0, - "ibgeState": 43, - "siafi": 5967, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6587, - -52.4848 - ] - } - }, - { - "ibge": 4213401, - "name": "Ponte Serrada", - "capital": 0, - "ibgeState": 42, - "siafi": 8263, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.8733, - -52.0112 - ] - } - }, - { - "ibge": 5106752, - "name": "Pontes e Lacerda", - "capital": 0, - "ibgeState": 51, - "siafi": 8999, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.2219, - -59.3435 - ] - } - }, - { - "ibge": 3540309, - "name": "Pontes Gestal", - "capital": 0, - "ibgeState": 35, - "siafi": 6907, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1727, - -49.7064 - ] - } - }, - { - "ibge": 3204252, - "name": "Ponto Belo", - "capital": 0, - "ibgeState": 32, - "siafi": 762, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.1253, - -40.5458 - ] - } - }, - { - "ibge": 3152131, - "name": "Ponto Chique", - "capital": 0, - "ibgeState": 31, - "siafi": 692, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.6282, - -45.0588 - ] - } - }, - { - "ibge": 3152170, - "name": "Ponto dos Volantes", - "capital": 0, - "ibgeState": 31, - "siafi": 694, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.7473, - -41.5025 - ] - } - }, - { - "ibge": 2925253, - "name": "Ponto Novo", - "capital": 0, - "ibgeState": 29, - "siafi": 3021, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.8653, - -40.1311 - ] - } - }, - { - "ibge": 3540408, - "name": "Populina", - "capital": 0, - "ibgeState": 35, - "siafi": 6909, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9453, - -50.538 - ] - } - }, - { - "ibge": 2311009, - "name": "Poranga", - "capital": 0, - "ibgeState": 23, - "siafi": 1521, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.74672, - -40.9205 - ] - } - }, - { - "ibge": 3540507, - "name": "Porangaba", - "capital": 0, - "ibgeState": 35, - "siafi": 6911, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1761, - -48.1195 - ] - } - }, - { - "ibge": 5218003, - "name": "Porangatu", - "capital": 0, - "ibgeState": 52, - "siafi": 9555, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.4391, - -49.1503 - ] - } - }, - { - "ibge": 3304102, - "name": "Porciúncula", - "capital": 0, - "ibgeState": 33, - "siafi": 5881, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9632, - -42.0465 - ] - } - }, - { - "ibge": 4120002, - "name": "Porecatu", - "capital": 0, - "ibgeState": 41, - "siafi": 7779, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7537, - -51.3795 - ] - } - }, - { - "ibge": 2410207, - "name": "Portalegre", - "capital": 0, - "ibgeState": 24, - "siafi": 1803, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.02064, - -37.9865 - ] - } - }, - { - "ibge": 4314803, - "name": "Portão", - "capital": 0, - "ibgeState": 43, - "siafi": 8799, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.7015, - -51.2429 - ] - } - }, - { - "ibge": 5218052, - "name": "Porteirão", - "capital": 0, - "ibgeState": 52, - "siafi": 1060, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.8143, - -50.1653 - ] - } - }, - { - "ibge": 2311108, - "name": "Porteiras", - "capital": 0, - "ibgeState": 23, - "siafi": 1523, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.52265, - -39.114 - ] - } - }, - { - "ibge": 3152204, - "name": "Porteirinha", - "capital": 0, - "ibgeState": 31, - "siafi": 5043, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.7404, - -43.0281 - ] - } - }, - { - "ibge": 1505809, - "name": "Portel", - "capital": 0, - "ibgeState": 15, - "siafi": 515, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.93639, - -50.8194 - ] - } - }, - { - "ibge": 5218102, - "name": "Portelândia", - "capital": 0, - "ibgeState": 52, - "siafi": 9557, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.3554, - -52.6799 - ] - } - }, - { - "ibge": 2208502, - "name": "Porto", - "capital": 0, - "ibgeState": 22, - "siafi": 1169, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.88815, - -42.6998 - ] - } - }, - { - "ibge": 1200807, - "name": "Porto Acre", - "capital": 0, - "ibgeState": 12, - "siafi": 649, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -9.58138, - -67.5478 - ] - } - }, - { - "ibge": 4314902, - "name": "Porto Alegre", - "capital": 1, - "ibgeState": 43, - "siafi": 8801, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.0318, - -51.2065 - ] - } - }, - { - "ibge": 5106778, - "name": "Porto Alegre do Norte", - "capital": 0, - "ibgeState": 51, - "siafi": 9895, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.8761, - -51.6357 - ] - } - }, - { - "ibge": 2208551, - "name": "Porto Alegre do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 372, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.96423, - -44.1837 - ] - } - }, - { - "ibge": 1718006, - "name": "Porto Alegre do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9723, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.618, - -47.0621 - ] - } - }, - { - "ibge": 4120101, - "name": "Porto Amazonas", - "capital": 0, - "ibgeState": 41, - "siafi": 7781, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.54, - -49.8946 - ] - } - }, - { - "ibge": 4120150, - "name": "Porto Barreiro", - "capital": 0, - "ibgeState": 41, - "siafi": 872, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.5477, - -52.4067 - ] - } - }, - { - "ibge": 4213500, - "name": "Porto Belo", - "capital": 0, - "ibgeState": 42, - "siafi": 8265, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1586, - -48.5469 - ] - } - }, - { - "ibge": 2707305, - "name": "Porto Calvo", - "capital": 0, - "ibgeState": 27, - "siafi": 2845, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.05195, - -35.3987 - ] - } - }, - { - "ibge": 2805604, - "name": "Porto da Folha", - "capital": 0, - "ibgeState": 28, - "siafi": 3211, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.91626, - -37.2842 - ] - } - }, - { - "ibge": 1505908, - "name": "Porto de Moz", - "capital": 0, - "ibgeState": 15, - "siafi": 517, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.74691, - -52.2361 - ] - } - }, - { - "ibge": 2707404, - "name": "Porto de Pedras", - "capital": 0, - "ibgeState": 27, - "siafi": 2847, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.16006, - -35.3049 - ] - } - }, - { - "ibge": 2410256, - "name": "Porto do Mangue", - "capital": 0, - "ibgeState": 24, - "siafi": 426, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.05441, - -36.7887 - ] - } - }, - { - "ibge": 5106802, - "name": "Porto dos Gaúchos", - "capital": 0, - "ibgeState": 51, - "siafi": 9135, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.533, - -57.4132 - ] - } - }, - { - "ibge": 5106828, - "name": "Porto Esperidião", - "capital": 0, - "ibgeState": 51, - "siafi": 9875, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.857, - -58.4619 - ] - } - }, - { - "ibge": 5106851, - "name": "Porto Estrela", - "capital": 0, - "ibgeState": 51, - "siafi": 101, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.3235, - -57.2204 - ] - } - }, - { - "ibge": 3540606, - "name": "Porto Feliz", - "capital": 0, - "ibgeState": 35, - "siafi": 6913, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2093, - -47.5251 - ] - } - }, - { - "ibge": 3540705, - "name": "Porto Ferreira", - "capital": 0, - "ibgeState": 35, - "siafi": 6915, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8498, - -47.487 - ] - } - }, - { - "ibge": 3152303, - "name": "Porto Firme", - "capital": 0, - "ibgeState": 31, - "siafi": 5045, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6642, - -43.0834 - ] - } - }, - { - "ibge": 2109007, - "name": "Porto Franco", - "capital": 0, - "ibgeState": 21, - "siafi": 877, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.34149, - -47.3962 - ] - } - }, - { - "ibge": 1600535, - "name": "Porto Grande", - "capital": 0, - "ibgeState": 16, - "siafi": 671, - "ddd": 96, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - 0.71243, - -51.4155 - ] - } - }, - { - "ibge": 4315008, - "name": "Porto Lucena", - "capital": 0, - "ibgeState": 43, - "siafi": 8803, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.8569, - -55.01 - ] - } - }, - { - "ibge": 4315057, - "name": "Porto Mauá", - "capital": 0, - "ibgeState": 43, - "siafi": 6065, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5796, - -54.6657 - ] - } - }, - { - "ibge": 5006903, - "name": "Porto Murtinho", - "capital": 0, - "ibgeState": 50, - "siafi": 9137, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -21.6981, - -57.8836 - ] - } - }, - { - "ibge": 1718204, - "name": "Porto Nacional", - "capital": 0, - "ibgeState": 17, - "siafi": 9559, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7027, - -48.408 - ] - } - }, - { - "ibge": 3304110, - "name": "Porto Real", - "capital": 0, - "ibgeState": 33, - "siafi": 780, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4175, - -44.2952 - ] - } - }, - { - "ibge": 2707503, - "name": "Porto Real do Colégio", - "capital": 0, - "ibgeState": 27, - "siafi": 2849, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.1849, - -36.8376 - ] - } - }, - { - "ibge": 4120200, - "name": "Porto Rico", - "capital": 0, - "ibgeState": 41, - "siafi": 7783, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7747, - -53.2677 - ] - } - }, - { - "ibge": 2109056, - "name": "Porto Rico do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 212, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.85925, - -44.5842 - ] - } - }, - { - "ibge": 2925303, - "name": "Porto Seguro", - "capital": 0, - "ibgeState": 29, - "siafi": 3807, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.4435, - -39.0643 - ] - } - }, - { - "ibge": 4213609, - "name": "Porto União", - "capital": 0, - "ibgeState": 42, - "siafi": 8267, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.2451, - -51.0759 - ] - } - }, - { - "ibge": 1100205, - "name": "Porto Velho", - "capital": 1, - "ibgeState": 11, - "siafi": 3, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -8.76077, - -63.8999 - ] - } - }, - { - "ibge": 4315073, - "name": "Porto Vera Cruz", - "capital": 0, - "ibgeState": 43, - "siafi": 6067, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7405, - -54.8994 - ] - } - }, - { - "ibge": 4120309, - "name": "Porto Vitória", - "capital": 0, - "ibgeState": 41, - "siafi": 7785, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.1674, - -51.231 - ] - } - }, - { - "ibge": 1200393, - "name": "Porto Walter", - "capital": 0, - "ibgeState": 12, - "siafi": 657, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -8.26323, - -72.7537 - ] - } - }, - { - "ibge": 4315107, - "name": "Porto Xavier", - "capital": 0, - "ibgeState": 43, - "siafi": 8805, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9082, - -55.1379 - ] - } - }, - { - "ibge": 5218300, - "name": "Posse", - "capital": 0, - "ibgeState": 52, - "siafi": 9561, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.0859, - -46.3704 - ] - } - }, - { - "ibge": 3152402, - "name": "Poté", - "capital": 0, - "ibgeState": 31, - "siafi": 5047, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.8077, - -41.786 - ] - } - }, - { - "ibge": 2311207, - "name": "Potengi", - "capital": 0, - "ibgeState": 23, - "siafi": 1525, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.09154, - -40.0233 - ] - } - }, - { - "ibge": 3540754, - "name": "Potim", - "capital": 0, - "ibgeState": 35, - "siafi": 2993, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8343, - -45.2552 - ] - } - }, - { - "ibge": 2925402, - "name": "Potiraguá", - "capital": 0, - "ibgeState": 29, - "siafi": 3809, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.5943, - -39.8638 - ] - } - }, - { - "ibge": 3540804, - "name": "Potirendaba", - "capital": 0, - "ibgeState": 35, - "siafi": 6917, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0428, - -49.3815 - ] - } - }, - { - "ibge": 2311231, - "name": "Potiretama", - "capital": 0, - "ibgeState": 23, - "siafi": 1271, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.71287, - -38.1578 - ] - } - }, - { - "ibge": 3152501, - "name": "Pouso Alegre", - "capital": 0, - "ibgeState": 31, - "siafi": 5049, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2266, - -45.9389 - ] - } - }, - { - "ibge": 3152600, - "name": "Pouso Alto", - "capital": 0, - "ibgeState": 31, - "siafi": 5051, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1964, - -44.9748 - ] - } - }, - { - "ibge": 4315131, - "name": "Pouso Novo", - "capital": 0, - "ibgeState": 43, - "siafi": 7363, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.1738, - -52.2136 - ] - } - }, - { - "ibge": 4213708, - "name": "Pouso Redondo", - "capital": 0, - "ibgeState": 42, - "siafi": 8269, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2567, - -49.9301 - ] - } - }, - { - "ibge": 5107008, - "name": "Poxoréu", - "capital": 0, - "ibgeState": 51, - "siafi": 9139, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.8299, - -54.4208 - ] - } - }, - { - "ibge": 3540853, - "name": "Pracinha", - "capital": 0, - "ibgeState": 35, - "siafi": 812, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8496, - -51.0868 - ] - } - }, - { - "ibge": 1600550, - "name": "Pracuúba", - "capital": 0, - "ibgeState": 16, - "siafi": 673, - "ddd": 96, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - 1.74543, - -50.7892 - ] - } - }, - { - "ibge": 2925501, - "name": "Prado", - "capital": 0, - "ibgeState": 29, - "siafi": 3811, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.3364, - -39.2227 - ] - } - }, - { - "ibge": 4120333, - "name": "Prado Ferreira", - "capital": 0, - "ibgeState": 41, - "siafi": 874, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0357, - -51.4429 - ] - } - }, - { - "ibge": 3540903, - "name": "Pradópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6919, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3626, - -48.0679 - ] - } - }, - { - "ibge": 3152709, - "name": "Prados", - "capital": 0, - "ibgeState": 31, - "siafi": 5053, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0597, - -44.0778 - ] - } - }, - { - "ibge": 3541000, - "name": "Praia Grande", - "capital": 0, - "ibgeState": 35, - "siafi": 6921, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.0084, - -46.4121 - ] - } - }, - { - "ibge": 4213807, - "name": "Praia Grande", - "capital": 0, - "ibgeState": 42, - "siafi": 8271, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.1918, - -49.9525 - ] - } - }, - { - "ibge": 1718303, - "name": "Praia Norte", - "capital": 0, - "ibgeState": 17, - "siafi": 9725, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.39281, - -47.8111 - ] - } - }, - { - "ibge": 1506005, - "name": "Prainha", - "capital": 0, - "ibgeState": 15, - "siafi": 519, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.798, - -53.4779 - ] - } - }, - { - "ibge": 4120358, - "name": "Pranchita", - "capital": 0, - "ibgeState": 41, - "siafi": 7991, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.0209, - -53.7397 - ] - } - }, - { - "ibge": 3152808, - "name": "Prata", - "capital": 0, - "ibgeState": 31, - "siafi": 5055, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.3086, - -48.9276 - ] - } - }, - { - "ibge": 2512200, - "name": "Prata", - "capital": 0, - "ibgeState": 25, - "siafi": 2145, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.68826, - -37.0801 - ] - } - }, - { - "ibge": 2208601, - "name": "Prata do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1171, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.67265, - -42.2046 - ] - } - }, - { - "ibge": 3541059, - "name": "Pratânia", - "capital": 0, - "ibgeState": 35, - "siafi": 814, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8112, - -48.6636 - ] - } - }, - { - "ibge": 3152907, - "name": "Pratápolis", - "capital": 0, - "ibgeState": 31, - "siafi": 5057, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7411, - -46.8624 - ] - } - }, - { - "ibge": 3153004, - "name": "Pratinha", - "capital": 0, - "ibgeState": 31, - "siafi": 5059, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.739, - -46.3755 - ] - } - }, - { - "ibge": 3541109, - "name": "Presidente Alves", - "capital": 0, - "ibgeState": 35, - "siafi": 6923, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0999, - -49.4381 - ] - } - }, - { - "ibge": 3541208, - "name": "Presidente Bernardes", - "capital": 0, - "ibgeState": 35, - "siafi": 6925, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0082, - -51.5565 - ] - } - }, - { - "ibge": 3153103, - "name": "Presidente Bernardes", - "capital": 0, - "ibgeState": 31, - "siafi": 5061, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7656, - -43.1895 - ] - } - }, - { - "ibge": 4213906, - "name": "Presidente Castello Branco", - "capital": 0, - "ibgeState": 42, - "siafi": 8273, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2218, - -51.8089 - ] - } - }, - { - "ibge": 4120408, - "name": "Presidente Castelo Branco", - "capital": 0, - "ibgeState": 41, - "siafi": 7787, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2782, - -52.1536 - ] - } - }, - { - "ibge": 2925600, - "name": "Presidente Dutra", - "capital": 0, - "ibgeState": 29, - "siafi": 3813, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.2923, - -41.9843 - ] - } - }, - { - "ibge": 2109106, - "name": "Presidente Dutra", - "capital": 0, - "ibgeState": 21, - "siafi": 879, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.2898, - -44.495 - ] - } - }, - { - "ibge": 3541307, - "name": "Presidente Epitácio", - "capital": 0, - "ibgeState": 35, - "siafi": 6927, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7651, - -52.1111 - ] - } - }, - { - "ibge": 1303536, - "name": "Presidente Figueiredo", - "capital": 0, - "ibgeState": 13, - "siafi": 9841, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -2.02981, - -60.0234 - ] - } - }, - { - "ibge": 4214003, - "name": "Presidente Getúlio", - "capital": 0, - "ibgeState": 42, - "siafi": 8275, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0474, - -49.6246 - ] - } - }, - { - "ibge": 2925709, - "name": "Presidente Jânio Quadros", - "capital": 0, - "ibgeState": 29, - "siafi": 3815, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.6885, - -41.6798 - ] - } - }, - { - "ibge": 3153202, - "name": "Presidente Juscelino", - "capital": 0, - "ibgeState": 31, - "siafi": 5063, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.6401, - -44.06 - ] - } - }, - { - "ibge": 2109205, - "name": "Presidente Juscelino", - "capital": 0, - "ibgeState": 21, - "siafi": 881, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.91872, - -44.0715 - ] - } - }, - { - "ibge": 1718402, - "name": "Presidente Kennedy", - "capital": 0, - "ibgeState": 17, - "siafi": 9629, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.5406, - -48.5062 - ] - } - }, - { - "ibge": 3204302, - "name": "Presidente Kennedy", - "capital": 0, - "ibgeState": 32, - "siafi": 5685, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0964, - -41.0468 - ] - } - }, - { - "ibge": 3153301, - "name": "Presidente Kubitschek", - "capital": 0, - "ibgeState": 31, - "siafi": 5065, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.6193, - -43.5628 - ] - } - }, - { - "ibge": 4315149, - "name": "Presidente Lucena", - "capital": 0, - "ibgeState": 43, - "siafi": 6023, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5175, - -51.1798 - ] - } - }, - { - "ibge": 1100254, - "name": "Presidente Médici", - "capital": 0, - "ibgeState": 11, - "siafi": 19, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.169, - -61.8986 - ] - } - }, - { - "ibge": 2109239, - "name": "Presidente Médici", - "capital": 0, - "ibgeState": 21, - "siafi": 214, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.38991, - -45.82 - ] - } - }, - { - "ibge": 4214102, - "name": "Presidente Nereu", - "capital": 0, - "ibgeState": 42, - "siafi": 8277, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2768, - -49.3889 - ] - } - }, - { - "ibge": 3153400, - "name": "Presidente Olegário", - "capital": 0, - "ibgeState": 31, - "siafi": 5067, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4096, - -46.4165 - ] - } - }, - { - "ibge": 3541406, - "name": "Presidente Prudente", - "capital": 0, - "ibgeState": 35, - "siafi": 6929, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1207, - -51.3925 - ] - } - }, - { - "ibge": 2109270, - "name": "Presidente Sarney", - "capital": 0, - "ibgeState": 21, - "siafi": 216, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.58799, - -45.3595 - ] - } - }, - { - "ibge": 2925758, - "name": "Presidente Tancredo Neves", - "capital": 0, - "ibgeState": 29, - "siafi": 3023, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.4471, - -39.4203 - ] - } - }, - { - "ibge": 2109304, - "name": "Presidente Vargas", - "capital": 0, - "ibgeState": 21, - "siafi": 883, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.40787, - -44.0234 - ] - } - }, - { - "ibge": 3541505, - "name": "Presidente Venceslau", - "capital": 0, - "ibgeState": 35, - "siafi": 6931, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8732, - -51.8447 - ] - } - }, - { - "ibge": 2611408, - "name": "Primavera", - "capital": 0, - "ibgeState": 26, - "siafi": 2527, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.32999, - -35.3544 - ] - } - }, - { - "ibge": 1506104, - "name": "Primavera", - "capital": 0, - "ibgeState": 15, - "siafi": 521, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.945439, - -47.1253 - ] - } - }, - { - "ibge": 1101476, - "name": "Primavera de Rondônia", - "capital": 0, - "ibgeState": 11, - "siafi": 16, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.8295, - -61.3153 - ] - } - }, - { - "ibge": 5107040, - "name": "Primavera do Leste", - "capital": 0, - "ibgeState": 51, - "siafi": 9871, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.544, - -54.2811 - ] - } - }, - { - "ibge": 2109403, - "name": "Primeira Cruz", - "capital": 0, - "ibgeState": 21, - "siafi": 885, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.50568, - -43.4232 - ] - } - }, - { - "ibge": 4120507, - "name": "Primeiro de Maio", - "capital": 0, - "ibgeState": 41, - "siafi": 7789, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8517, - -51.0293 - ] - } - }, - { - "ibge": 4214151, - "name": "Princesa", - "capital": 0, - "ibgeState": 42, - "siafi": 934, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.4441, - -53.5994 - ] - } - }, - { - "ibge": 2512309, - "name": "Princesa Isabel", - "capital": 0, - "ibgeState": 25, - "siafi": 2147, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.73175, - -37.9886 - ] - } - }, - { - "ibge": 5218391, - "name": "Professor Jamil", - "capital": 0, - "ibgeState": 52, - "siafi": 51, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.2497, - -49.244 - ] - } - }, - { - "ibge": 4315156, - "name": "Progresso", - "capital": 0, - "ibgeState": 43, - "siafi": 7361, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.2441, - -52.3197 - ] - } - }, - { - "ibge": 3541604, - "name": "Promissão", - "capital": 0, - "ibgeState": 35, - "siafi": 6933, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5356, - -49.8599 - ] - } - }, - { - "ibge": 2805703, - "name": "Propriá", - "capital": 0, - "ibgeState": 28, - "siafi": 3213, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.2138, - -36.8442 - ] - } - }, - { - "ibge": 4315172, - "name": "Protásio Alves", - "capital": 0, - "ibgeState": 43, - "siafi": 7359, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.7572, - -51.4757 - ] - } - }, - { - "ibge": 3153608, - "name": "Prudente de Morais", - "capital": 0, - "ibgeState": 31, - "siafi": 5071, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.4742, - -44.1591 - ] - } - }, - { - "ibge": 4120606, - "name": "Prudentópolis", - "capital": 0, - "ibgeState": 41, - "siafi": 7791, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.2111, - -50.9754 - ] - } - }, - { - "ibge": 1718451, - "name": "Pugmil", - "capital": 0, - "ibgeState": 17, - "siafi": 94, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.424, - -48.8957 - ] - } - }, - { - "ibge": 2410405, - "name": "Pureza", - "capital": 0, - "ibgeState": 24, - "siafi": 1807, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.46393, - -35.5554 - ] - } - }, - { - "ibge": 4315206, - "name": "Putinga", - "capital": 0, - "ibgeState": 43, - "siafi": 8807, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.0045, - -52.1569 - ] - } - }, - { - "ibge": 2512408, - "name": "Puxinanã", - "capital": 0, - "ibgeState": 25, - "siafi": 2149, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.15479, - -35.9543 - ] - } - }, - { - "ibge": 3541653, - "name": "Quadra", - "capital": 0, - "ibgeState": 35, - "siafi": 816, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2993, - -48.0547 - ] - } - }, - { - "ibge": 4315305, - "name": "Quaraí", - "capital": 0, - "ibgeState": 43, - "siafi": 8809, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.384, - -56.4483 - ] - } - }, - { - "ibge": 3153707, - "name": "Quartel Geral", - "capital": 0, - "ibgeState": 31, - "siafi": 5073, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2703, - -45.5569 - ] - } - }, - { - "ibge": 4120655, - "name": "Quarto Centenário", - "capital": 0, - "ibgeState": 41, - "siafi": 876, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.2775, - -53.0759 - ] - } - }, - { - "ibge": 3541703, - "name": "Quatá", - "capital": 0, - "ibgeState": 35, - "siafi": 6935, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2456, - -50.6966 - ] - } - }, - { - "ibge": 4120705, - "name": "Quatiguá", - "capital": 0, - "ibgeState": 41, - "siafi": 7793, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5671, - -49.916 - ] - } - }, - { - "ibge": 1506112, - "name": "Quatipuru", - "capital": 0, - "ibgeState": 15, - "siafi": 62, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.899604, - -47.0134 - ] - } - }, - { - "ibge": 3304128, - "name": "Quatis", - "capital": 0, - "ibgeState": 33, - "siafi": 2923, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4045, - -44.2597 - ] - } - }, - { - "ibge": 4120804, - "name": "Quatro Barras", - "capital": 0, - "ibgeState": 41, - "siafi": 7795, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.3673, - -49.0763 - ] - } - }, - { - "ibge": 4315313, - "name": "Quatro Irmãos", - "capital": 0, - "ibgeState": 43, - "siafi": 1162, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.8257, - -52.4424 - ] - } - }, - { - "ibge": 4120853, - "name": "Quatro Pontes", - "capital": 0, - "ibgeState": 41, - "siafi": 5535, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.5752, - -53.9759 - ] - } - }, - { - "ibge": 2707602, - "name": "Quebrangulo", - "capital": 0, - "ibgeState": 27, - "siafi": 2851, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.32001, - -36.4692 - ] - } - }, - { - "ibge": 4120903, - "name": "Quedas do Iguaçu", - "capital": 0, - "ibgeState": 41, - "siafi": 7955, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4492, - -52.9102 - ] - } - }, - { - "ibge": 2208650, - "name": "Queimada Nova", - "capital": 0, - "ibgeState": 22, - "siafi": 2279, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.57064, - -41.4106 - ] - } - }, - { - "ibge": 2512507, - "name": "Queimadas", - "capital": 0, - "ibgeState": 25, - "siafi": 2151, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.35029, - -35.9031 - ] - } - }, - { - "ibge": 2925808, - "name": "Queimadas", - "capital": 0, - "ibgeState": 29, - "siafi": 3817, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.9736, - -39.6293 - ] - } - }, - { - "ibge": 3304144, - "name": "Queimados", - "capital": 0, - "ibgeState": 33, - "siafi": 2911, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7102, - -43.5518 - ] - } - }, - { - "ibge": 3541802, - "name": "Queiroz", - "capital": 0, - "ibgeState": 35, - "siafi": 6937, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7969, - -50.2415 - ] - } - }, - { - "ibge": 3541901, - "name": "Queluz", - "capital": 0, - "ibgeState": 35, - "siafi": 6939, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5312, - -44.7781 - ] - } - }, - { - "ibge": 3153806, - "name": "Queluzito", - "capital": 0, - "ibgeState": 31, - "siafi": 5075, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7416, - -43.8851 - ] - } - }, - { - "ibge": 5107065, - "name": "Querência", - "capital": 0, - "ibgeState": 51, - "siafi": 97, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.6093, - -52.1821 - ] - } - }, - { - "ibge": 4121000, - "name": "Querência do Norte", - "capital": 0, - "ibgeState": 41, - "siafi": 7797, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0838, - -53.483 - ] - } - }, - { - "ibge": 4315321, - "name": "Quevedos", - "capital": 0, - "ibgeState": 43, - "siafi": 5789, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3504, - -54.0789 - ] - } - }, - { - "ibge": 2925907, - "name": "Quijingue", - "capital": 0, - "ibgeState": 29, - "siafi": 3819, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7505, - -39.2137 - ] - } - }, - { - "ibge": 4214201, - "name": "Quilombo", - "capital": 0, - "ibgeState": 42, - "siafi": 8279, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7264, - -52.724 - ] - } - }, - { - "ibge": 4121109, - "name": "Quinta do Sol", - "capital": 0, - "ibgeState": 41, - "siafi": 7799, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8533, - -52.1309 - ] - } - }, - { - "ibge": 3542008, - "name": "Quintana", - "capital": 0, - "ibgeState": 35, - "siafi": 6941, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0692, - -50.307 - ] - } - }, - { - "ibge": 4315354, - "name": "Quinze de Novembro", - "capital": 0, - "ibgeState": 43, - "siafi": 7357, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.7466, - -53.1011 - ] - } - }, - { - "ibge": 2611507, - "name": "Quipapá", - "capital": 0, - "ibgeState": 26, - "siafi": 2529, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.81175, - -36.0137 - ] - } - }, - { - "ibge": 5218508, - "name": "Quirinópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9563, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4472, - -50.4547 - ] - } - }, - { - "ibge": 3304151, - "name": "Quissamã", - "capital": 0, - "ibgeState": 33, - "siafi": 6007, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1031, - -41.4693 - ] - } - }, - { - "ibge": 4121208, - "name": "Quitandinha", - "capital": 0, - "ibgeState": 41, - "siafi": 7801, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.8734, - -49.4973 - ] - } - }, - { - "ibge": 2311264, - "name": "Quiterianópolis", - "capital": 0, - "ibgeState": 23, - "siafi": 9917, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.8425, - -40.7002 - ] - } - }, - { - "ibge": 2512606, - "name": "Quixabá", - "capital": 0, - "ibgeState": 25, - "siafi": 2153, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.0224, - -37.1458 - ] - } - }, - { - "ibge": 2611533, - "name": "Quixaba", - "capital": 0, - "ibgeState": 26, - "siafi": 2637, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.70734, - -37.8446 - ] - } - }, - { - "ibge": 2925931, - "name": "Quixabeira", - "capital": 0, - "ibgeState": 29, - "siafi": 3025, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.4031, - -40.12 - ] - } - }, - { - "ibge": 2311306, - "name": "Quixadá", - "capital": 0, - "ibgeState": 23, - "siafi": 1527, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.9663, - -39.0155 - ] - } - }, - { - "ibge": 2311355, - "name": "Quixelô", - "capital": 0, - "ibgeState": 23, - "siafi": 9853, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.24637, - -39.2011 - ] - } - }, - { - "ibge": 2311405, - "name": "Quixeramobim", - "capital": 0, - "ibgeState": 23, - "siafi": 1529, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.19067, - -39.2889 - ] - } - }, - { - "ibge": 2311504, - "name": "Quixeré", - "capital": 0, - "ibgeState": 23, - "siafi": 1531, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.07148, - -37.9802 - ] - } - }, - { - "ibge": 2410504, - "name": "Rafael Fernandes", - "capital": 0, - "ibgeState": 24, - "siafi": 1809, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.18987, - -38.2211 - ] - } - }, - { - "ibge": 2410603, - "name": "Rafael Godeiro", - "capital": 0, - "ibgeState": 24, - "siafi": 1893, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.07244, - -37.716 - ] - } - }, - { - "ibge": 2925956, - "name": "Rafael Jambeiro", - "capital": 0, - "ibgeState": 29, - "siafi": 3985, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.4053, - -39.5007 - ] - } - }, - { - "ibge": 3542107, - "name": "Rafard", - "capital": 0, - "ibgeState": 35, - "siafi": 6943, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0105, - -47.5318 - ] - } - }, - { - "ibge": 4121257, - "name": "Ramilândia", - "capital": 0, - "ibgeState": 41, - "siafi": 5527, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.1195, - -54.023 - ] - } - }, - { - "ibge": 3542206, - "name": "Rancharia", - "capital": 0, - "ibgeState": 35, - "siafi": 6945, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2269, - -50.893 - ] - } - }, - { - "ibge": 4121307, - "name": "Rancho Alegre", - "capital": 0, - "ibgeState": 41, - "siafi": 7803, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0676, - -50.9145 - ] - } - }, - { - "ibge": 4121356, - "name": "Rancho Alegre D'Oeste", - "capital": 0, - "ibgeState": 41, - "siafi": 5513, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.3065, - -52.9552 - ] - } - }, - { - "ibge": 4214300, - "name": "Rancho Queimado", - "capital": 0, - "ibgeState": 42, - "siafi": 8281, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6727, - -49.0191 - ] - } - }, - { - "ibge": 2109452, - "name": "Raposa", - "capital": 0, - "ibgeState": 21, - "siafi": 218, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.4254, - -44.0973 - ] - } - }, - { - "ibge": 3153905, - "name": "Raposos", - "capital": 0, - "ibgeState": 31, - "siafi": 5077, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9636, - -43.8079 - ] - } - }, - { - "ibge": 3154002, - "name": "Raul Soares", - "capital": 0, - "ibgeState": 31, - "siafi": 5079, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1061, - -42.4502 - ] - } - }, - { - "ibge": 4121406, - "name": "Realeza", - "capital": 0, - "ibgeState": 41, - "siafi": 7805, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.7711, - -53.526 - ] - } - }, - { - "ibge": 4121505, - "name": "Rebouças", - "capital": 0, - "ibgeState": 41, - "siafi": 7807, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.6232, - -50.6877 - ] - } - }, - { - "ibge": 2611606, - "name": "Recife", - "capital": 1, - "ibgeState": 26, - "siafi": 2531, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.04666, - -34.8771 - ] - } - }, - { - "ibge": 3154101, - "name": "Recreio", - "capital": 0, - "ibgeState": 31, - "siafi": 5081, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5289, - -42.4676 - ] - } - }, - { - "ibge": 1718501, - "name": "Recursolândia", - "capital": 0, - "ibgeState": 17, - "siafi": 357, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.7227, - -47.2421 - ] - } - }, - { - "ibge": 1506138, - "name": "Redenção", - "capital": 0, - "ibgeState": 15, - "siafi": 567, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.02529, - -50.0317 - ] - } - }, - { - "ibge": 2311603, - "name": "Redenção", - "capital": 0, - "ibgeState": 23, - "siafi": 1533, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.21587, - -38.7277 - ] - } - }, - { - "ibge": 3542305, - "name": "Redenção da Serra", - "capital": 0, - "ibgeState": 35, - "siafi": 6947, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2638, - -45.5422 - ] - } - }, - { - "ibge": 2208700, - "name": "Redenção do Gurguéia", - "capital": 0, - "ibgeState": 22, - "siafi": 1173, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.47937, - -44.5811 - ] - } - }, - { - "ibge": 4315404, - "name": "Redentora", - "capital": 0, - "ibgeState": 43, - "siafi": 8811, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.664, - -53.6407 - ] - } - }, - { - "ibge": 3154150, - "name": "Reduto", - "capital": 0, - "ibgeState": 31, - "siafi": 696, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2401, - -41.9848 - ] - } - }, - { - "ibge": 2208809, - "name": "Regeneração", - "capital": 0, - "ibgeState": 22, - "siafi": 1175, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.23115, - -42.6842 - ] - } - }, - { - "ibge": 3542404, - "name": "Regente Feijó", - "capital": 0, - "ibgeState": 35, - "siafi": 6949, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2181, - -51.3055 - ] - } - }, - { - "ibge": 3542503, - "name": "Reginópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6951, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8914, - -49.2268 - ] - } - }, - { - "ibge": 3542602, - "name": "Registro", - "capital": 0, - "ibgeState": 35, - "siafi": 6953, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.4979, - -47.8449 - ] - } - }, - { - "ibge": 4315453, - "name": "Relvado", - "capital": 0, - "ibgeState": 43, - "siafi": 7355, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.1164, - -52.0778 - ] - } - }, - { - "ibge": 2926004, - "name": "Remanso", - "capital": 0, - "ibgeState": 29, - "siafi": 3821, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.61944, - -42.0848 - ] - } - }, - { - "ibge": 2512705, - "name": "Remígio", - "capital": 0, - "ibgeState": 25, - "siafi": 2155, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.94992, - -35.8011 - ] - } - }, - { - "ibge": 4121604, - "name": "Renascença", - "capital": 0, - "ibgeState": 41, - "siafi": 7809, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.1588, - -52.9703 - ] - } - }, - { - "ibge": 2311702, - "name": "Reriutaba", - "capital": 0, - "ibgeState": 23, - "siafi": 1535, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.14191, - -40.5759 - ] - } - }, - { - "ibge": 3304201, - "name": "Resende", - "capital": 0, - "ibgeState": 33, - "siafi": 5883, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4705, - -44.4509 - ] - } - }, - { - "ibge": 3154200, - "name": "Resende Costa", - "capital": 0, - "ibgeState": 31, - "siafi": 5083, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9171, - -44.2407 - ] - } - }, - { - "ibge": 4121703, - "name": "Reserva", - "capital": 0, - "ibgeState": 41, - "siafi": 7811, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.6492, - -50.8466 - ] - } - }, - { - "ibge": 5107156, - "name": "Reserva do Cabaçal", - "capital": 0, - "ibgeState": 51, - "siafi": 9879, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.0743, - -58.4585 - ] - } - }, - { - "ibge": 4121752, - "name": "Reserva do Iguaçu", - "capital": 0, - "ibgeState": 41, - "siafi": 878, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.8319, - -52.0272 - ] - } - }, - { - "ibge": 3154309, - "name": "Resplendor", - "capital": 0, - "ibgeState": 31, - "siafi": 5085, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.3194, - -41.2462 - ] - } - }, - { - "ibge": 3154408, - "name": "Ressaquinha", - "capital": 0, - "ibgeState": 31, - "siafi": 5087, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0642, - -43.7598 - ] - } - }, - { - "ibge": 3542701, - "name": "Restinga", - "capital": 0, - "ibgeState": 35, - "siafi": 6955, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6056, - -47.4833 - ] - } - }, - { - "ibge": 4315503, - "name": "Restinga Sêca", - "capital": 0, - "ibgeState": 43, - "siafi": 8813, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.8188, - -53.3807 - ] - } - }, - { - "ibge": 2926103, - "name": "Retirolândia", - "capital": 0, - "ibgeState": 29, - "siafi": 3823, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.4832, - -39.4234 - ] - } - }, - { - "ibge": 2512747, - "name": "Riachão", - "capital": 0, - "ibgeState": 25, - "siafi": 502, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.54269, - -35.661 - ] - } - }, - { - "ibge": 2109502, - "name": "Riachão", - "capital": 0, - "ibgeState": 21, - "siafi": 887, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.35819, - -46.6225 - ] - } - }, - { - "ibge": 2926202, - "name": "Riachão das Neves", - "capital": 0, - "ibgeState": 29, - "siafi": 3825, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.7508, - -44.9143 - ] - } - }, - { - "ibge": 2512754, - "name": "Riachão do Bacamarte", - "capital": 0, - "ibgeState": 25, - "siafi": 504, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.25347, - -35.6693 - ] - } - }, - { - "ibge": 2805802, - "name": "Riachão do Dantas", - "capital": 0, - "ibgeState": 28, - "siafi": 3215, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.0729, - -37.731 - ] - } - }, - { - "ibge": 2926301, - "name": "Riachão do Jacuípe", - "capital": 0, - "ibgeState": 29, - "siafi": 3827, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.8067, - -39.3818 - ] - } - }, - { - "ibge": 2512762, - "name": "Riachão do Poço", - "capital": 0, - "ibgeState": 25, - "siafi": 506, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.14173, - -35.2914 - ] - } - }, - { - "ibge": 1718550, - "name": "Riachinho", - "capital": 0, - "ibgeState": 17, - "siafi": 193, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.44005, - -48.1371 - ] - } - }, - { - "ibge": 3154457, - "name": "Riachinho", - "capital": 0, - "ibgeState": 31, - "siafi": 2901, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.2258, - -45.9888 - ] - } - }, - { - "ibge": 2410702, - "name": "Riacho da Cruz", - "capital": 0, - "ibgeState": 24, - "siafi": 1811, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.92654, - -37.949 - ] - } - }, - { - "ibge": 2611705, - "name": "Riacho das Almas", - "capital": 0, - "ibgeState": 26, - "siafi": 2533, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.13742, - -35.8648 - ] - } - }, - { - "ibge": 2410801, - "name": "Riacho de Santana", - "capital": 0, - "ibgeState": 24, - "siafi": 1813, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.25139, - -38.3116 - ] - } - }, - { - "ibge": 2926400, - "name": "Riacho de Santana", - "capital": 0, - "ibgeState": 29, - "siafi": 3829, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.6059, - -42.9397 - ] - } - }, - { - "ibge": 2512788, - "name": "Riacho de Santo Antônio", - "capital": 0, - "ibgeState": 25, - "siafi": 508, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.68023, - -36.157 - ] - } - }, - { - "ibge": 2512804, - "name": "Riacho dos Cavalos", - "capital": 0, - "ibgeState": 25, - "siafi": 2157, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.44067, - -37.6483 - ] - } - }, - { - "ibge": 3154507, - "name": "Riacho dos Machados", - "capital": 0, - "ibgeState": 31, - "siafi": 5089, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0091, - -43.0488 - ] - } - }, - { - "ibge": 2208858, - "name": "Riacho Frio", - "capital": 0, - "ibgeState": 22, - "siafi": 374, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.1244, - -44.9503 - ] - } - }, - { - "ibge": 2410900, - "name": "Riachuelo", - "capital": 0, - "ibgeState": 24, - "siafi": 1815, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.82156, - -35.8215 - ] - } - }, - { - "ibge": 2805901, - "name": "Riachuelo", - "capital": 0, - "ibgeState": 28, - "siafi": 3217, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.735, - -37.1966 - ] - } - }, - { - "ibge": 5218607, - "name": "Rialma", - "capital": 0, - "ibgeState": 52, - "siafi": 9565, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.3145, - -49.5814 - ] - } - }, - { - "ibge": 5218706, - "name": "Rianápolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9567, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.4456, - -49.5114 - ] - } - }, - { - "ibge": 2109551, - "name": "Ribamar Fiquene", - "capital": 0, - "ibgeState": 21, - "siafi": 220, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.93067, - -47.3888 - ] - } - }, - { - "ibge": 5007109, - "name": "Ribas do Rio Pardo", - "capital": 0, - "ibgeState": 50, - "siafi": 9141, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -20.4445, - -53.7588 - ] - } - }, - { - "ibge": 3542800, - "name": "Ribeira", - "capital": 0, - "ibgeState": 35, - "siafi": 6957, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.6517, - -49.0044 - ] - } - }, - { - "ibge": 2926509, - "name": "Ribeira do Amparo", - "capital": 0, - "ibgeState": 29, - "siafi": 3831, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.0421, - -38.4242 - ] - } - }, - { - "ibge": 2208874, - "name": "Ribeira do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 376, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.69028, - -42.7128 - ] - } - }, - { - "ibge": 2926608, - "name": "Ribeira do Pombal", - "capital": 0, - "ibgeState": 29, - "siafi": 3833, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.8373, - -38.5382 - ] - } - }, - { - "ibge": 2611804, - "name": "Ribeirão", - "capital": 0, - "ibgeState": 26, - "siafi": 2535, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.50957, - -35.3698 - ] - } - }, - { - "ibge": 3542909, - "name": "Ribeirão Bonito", - "capital": 0, - "ibgeState": 35, - "siafi": 6959, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0685, - -48.182 - ] - } - }, - { - "ibge": 3543006, - "name": "Ribeirão Branco", - "capital": 0, - "ibgeState": 35, - "siafi": 6961, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.2206, - -48.7635 - ] - } - }, - { - "ibge": 5107180, - "name": "Ribeirão Cascalheira", - "capital": 0, - "ibgeState": 51, - "siafi": 9741, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.9367, - -51.8244 - ] - } - }, - { - "ibge": 4121802, - "name": "Ribeirão Claro", - "capital": 0, - "ibgeState": 41, - "siafi": 7813, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1941, - -49.7597 - ] - } - }, - { - "ibge": 3543105, - "name": "Ribeirão Corrente", - "capital": 0, - "ibgeState": 35, - "siafi": 6963, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4579, - -47.5904 - ] - } - }, - { - "ibge": 3154606, - "name": "Ribeirão das Neves", - "capital": 0, - "ibgeState": 31, - "siafi": 5091, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7621, - -44.0844 - ] - } - }, - { - "ibge": 2926657, - "name": "Ribeirão do Largo", - "capital": 0, - "ibgeState": 29, - "siafi": 3027, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.4508, - -40.7441 - ] - } - }, - { - "ibge": 4121901, - "name": "Ribeirão do Pinhal", - "capital": 0, - "ibgeState": 41, - "siafi": 7815, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4091, - -50.3601 - ] - } - }, - { - "ibge": 3543204, - "name": "Ribeirão do Sul", - "capital": 0, - "ibgeState": 35, - "siafi": 6965, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.789, - -49.933 - ] - } - }, - { - "ibge": 3543238, - "name": "Ribeirão dos Índios", - "capital": 0, - "ibgeState": 35, - "siafi": 818, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8382, - -51.6103 - ] - } - }, - { - "ibge": 3543253, - "name": "Ribeirão Grande", - "capital": 0, - "ibgeState": 35, - "siafi": 3057, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.1011, - -48.3679 - ] - } - }, - { - "ibge": 3543303, - "name": "Ribeirão Pires", - "capital": 0, - "ibgeState": 35, - "siafi": 6967, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7067, - -46.4058 - ] - } - }, - { - "ibge": 3543402, - "name": "Ribeirão Preto", - "capital": 0, - "ibgeState": 35, - "siafi": 6969, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1699, - -47.8099 - ] - } - }, - { - "ibge": 3154705, - "name": "Ribeirão Vermelho", - "capital": 0, - "ibgeState": 31, - "siafi": 5093, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1879, - -45.0637 - ] - } - }, - { - "ibge": 5107198, - "name": "Ribeirãozinho", - "capital": 0, - "ibgeState": 51, - "siafi": 99, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -16.4856, - -52.6924 - ] - } - }, - { - "ibge": 2208908, - "name": "Ribeiro Gonçalves", - "capital": 0, - "ibgeState": 22, - "siafi": 1177, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.55651, - -45.2447 - ] - } - }, - { - "ibge": 2806008, - "name": "Ribeirópolis", - "capital": 0, - "ibgeState": 28, - "siafi": 3219, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.5357, - -37.438 - ] - } - }, - { - "ibge": 3543600, - "name": "Rifaina", - "capital": 0, - "ibgeState": 35, - "siafi": 6973, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0803, - -47.4291 - ] - } - }, - { - "ibge": 3543709, - "name": "Rincão", - "capital": 0, - "ibgeState": 35, - "siafi": 6975, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5894, - -48.0728 - ] - } - }, - { - "ibge": 3543808, - "name": "Rinópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 6977, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7284, - -50.7239 - ] - } - }, - { - "ibge": 3154804, - "name": "Rio Acima", - "capital": 0, - "ibgeState": 31, - "siafi": 5095, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0876, - -43.7878 - ] - } - }, - { - "ibge": 4122008, - "name": "Rio Azul", - "capital": 0, - "ibgeState": 41, - "siafi": 7817, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.7306, - -50.7985 - ] - } - }, - { - "ibge": 3204351, - "name": "Rio Bananal", - "capital": 0, - "ibgeState": 32, - "siafi": 5711, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2719, - -40.3366 - ] - } - }, - { - "ibge": 4122107, - "name": "Rio Bom", - "capital": 0, - "ibgeState": 41, - "siafi": 7819, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7606, - -51.4122 - ] - } - }, - { - "ibge": 3304300, - "name": "Rio Bonito", - "capital": 0, - "ibgeState": 33, - "siafi": 5885, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7181, - -42.6276 - ] - } - }, - { - "ibge": 4122156, - "name": "Rio Bonito do Iguaçu", - "capital": 0, - "ibgeState": 41, - "siafi": 5481, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4874, - -52.5292 - ] - } - }, - { - "ibge": 5107206, - "name": "Rio Branco", - "capital": 0, - "ibgeState": 51, - "siafi": 8995, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.2483, - -58.1259 - ] - } - }, - { - "ibge": 1200401, - "name": "Rio Branco", - "capital": 1, - "ibgeState": 12, - "siafi": 139, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -9.97499, - -67.8243 - ] - } - }, - { - "ibge": 4122172, - "name": "Rio Branco do Ivaí", - "capital": 0, - "ibgeState": 41, - "siafi": 880, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.3244, - -51.3187 - ] - } - }, - { - "ibge": 4122206, - "name": "Rio Branco do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 7821, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.1892, - -49.3115 - ] - } - }, - { - "ibge": 5007208, - "name": "Rio Brilhante", - "capital": 0, - "ibgeState": 50, - "siafi": 9143, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -21.8033, - -54.5427 - ] - } - }, - { - "ibge": 3154903, - "name": "Rio Casca", - "capital": 0, - "ibgeState": 31, - "siafi": 5097, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2285, - -42.6462 - ] - } - }, - { - "ibge": 3304409, - "name": "Rio Claro", - "capital": 0, - "ibgeState": 33, - "siafi": 5887, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.72, - -44.1419 - ] - } - }, - { - "ibge": 3543907, - "name": "Rio Claro", - "capital": 0, - "ibgeState": 35, - "siafi": 6979, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3984, - -47.5546 - ] - } - }, - { - "ibge": 1100262, - "name": "Rio Crespo", - "capital": 0, - "ibgeState": 11, - "siafi": 687, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -9.69965, - -62.9011 - ] - } - }, - { - "ibge": 1718659, - "name": "Rio da Conceição", - "capital": 0, - "ibgeState": 17, - "siafi": 323, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.3949, - -46.8847 - ] - } - }, - { - "ibge": 4214409, - "name": "Rio das Antas", - "capital": 0, - "ibgeState": 42, - "siafi": 8283, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.8946, - -51.0674 - ] - } - }, - { - "ibge": 3304508, - "name": "Rio das Flores", - "capital": 0, - "ibgeState": 33, - "siafi": 5889, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1692, - -43.5856 - ] - } - }, - { - "ibge": 3304524, - "name": "Rio das Ostras", - "capital": 0, - "ibgeState": 33, - "siafi": 2921, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5174, - -41.9475 - ] - } - }, - { - "ibge": 3544004, - "name": "Rio das Pedras", - "capital": 0, - "ibgeState": 35, - "siafi": 6981, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8417, - -47.6047 - ] - } - }, - { - "ibge": 2926707, - "name": "Rio de Contas", - "capital": 0, - "ibgeState": 29, - "siafi": 3835, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.5852, - -41.8048 - ] - } - }, - { - "ibge": 3304557, - "name": "Rio de Janeiro", - "capital": 1, - "ibgeState": 33, - "siafi": 6001, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9129, - -43.2003 - ] - } - }, - { - "ibge": 2926806, - "name": "Rio do Antônio", - "capital": 0, - "ibgeState": 29, - "siafi": 3837, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.4071, - -42.0721 - ] - } - }, - { - "ibge": 4214508, - "name": "Rio do Campo", - "capital": 0, - "ibgeState": 42, - "siafi": 8285, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9452, - -50.136 - ] - } - }, - { - "ibge": 2408953, - "name": "Rio do Fogo", - "capital": 0, - "ibgeState": 24, - "siafi": 422, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.2765, - -35.3794 - ] - } - }, - { - "ibge": 4214607, - "name": "Rio do Oeste", - "capital": 0, - "ibgeState": 42, - "siafi": 8287, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1952, - -49.7989 - ] - } - }, - { - "ibge": 2926905, - "name": "Rio do Pires", - "capital": 0, - "ibgeState": 29, - "siafi": 3839, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.1185, - -42.2902 - ] - } - }, - { - "ibge": 3155108, - "name": "Rio do Prado", - "capital": 0, - "ibgeState": 31, - "siafi": 5101, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.6056, - -40.5714 - ] - } - }, - { - "ibge": 4214805, - "name": "Rio do Sul", - "capital": 0, - "ibgeState": 42, - "siafi": 8291, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2156, - -49.643 - ] - } - }, - { - "ibge": 3155009, - "name": "Rio Doce", - "capital": 0, - "ibgeState": 31, - "siafi": 5099, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2412, - -42.8995 - ] - } - }, - { - "ibge": 1718709, - "name": "Rio dos Bois", - "capital": 0, - "ibgeState": 17, - "siafi": 359, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.34425, - -48.5245 - ] - } - }, - { - "ibge": 4214706, - "name": "Rio dos Cedros", - "capital": 0, - "ibgeState": 42, - "siafi": 8289, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7398, - -49.2718 - ] - } - }, - { - "ibge": 4315552, - "name": "Rio dos Índios", - "capital": 0, - "ibgeState": 43, - "siafi": 5955, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2973, - -52.8417 - ] - } - }, - { - "ibge": 3155207, - "name": "Rio Espera", - "capital": 0, - "ibgeState": 31, - "siafi": 5103, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.855, - -43.4721 - ] - } - }, - { - "ibge": 2611903, - "name": "Rio Formoso", - "capital": 0, - "ibgeState": 26, - "siafi": 2537, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.6592, - -35.1532 - ] - } - }, - { - "ibge": 4214904, - "name": "Rio Fortuna", - "capital": 0, - "ibgeState": 42, - "siafi": 8293, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.1244, - -49.1068 - ] - } - }, - { - "ibge": 4315602, - "name": "Rio Grande", - "capital": 0, - "ibgeState": 43, - "siafi": 8815, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -32.0349, - -52.1071 - ] - } - }, - { - "ibge": 3544103, - "name": "Rio Grande da Serra", - "capital": 0, - "ibgeState": 35, - "siafi": 6983, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7437, - -46.3971 - ] - } - }, - { - "ibge": 2209005, - "name": "Rio Grande do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1179, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.78029, - -43.1369 - ] - } - }, - { - "ibge": 2707701, - "name": "Rio Largo", - "capital": 0, - "ibgeState": 27, - "siafi": 2853, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.47783, - -35.8394 - ] - } - }, - { - "ibge": 3155306, - "name": "Rio Manso", - "capital": 0, - "ibgeState": 31, - "siafi": 5105, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2666, - -44.3069 - ] - } - }, - { - "ibge": 1506161, - "name": "Rio Maria", - "capital": 0, - "ibgeState": 15, - "siafi": 569, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.31236, - -50.0379 - ] - } - }, - { - "ibge": 4215000, - "name": "Rio Negrinho", - "capital": 0, - "ibgeState": 42, - "siafi": 8295, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.2591, - -49.5177 - ] - } - }, - { - "ibge": 5007307, - "name": "Rio Negro", - "capital": 0, - "ibgeState": 50, - "siafi": 9145, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -19.447, - -54.9859 - ] - } - }, - { - "ibge": 4122305, - "name": "Rio Negro", - "capital": 0, - "ibgeState": 41, - "siafi": 7823, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.095, - -49.7982 - ] - } - }, - { - "ibge": 3155405, - "name": "Rio Novo", - "capital": 0, - "ibgeState": 31, - "siafi": 5107, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4649, - -43.1168 - ] - } - }, - { - "ibge": 3204401, - "name": "Rio Novo do Sul", - "capital": 0, - "ibgeState": 32, - "siafi": 5687, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8556, - -40.9388 - ] - } - }, - { - "ibge": 3155504, - "name": "Rio Paranaíba", - "capital": 0, - "ibgeState": 31, - "siafi": 5109, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.1861, - -46.2455 - ] - } - }, - { - "ibge": 4315701, - "name": "Rio Pardo", - "capital": 0, - "ibgeState": 43, - "siafi": 8817, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.988, - -52.3711 - ] - } - }, - { - "ibge": 3155603, - "name": "Rio Pardo de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 5111, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.616, - -42.5405 - ] - } - }, - { - "ibge": 3155702, - "name": "Rio Piracicaba", - "capital": 0, - "ibgeState": 31, - "siafi": 5113, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9284, - -43.1829 - ] - } - }, - { - "ibge": 3155801, - "name": "Rio Pomba", - "capital": 0, - "ibgeState": 31, - "siafi": 5115, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2712, - -43.1696 - ] - } - }, - { - "ibge": 3155900, - "name": "Rio Preto", - "capital": 0, - "ibgeState": 31, - "siafi": 5117, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0861, - -43.8293 - ] - } - }, - { - "ibge": 1303569, - "name": "Rio Preto da Eva", - "capital": 0, - "ibgeState": 13, - "siafi": 9843, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -2.7045, - -59.6858 - ] - } - }, - { - "ibge": 5218789, - "name": "Rio Quente", - "capital": 0, - "ibgeState": 52, - "siafi": 9995, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.774, - -48.7725 - ] - } - }, - { - "ibge": 2927002, - "name": "Rio Real", - "capital": 0, - "ibgeState": 29, - "siafi": 3841, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.4814, - -37.9332 - ] - } - }, - { - "ibge": 4215059, - "name": "Rio Rufino", - "capital": 0, - "ibgeState": 42, - "siafi": 5571, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.8592, - -49.7754 - ] - } - }, - { - "ibge": 1718758, - "name": "Rio Sono", - "capital": 0, - "ibgeState": 17, - "siafi": 9679, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.35002, - -47.888 - ] - } - }, - { - "ibge": 2512903, - "name": "Rio Tinto", - "capital": 0, - "ibgeState": 25, - "siafi": 2159, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.80383, - -35.0776 - ] - } - }, - { - "ibge": 5218805, - "name": "Rio Verde", - "capital": 0, - "ibgeState": 52, - "siafi": 9571, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.7923, - -50.9192 - ] - } - }, - { - "ibge": 5007406, - "name": "Rio Verde de Mato Grosso", - "capital": 0, - "ibgeState": 50, - "siafi": 9147, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -18.9249, - -54.8434 - ] - } - }, - { - "ibge": 3156007, - "name": "Rio Vermelho", - "capital": 0, - "ibgeState": 31, - "siafi": 5119, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.2922, - -43.0018 - ] - } - }, - { - "ibge": 3544202, - "name": "Riolândia", - "capital": 0, - "ibgeState": 35, - "siafi": 6985, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9868, - -49.6836 - ] - } - }, - { - "ibge": 4315750, - "name": "Riozinho", - "capital": 0, - "ibgeState": 43, - "siafi": 7353, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.639, - -50.4488 - ] - } - }, - { - "ibge": 4215075, - "name": "Riqueza", - "capital": 0, - "ibgeState": 42, - "siafi": 5749, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0653, - -53.3265 - ] - } - }, - { - "ibge": 3156106, - "name": "Ritápolis", - "capital": 0, - "ibgeState": 31, - "siafi": 5121, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0276, - -44.3204 - ] - } - }, - { - "ibge": 3543501, - "name": "Riversul", - "capital": 0, - "ibgeState": 35, - "siafi": 6971, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.829, - -49.429 - ] - } - }, - { - "ibge": 4315800, - "name": "Roca Sales", - "capital": 0, - "ibgeState": 43, - "siafi": 8819, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.2884, - -51.8658 - ] - } - }, - { - "ibge": 5007505, - "name": "Rochedo", - "capital": 0, - "ibgeState": 50, - "siafi": 9149, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -19.9565, - -54.8848 - ] - } - }, - { - "ibge": 3156205, - "name": "Rochedo de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 5123, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6284, - -43.0165 - ] - } - }, - { - "ibge": 4215109, - "name": "Rodeio", - "capital": 0, - "ibgeState": 42, - "siafi": 8297, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9243, - -49.3649 - ] - } - }, - { - "ibge": 4315909, - "name": "Rodeio Bonito", - "capital": 0, - "ibgeState": 43, - "siafi": 8821, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4742, - -53.1706 - ] - } - }, - { - "ibge": 3156304, - "name": "Rodeiro", - "capital": 0, - "ibgeState": 31, - "siafi": 5125, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2035, - -42.8586 - ] - } - }, - { - "ibge": 2927101, - "name": "Rodelas", - "capital": 0, - "ibgeState": 29, - "siafi": 3843, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.85021, - -38.78 - ] - } - }, - { - "ibge": 2411007, - "name": "Rodolfo Fernandes", - "capital": 0, - "ibgeState": 24, - "siafi": 1817, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.78393, - -38.0579 - ] - } - }, - { - "ibge": 1200427, - "name": "Rodrigues Alves", - "capital": 0, - "ibgeState": 12, - "siafi": 659, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -7.73864, - -72.661 - ] - } - }, - { - "ibge": 4315958, - "name": "Rolador", - "capital": 0, - "ibgeState": 43, - "siafi": 1164, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.2566, - -54.8186 - ] - } - }, - { - "ibge": 4122404, - "name": "Rolândia", - "capital": 0, - "ibgeState": 41, - "siafi": 7825, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3101, - -51.3659 - ] - } - }, - { - "ibge": 4316006, - "name": "Rolante", - "capital": 0, - "ibgeState": 43, - "siafi": 8823, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6462, - -50.5819 - ] - } - }, - { - "ibge": 1100288, - "name": "Rolim de Moura", - "capital": 0, - "ibgeState": 11, - "siafi": 29, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.7271, - -61.7714 - ] - } - }, - { - "ibge": 3156403, - "name": "Romaria", - "capital": 0, - "ibgeState": 31, - "siafi": 5127, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.8838, - -47.5782 - ] - } - }, - { - "ibge": 4215208, - "name": "Romelândia", - "capital": 0, - "ibgeState": 42, - "siafi": 8299, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.6809, - -53.3172 - ] - } - }, - { - "ibge": 4122503, - "name": "Roncador", - "capital": 0, - "ibgeState": 41, - "siafi": 7827, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.5958, - -52.2716 - ] - } - }, - { - "ibge": 4316105, - "name": "Ronda Alta", - "capital": 0, - "ibgeState": 43, - "siafi": 8825, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7758, - -52.8056 - ] - } - }, - { - "ibge": 4316204, - "name": "Rondinha", - "capital": 0, - "ibgeState": 43, - "siafi": 8827, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.8315, - -52.9081 - ] - } - }, - { - "ibge": 5107578, - "name": "Rondolândia", - "capital": 0, - "ibgeState": 51, - "siafi": 1092, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.8376, - -61.4697 - ] - } - }, - { - "ibge": 4122602, - "name": "Rondon", - "capital": 0, - "ibgeState": 41, - "siafi": 7829, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.412, - -52.7659 - ] - } - }, - { - "ibge": 1506187, - "name": "Rondon do Pará", - "capital": 0, - "ibgeState": 15, - "siafi": 573, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.77793, - -48.067 - ] - } - }, - { - "ibge": 5107602, - "name": "Rondonópolis", - "capital": 0, - "ibgeState": 51, - "siafi": 9151, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -16.4673, - -54.6372 - ] - } - }, - { - "ibge": 4316303, - "name": "Roque Gonzales", - "capital": 0, - "ibgeState": 43, - "siafi": 8829, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.1297, - -55.0266 - ] - } - }, - { - "ibge": 1400472, - "name": "Rorainópolis", - "capital": 0, - "ibgeState": 14, - "siafi": 36, - "ddd": 95, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - 0.939956, - -60.4389 - ] - } - }, - { - "ibge": 3544251, - "name": "Rosana", - "capital": 0, - "ibgeState": 35, - "siafi": 7265, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5782, - -53.0603 - ] - } - }, - { - "ibge": 2109601, - "name": "Rosário", - "capital": 0, - "ibgeState": 21, - "siafi": 891, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.93444, - -44.2531 - ] - } - }, - { - "ibge": 3156452, - "name": "Rosário da Limeira", - "capital": 0, - "ibgeState": 31, - "siafi": 698, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9812, - -42.5112 - ] - } - }, - { - "ibge": 2806107, - "name": "Rosário do Catete", - "capital": 0, - "ibgeState": 28, - "siafi": 3221, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.6904, - -37.0357 - ] - } - }, - { - "ibge": 4122651, - "name": "Rosário do Ivaí", - "capital": 0, - "ibgeState": 41, - "siafi": 8473, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.2682, - -51.272 - ] - } - }, - { - "ibge": 4316402, - "name": "Rosário do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8831, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.2515, - -54.9221 - ] - } - }, - { - "ibge": 5107701, - "name": "Rosário Oeste", - "capital": 0, - "ibgeState": 51, - "siafi": 9153, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.8259, - -56.4236 - ] - } - }, - { - "ibge": 3544301, - "name": "Roseira", - "capital": 0, - "ibgeState": 35, - "siafi": 6987, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8938, - -45.307 - ] - } - }, - { - "ibge": 2707800, - "name": "Roteiro", - "capital": 0, - "ibgeState": 27, - "siafi": 2855, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.83503, - -35.9782 - ] - } - }, - { - "ibge": 3156502, - "name": "Rubelita", - "capital": 0, - "ibgeState": 31, - "siafi": 5129, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.4053, - -42.261 - ] - } - }, - { - "ibge": 3544400, - "name": "Rubiácea", - "capital": 0, - "ibgeState": 35, - "siafi": 6989, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3006, - -50.7296 - ] - } - }, - { - "ibge": 5218904, - "name": "Rubiataba", - "capital": 0, - "ibgeState": 52, - "siafi": 9573, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.1617, - -49.8048 - ] - } - }, - { - "ibge": 3156601, - "name": "Rubim", - "capital": 0, - "ibgeState": 31, - "siafi": 5131, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.3775, - -40.5397 - ] - } - }, - { - "ibge": 3544509, - "name": "Rubinéia", - "capital": 0, - "ibgeState": 35, - "siafi": 6991, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1759, - -51.007 - ] - } - }, - { - "ibge": 1506195, - "name": "Rurópolis", - "capital": 0, - "ibgeState": 15, - "siafi": 597, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.10028, - -54.9092 - ] - } - }, - { - "ibge": 2311801, - "name": "Russas", - "capital": 0, - "ibgeState": 23, - "siafi": 1537, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.92673, - -37.9721 - ] - } - }, - { - "ibge": 2411106, - "name": "Ruy Barbosa", - "capital": 0, - "ibgeState": 24, - "siafi": 1819, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.88745, - -35.933 - ] - } - }, - { - "ibge": 2927200, - "name": "Ruy Barbosa", - "capital": 0, - "ibgeState": 29, - "siafi": 3845, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.2816, - -40.4931 - ] - } - }, - { - "ibge": 3156700, - "name": "Sabará", - "capital": 0, - "ibgeState": 31, - "siafi": 5133, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.884, - -43.8263 - ] - } - }, - { - "ibge": 4122701, - "name": "Sabáudia", - "capital": 0, - "ibgeState": 41, - "siafi": 7831, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3155, - -51.555 - ] - } - }, - { - "ibge": 3544608, - "name": "Sabino", - "capital": 0, - "ibgeState": 35, - "siafi": 6993, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4593, - -49.5755 - ] - } - }, - { - "ibge": 3156809, - "name": "Sabinópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 5135, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.6653, - -43.0752 - ] - } - }, - { - "ibge": 2311900, - "name": "Saboeiro", - "capital": 0, - "ibgeState": 23, - "siafi": 1539, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.5346, - -39.9017 - ] - } - }, - { - "ibge": 3156908, - "name": "Sacramento", - "capital": 0, - "ibgeState": 31, - "siafi": 5137, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8622, - -47.4508 - ] - } - }, - { - "ibge": 4316428, - "name": "Sagrada Família", - "capital": 0, - "ibgeState": 43, - "siafi": 5987, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7085, - -53.1351 - ] - } - }, - { - "ibge": 3544707, - "name": "Sagres", - "capital": 0, - "ibgeState": 35, - "siafi": 6995, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8823, - -50.9594 - ] - } - }, - { - "ibge": 2612000, - "name": "Sairé", - "capital": 0, - "ibgeState": 26, - "siafi": 2539, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.32864, - -35.6967 - ] - } - }, - { - "ibge": 4316436, - "name": "Saldanha Marinho", - "capital": 0, - "ibgeState": 43, - "siafi": 7339, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3941, - -53.097 - ] - } - }, - { - "ibge": 3544806, - "name": "Sales", - "capital": 0, - "ibgeState": 35, - "siafi": 6997, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3427, - -49.4897 - ] - } - }, - { - "ibge": 3544905, - "name": "Sales Oliveira", - "capital": 0, - "ibgeState": 35, - "siafi": 6999, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7696, - -47.8369 - ] - } - }, - { - "ibge": 3545001, - "name": "Salesópolis", - "capital": 0, - "ibgeState": 35, - "siafi": 7001, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5288, - -45.8465 - ] - } - }, - { - "ibge": 4215307, - "name": "Salete", - "capital": 0, - "ibgeState": 42, - "siafi": 8301, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9798, - -49.9988 - ] - } - }, - { - "ibge": 2513000, - "name": "Salgadinho", - "capital": 0, - "ibgeState": 25, - "siafi": 2161, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.10098, - -36.8458 - ] - } - }, - { - "ibge": 2612109, - "name": "Salgadinho", - "capital": 0, - "ibgeState": 26, - "siafi": 2541, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.9269, - -35.6503 - ] - } - }, - { - "ibge": 2806206, - "name": "Salgado", - "capital": 0, - "ibgeState": 28, - "siafi": 3223, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.0288, - -37.4804 - ] - } - }, - { - "ibge": 2513109, - "name": "Salgado de São Félix", - "capital": 0, - "ibgeState": 25, - "siafi": 2163, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.35337, - -35.4305 - ] - } - }, - { - "ibge": 4122800, - "name": "Salgado Filho", - "capital": 0, - "ibgeState": 41, - "siafi": 7833, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.1777, - -53.3631 - ] - } - }, - { - "ibge": 2612208, - "name": "Salgueiro", - "capital": 0, - "ibgeState": 26, - "siafi": 2543, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.07373, - -39.1247 - ] - } - }, - { - "ibge": 3157005, - "name": "Salinas", - "capital": 0, - "ibgeState": 31, - "siafi": 5139, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.1753, - -42.2964 - ] - } - }, - { - "ibge": 2927309, - "name": "Salinas da Margarida", - "capital": 0, - "ibgeState": 29, - "siafi": 3847, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.873, - -38.7562 - ] - } - }, - { - "ibge": 1506203, - "name": "Salinópolis", - "capital": 0, - "ibgeState": 15, - "siafi": 523, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.630815, - -47.3465 - ] - } - }, - { - "ibge": 2311959, - "name": "Salitre", - "capital": 0, - "ibgeState": 23, - "siafi": 1273, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.28398, - -40.45 - ] - } - }, - { - "ibge": 3545100, - "name": "Salmourão", - "capital": 0, - "ibgeState": 35, - "siafi": 7003, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6267, - -50.8614 - ] - } - }, - { - "ibge": 2612307, - "name": "Saloá", - "capital": 0, - "ibgeState": 26, - "siafi": 2545, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.9723, - -36.691 - ] - } - }, - { - "ibge": 4215356, - "name": "Saltinho", - "capital": 0, - "ibgeState": 42, - "siafi": 936, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.6049, - -53.0578 - ] - } - }, - { - "ibge": 3545159, - "name": "Saltinho", - "capital": 0, - "ibgeState": 35, - "siafi": 5445, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8442, - -47.6754 - ] - } - }, - { - "ibge": 3545209, - "name": "Salto", - "capital": 0, - "ibgeState": 35, - "siafi": 7005, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1996, - -47.2931 - ] - } - }, - { - "ibge": 3157104, - "name": "Salto da Divisa", - "capital": 0, - "ibgeState": 31, - "siafi": 5141, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0063, - -39.9391 - ] - } - }, - { - "ibge": 3545308, - "name": "Salto de Pirapora", - "capital": 0, - "ibgeState": 35, - "siafi": 7007, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6474, - -47.5743 - ] - } - }, - { - "ibge": 5107750, - "name": "Salto do Céu", - "capital": 0, - "ibgeState": 51, - "siafi": 8997, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.1303, - -58.1317 - ] - } - }, - { - "ibge": 4122909, - "name": "Salto do Itararé", - "capital": 0, - "ibgeState": 41, - "siafi": 7835, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6074, - -49.6354 - ] - } - }, - { - "ibge": 4316451, - "name": "Salto do Jacuí", - "capital": 0, - "ibgeState": 43, - "siafi": 8975, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.0951, - -53.2133 - ] - } - }, - { - "ibge": 4123006, - "name": "Salto do Lontra", - "capital": 0, - "ibgeState": 41, - "siafi": 7837, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.7813, - -53.3135 - ] - } - }, - { - "ibge": 3545407, - "name": "Salto Grande", - "capital": 0, - "ibgeState": 35, - "siafi": 7009, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8894, - -49.9831 - ] - } - }, - { - "ibge": 4215406, - "name": "Salto Veloso", - "capital": 0, - "ibgeState": 42, - "siafi": 8303, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.903, - -51.4043 - ] - } - }, - { - "ibge": 2927408, - "name": "Salvador", - "capital": 1, - "ibgeState": 29, - "siafi": 3849, - "ddd": 71, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.9718, - -38.5011 - ] - } - }, - { - "ibge": 4316477, - "name": "Salvador das Missões", - "capital": 0, - "ibgeState": 43, - "siafi": 6061, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.1233, - -54.8373 - ] - } - }, - { - "ibge": 4316501, - "name": "Salvador do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8833, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4386, - -51.5077 - ] - } - }, - { - "ibge": 1506302, - "name": "Salvaterra", - "capital": 0, - "ibgeState": 15, - "siafi": 525, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.758444, - -48.5139 - ] - } - }, - { - "ibge": 2109700, - "name": "Sambaíba", - "capital": 0, - "ibgeState": 21, - "siafi": 893, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.13447, - -45.3515 - ] - } - }, - { - "ibge": 1718808, - "name": "Sampaio", - "capital": 0, - "ibgeState": 17, - "siafi": 9727, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.35423, - -47.8782 - ] - } - }, - { - "ibge": 4316600, - "name": "Sananduva", - "capital": 0, - "ibgeState": 43, - "siafi": 8835, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.947, - -51.8079 - ] - } - }, - { - "ibge": 5219001, - "name": "Sanclerlândia", - "capital": 0, - "ibgeState": 52, - "siafi": 9575, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.197, - -50.3124 - ] - } - }, - { - "ibge": 1718840, - "name": "Sandolândia", - "capital": 0, - "ibgeState": 17, - "siafi": 331, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.538, - -49.9242 - ] - } - }, - { - "ibge": 3545506, - "name": "Sandovalina", - "capital": 0, - "ibgeState": 35, - "siafi": 7011, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4551, - -51.7648 - ] - } - }, - { - "ibge": 4215455, - "name": "Sangão", - "capital": 0, - "ibgeState": 42, - "siafi": 5547, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6326, - -49.1322 - ] - } - }, - { - "ibge": 2612406, - "name": "Sanharó", - "capital": 0, - "ibgeState": 26, - "siafi": 2547, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.36097, - -36.5696 - ] - } - }, - { - "ibge": 4317103, - "name": "Sant'Ana do Livramento", - "capital": 0, - "ibgeState": 43, - "siafi": 8845, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.8773, - -55.5392 - ] - } - }, - { - "ibge": 3545605, - "name": "Santa Adélia", - "capital": 0, - "ibgeState": 35, - "siafi": 7013, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2427, - -48.8063 - ] - } - }, - { - "ibge": 3545704, - "name": "Santa Albertina", - "capital": 0, - "ibgeState": 35, - "siafi": 7015, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0311, - -50.7297 - ] - } - }, - { - "ibge": 4123105, - "name": "Santa Amélia", - "capital": 0, - "ibgeState": 41, - "siafi": 7839, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2654, - -50.4288 - ] - } - }, - { - "ibge": 2927507, - "name": "Santa Bárbara", - "capital": 0, - "ibgeState": 29, - "siafi": 3851, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.9515, - -38.9681 - ] - } - }, - { - "ibge": 3157203, - "name": "Santa Bárbara", - "capital": 0, - "ibgeState": 31, - "siafi": 5143, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9604, - -43.4101 - ] - } - }, - { - "ibge": 3545803, - "name": "Santa Bárbara d'Oeste", - "capital": 0, - "ibgeState": 35, - "siafi": 7017, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7553, - -47.4143 - ] - } - }, - { - "ibge": 5219100, - "name": "Santa Bárbara de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9577, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.5714, - -49.6954 - ] - } - }, - { - "ibge": 3157252, - "name": "Santa Bárbara do Leste", - "capital": 0, - "ibgeState": 31, - "siafi": 2667, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9753, - -42.1457 - ] - } - }, - { - "ibge": 3157278, - "name": "Santa Bárbara do Monte Verde", - "capital": 0, - "ibgeState": 31, - "siafi": 700, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9592, - -43.7027 - ] - } - }, - { - "ibge": 1506351, - "name": "Santa Bárbara do Pará", - "capital": 0, - "ibgeState": 15, - "siafi": 369, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.19219, - -48.238 - ] - } - }, - { - "ibge": 4316709, - "name": "Santa Bárbara do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8837, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3653, - -53.251 - ] - } - }, - { - "ibge": 3157302, - "name": "Santa Bárbara do Tugúrio", - "capital": 0, - "ibgeState": 31, - "siafi": 5145, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2431, - -43.5607 - ] - } - }, - { - "ibge": 3546009, - "name": "Santa Branca", - "capital": 0, - "ibgeState": 35, - "siafi": 7021, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3933, - -45.8875 - ] - } - }, - { - "ibge": 2927606, - "name": "Santa Brígida", - "capital": 0, - "ibgeState": 29, - "siafi": 3853, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.73227, - -38.1209 - ] - } - }, - { - "ibge": 5107248, - "name": "Santa Carmem", - "capital": 0, - "ibgeState": 51, - "siafi": 123, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.9125, - -55.2263 - ] - } - }, - { - "ibge": 4215505, - "name": "Santa Cecília", - "capital": 0, - "ibgeState": 42, - "siafi": 8305, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9592, - -50.4252 - ] - } - }, - { - "ibge": 2513158, - "name": "Santa Cecília", - "capital": 0, - "ibgeState": 25, - "siafi": 510, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.7389, - -35.8764 - ] - } - }, - { - "ibge": 4123204, - "name": "Santa Cecília do Pavão", - "capital": 0, - "ibgeState": 41, - "siafi": 7841, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5201, - -50.7835 - ] - } - }, - { - "ibge": 4316733, - "name": "Santa Cecília do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 1166, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.1609, - -51.9279 - ] - } - }, - { - "ibge": 3546108, - "name": "Santa Clara d'Oeste", - "capital": 0, - "ibgeState": 35, - "siafi": 7023, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.09, - -50.9491 - ] - } - }, - { - "ibge": 4316758, - "name": "Santa Clara do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 6033, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4747, - -52.0843 - ] - } - }, - { - "ibge": 2411205, - "name": "Santa Cruz", - "capital": 0, - "ibgeState": 24, - "siafi": 1823, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.22475, - -36.0193 - ] - } - }, - { - "ibge": 2513208, - "name": "Santa Cruz", - "capital": 0, - "ibgeState": 25, - "siafi": 2165, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.5237, - -38.0617 - ] - } - }, - { - "ibge": 2612455, - "name": "Santa Cruz", - "capital": 0, - "ibgeState": 26, - "siafi": 2297, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.24153, - -40.3434 - ] - } - }, - { - "ibge": 2927705, - "name": "Santa Cruz Cabrália", - "capital": 0, - "ibgeState": 29, - "siafi": 3855, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.2825, - -39.0295 - ] - } - }, - { - "ibge": 2612471, - "name": "Santa Cruz da Baixa Verde", - "capital": 0, - "ibgeState": 26, - "siafi": 2639, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.81339, - -38.1476 - ] - } - }, - { - "ibge": 3546207, - "name": "Santa Cruz da Conceição", - "capital": 0, - "ibgeState": 35, - "siafi": 7025, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1405, - -47.4512 - ] - } - }, - { - "ibge": 3546256, - "name": "Santa Cruz da Esperança", - "capital": 0, - "ibgeState": 35, - "siafi": 820, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2951, - -47.4304 - ] - } - }, - { - "ibge": 2927804, - "name": "Santa Cruz da Vitória", - "capital": 0, - "ibgeState": 29, - "siafi": 3857, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.964, - -39.8115 - ] - } - }, - { - "ibge": 3546306, - "name": "Santa Cruz das Palmeiras", - "capital": 0, - "ibgeState": 35, - "siafi": 7027, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8235, - -47.248 - ] - } - }, - { - "ibge": 5219209, - "name": "Santa Cruz de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9579, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.3155, - -48.4809 - ] - } - }, - { - "ibge": 3157336, - "name": "Santa Cruz de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 702, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1241, - -44.2202 - ] - } - }, - { - "ibge": 4123303, - "name": "Santa Cruz de Monte Castelo", - "capital": 0, - "ibgeState": 41, - "siafi": 7843, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9582, - -53.2949 - ] - } - }, - { - "ibge": 3157377, - "name": "Santa Cruz de Salinas", - "capital": 0, - "ibgeState": 31, - "siafi": 704, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0967, - -41.7418 - ] - } - }, - { - "ibge": 1506401, - "name": "Santa Cruz do Arari", - "capital": 0, - "ibgeState": 15, - "siafi": 527, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.661019, - -49.1771 - ] - } - }, - { - "ibge": 2612505, - "name": "Santa Cruz do Capibaribe", - "capital": 0, - "ibgeState": 26, - "siafi": 2549, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.94802, - -36.2061 - ] - } - }, - { - "ibge": 3157401, - "name": "Santa Cruz do Escalvado", - "capital": 0, - "ibgeState": 31, - "siafi": 5147, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2372, - -42.8169 - ] - } - }, - { - "ibge": 2209104, - "name": "Santa Cruz do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1181, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.1785, - -41.7609 - ] - } - }, - { - "ibge": 3546405, - "name": "Santa Cruz do Rio Pardo", - "capital": 0, - "ibgeState": 35, - "siafi": 7029, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8988, - -49.6354 - ] - } - }, - { - "ibge": 4316808, - "name": "Santa Cruz do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8839, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.722, - -52.4343 - ] - } - }, - { - "ibge": 5107743, - "name": "Santa Cruz do Xingu", - "capital": 0, - "ibgeState": 51, - "siafi": 1094, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.1532, - -52.3953 - ] - } - }, - { - "ibge": 2209153, - "name": "Santa Cruz dos Milagres", - "capital": 0, - "ibgeState": 22, - "siafi": 1295, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.80581, - -41.9506 - ] - } - }, - { - "ibge": 3157500, - "name": "Santa Efigênia de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 5149, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.8235, - -42.4388 - ] - } - }, - { - "ibge": 3546504, - "name": "Santa Ernestina", - "capital": 0, - "ibgeState": 35, - "siafi": 7031, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4618, - -48.3953 - ] - } - }, - { - "ibge": 4123402, - "name": "Santa Fé", - "capital": 0, - "ibgeState": 41, - "siafi": 7845, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.04, - -51.808 - ] - } - }, - { - "ibge": 5219258, - "name": "Santa Fé de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9743, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.7664, - -51.1037 - ] - } - }, - { - "ibge": 3157609, - "name": "Santa Fé de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 5151, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.6859, - -45.4102 - ] - } - }, - { - "ibge": 1718865, - "name": "Santa Fé do Araguaia", - "capital": 0, - "ibgeState": 17, - "siafi": 195, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.15803, - -48.7165 - ] - } - }, - { - "ibge": 3546603, - "name": "Santa Fé do Sul", - "capital": 0, - "ibgeState": 35, - "siafi": 7033, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2083, - -50.932 - ] - } - }, - { - "ibge": 2209203, - "name": "Santa Filomena", - "capital": 0, - "ibgeState": 22, - "siafi": 1183, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.11228, - -45.9116 - ] - } - }, - { - "ibge": 2612554, - "name": "Santa Filomena", - "capital": 0, - "ibgeState": 26, - "siafi": 556, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.16688, - -40.6079 - ] - } - }, - { - "ibge": 2109759, - "name": "Santa Filomena do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 222, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.49671, - -44.5638 - ] - } - }, - { - "ibge": 3546702, - "name": "Santa Gertrudes", - "capital": 0, - "ibgeState": 35, - "siafi": 7035, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4572, - -47.5272 - ] - } - }, - { - "ibge": 4123501, - "name": "Santa Helena", - "capital": 0, - "ibgeState": 41, - "siafi": 7971, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.8585, - -54.336 - ] - } - }, - { - "ibge": 4215554, - "name": "Santa Helena", - "capital": 0, - "ibgeState": 42, - "siafi": 5751, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.937, - -53.6214 - ] - } - }, - { - "ibge": 2109809, - "name": "Santa Helena", - "capital": 0, - "ibgeState": 21, - "siafi": 895, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.24426, - -45.29 - ] - } - }, - { - "ibge": 2513307, - "name": "Santa Helena", - "capital": 0, - "ibgeState": 25, - "siafi": 2167, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.7176, - -38.6427 - ] - } - }, - { - "ibge": 5219308, - "name": "Santa Helena de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9581, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.8115, - -50.5977 - ] - } - }, - { - "ibge": 3157658, - "name": "Santa Helena de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 706, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.9707, - -40.6727 - ] - } - }, - { - "ibge": 2927903, - "name": "Santa Inês", - "capital": 0, - "ibgeState": 29, - "siafi": 3859, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.2793, - -39.814 - ] - } - }, - { - "ibge": 4123600, - "name": "Santa Inês", - "capital": 0, - "ibgeState": 41, - "siafi": 7847, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6376, - -51.9024 - ] - } - }, - { - "ibge": 2513356, - "name": "Santa Inês", - "capital": 0, - "ibgeState": 25, - "siafi": 512, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.621, - -38.554 - ] - } - }, - { - "ibge": 2109908, - "name": "Santa Inês", - "capital": 0, - "ibgeState": 21, - "siafi": 957, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.65112, - -45.3774 - ] - } - }, - { - "ibge": 3546801, - "name": "Santa Isabel", - "capital": 0, - "ibgeState": 35, - "siafi": 7037, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3172, - -46.2237 - ] - } - }, - { - "ibge": 5219357, - "name": "Santa Isabel", - "capital": 0, - "ibgeState": 52, - "siafi": 9689, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.2958, - -49.4259 - ] - } - }, - { - "ibge": 4123709, - "name": "Santa Isabel do Ivaí", - "capital": 0, - "ibgeState": 41, - "siafi": 7849, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0025, - -53.1989 - ] - } - }, - { - "ibge": 1303601, - "name": "Santa Isabel do Rio Negro", - "capital": 0, - "ibgeState": 13, - "siafi": 237, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -0.410824, - -65.0092 - ] - } - }, - { - "ibge": 4123808, - "name": "Santa Izabel do Oeste", - "capital": 0, - "ibgeState": 41, - "siafi": 7851, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.8217, - -53.4801 - ] - } - }, - { - "ibge": 1506500, - "name": "Santa Izabel do Pará", - "capital": 0, - "ibgeState": 15, - "siafi": 529, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.29686, - -48.1606 - ] - } - }, - { - "ibge": 3157708, - "name": "Santa Juliana", - "capital": 0, - "ibgeState": 31, - "siafi": 5153, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.3108, - -47.5322 - ] - } - }, - { - "ibge": 3204500, - "name": "Santa Leopoldina", - "capital": 0, - "ibgeState": 32, - "siafi": 5689, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0999, - -40.527 - ] - } - }, - { - "ibge": 3546900, - "name": "Santa Lúcia", - "capital": 0, - "ibgeState": 35, - "siafi": 7039, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.685, - -48.0885 - ] - } - }, - { - "ibge": 4123824, - "name": "Santa Lúcia", - "capital": 0, - "ibgeState": 41, - "siafi": 5469, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4104, - -53.5638 - ] - } - }, - { - "ibge": 2209302, - "name": "Santa Luz", - "capital": 0, - "ibgeState": 22, - "siafi": 1185, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.9488, - -44.1296 - ] - } - }, - { - "ibge": 2110005, - "name": "Santa Luzia", - "capital": 0, - "ibgeState": 21, - "siafi": 897, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.06873, - -45.69 - ] - } - }, - { - "ibge": 2928059, - "name": "Santa Luzia", - "capital": 0, - "ibgeState": 29, - "siafi": 3987, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.4342, - -39.3287 - ] - } - }, - { - "ibge": 3157807, - "name": "Santa Luzia", - "capital": 0, - "ibgeState": 31, - "siafi": 5155, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7548, - -43.8497 - ] - } - }, - { - "ibge": 2513406, - "name": "Santa Luzia", - "capital": 0, - "ibgeState": 25, - "siafi": 2169, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.86092, - -36.9178 - ] - } - }, - { - "ibge": 1100296, - "name": "Santa Luzia D'Oeste", - "capital": 0, - "ibgeState": 11, - "siafi": 43, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.9074, - -61.7777 - ] - } - }, - { - "ibge": 2806305, - "name": "Santa Luzia do Itanhy", - "capital": 0, - "ibgeState": 28, - "siafi": 3225, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.3536, - -37.4586 - ] - } - }, - { - "ibge": 2707909, - "name": "Santa Luzia do Norte", - "capital": 0, - "ibgeState": 27, - "siafi": 2857, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.6037, - -35.8232 - ] - } - }, - { - "ibge": 1506559, - "name": "Santa Luzia do Pará", - "capital": 0, - "ibgeState": 15, - "siafi": 371, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.52147, - -46.9008 - ] - } - }, - { - "ibge": 2110039, - "name": "Santa Luzia do Paruá", - "capital": 0, - "ibgeState": 21, - "siafi": 1285, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.51123, - -45.7801 - ] - } - }, - { - "ibge": 3157906, - "name": "Santa Margarida", - "capital": 0, - "ibgeState": 31, - "siafi": 5157, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3839, - -42.2519 - ] - } - }, - { - "ibge": 4316972, - "name": "Santa Margarida do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 1168, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.3393, - -54.0817 - ] - } - }, - { - "ibge": 4316907, - "name": "Santa Maria", - "capital": 0, - "ibgeState": 43, - "siafi": 8841, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6868, - -53.8149 - ] - } - }, - { - "ibge": 2409332, - "name": "Santa Maria", - "capital": 0, - "ibgeState": 24, - "siafi": 424, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.83802, - -35.6914 - ] - } - }, - { - "ibge": 2612604, - "name": "Santa Maria da Boa Vista", - "capital": 0, - "ibgeState": 26, - "siafi": 2551, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.79766, - -39.8241 - ] - } - }, - { - "ibge": 3547007, - "name": "Santa Maria da Serra", - "capital": 0, - "ibgeState": 35, - "siafi": 7041, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5661, - -48.1593 - ] - } - }, - { - "ibge": 2928109, - "name": "Santa Maria da Vitória", - "capital": 0, - "ibgeState": 29, - "siafi": 3863, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.3859, - -44.2011 - ] - } - }, - { - "ibge": 1506583, - "name": "Santa Maria das Barreiras", - "capital": 0, - "ibgeState": 15, - "siafi": 599, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.85784, - -49.7215 - ] - } - }, - { - "ibge": 3158003, - "name": "Santa Maria de Itabira", - "capital": 0, - "ibgeState": 31, - "siafi": 5159, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.4431, - -43.1064 - ] - } - }, - { - "ibge": 3204559, - "name": "Santa Maria de Jetibá", - "capital": 0, - "ibgeState": 32, - "siafi": 5725, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0253, - -40.7439 - ] - } - }, - { - "ibge": 2612703, - "name": "Santa Maria do Cambucá", - "capital": 0, - "ibgeState": 26, - "siafi": 2553, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.83676, - -35.8941 - ] - } - }, - { - "ibge": 4316956, - "name": "Santa Maria do Herval", - "capital": 0, - "ibgeState": 43, - "siafi": 7337, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4902, - -50.9919 - ] - } - }, - { - "ibge": 4123857, - "name": "Santa Maria do Oeste", - "capital": 0, - "ibgeState": 41, - "siafi": 5505, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.9377, - -51.8696 - ] - } - }, - { - "ibge": 1506609, - "name": "Santa Maria do Pará", - "capital": 0, - "ibgeState": 15, - "siafi": 531, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.35392, - -47.5712 - ] - } - }, - { - "ibge": 3158102, - "name": "Santa Maria do Salto", - "capital": 0, - "ibgeState": 31, - "siafi": 5161, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.2479, - -40.1512 - ] - } - }, - { - "ibge": 3158201, - "name": "Santa Maria do Suaçuí", - "capital": 0, - "ibgeState": 31, - "siafi": 5163, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.1896, - -42.4139 - ] - } - }, - { - "ibge": 1718881, - "name": "Santa Maria do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 361, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.8046, - -47.7887 - ] - } - }, - { - "ibge": 3304607, - "name": "Santa Maria Madalena", - "capital": 0, - "ibgeState": 33, - "siafi": 5891, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9547, - -42.0098 - ] - } - }, - { - "ibge": 4123907, - "name": "Santa Mariana", - "capital": 0, - "ibgeState": 41, - "siafi": 7853, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1465, - -50.5167 - ] - } - }, - { - "ibge": 3547106, - "name": "Santa Mercedes", - "capital": 0, - "ibgeState": 35, - "siafi": 7043, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3495, - -51.7564 - ] - } - }, - { - "ibge": 4123956, - "name": "Santa Mônica", - "capital": 0, - "ibgeState": 41, - "siafi": 5519, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.108, - -53.1103 - ] - } - }, - { - "ibge": 2312205, - "name": "Santa Quitéria", - "capital": 0, - "ibgeState": 23, - "siafi": 1545, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.32608, - -40.1523 - ] - } - }, - { - "ibge": 2110104, - "name": "Santa Quitéria do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 899, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.49308, - -42.5688 - ] - } - }, - { - "ibge": 2110203, - "name": "Santa Rita", - "capital": 0, - "ibgeState": 21, - "siafi": 901, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.14241, - -44.3211 - ] - } - }, - { - "ibge": 2513703, - "name": "Santa Rita", - "capital": 0, - "ibgeState": 25, - "siafi": 2175, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.11724, - -34.9753 - ] - } - }, - { - "ibge": 3547403, - "name": "Santa Rita d'Oeste", - "capital": 0, - "ibgeState": 35, - "siafi": 7049, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1414, - -50.8358 - ] - } - }, - { - "ibge": 3159209, - "name": "Santa Rita de Caldas", - "capital": 0, - "ibgeState": 31, - "siafi": 5183, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0292, - -46.3385 - ] - } - }, - { - "ibge": 2928406, - "name": "Santa Rita de Cássia", - "capital": 0, - "ibgeState": 29, - "siafi": 3549, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.0063, - -44.5255 - ] - } - }, - { - "ibge": 3159407, - "name": "Santa Rita de Ibitipoca", - "capital": 0, - "ibgeState": 31, - "siafi": 5187, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5658, - -43.9163 - ] - } - }, - { - "ibge": 3159308, - "name": "Santa Rita de Jacutinga", - "capital": 0, - "ibgeState": 31, - "siafi": 5185, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1474, - -44.0977 - ] - } - }, - { - "ibge": 3159357, - "name": "Santa Rita de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 2669, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.876, - -42.1363 - ] - } - }, - { - "ibge": 5219407, - "name": "Santa Rita do Araguaia", - "capital": 0, - "ibgeState": 52, - "siafi": 9583, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.3269, - -53.2012 - ] - } - }, - { - "ibge": 3159506, - "name": "Santa Rita do Itueto", - "capital": 0, - "ibgeState": 31, - "siafi": 5189, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.3576, - -41.3821 - ] - } - }, - { - "ibge": 5219456, - "name": "Santa Rita do Novo Destino", - "capital": 0, - "ibgeState": 52, - "siafi": 1062, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.1351, - -49.1203 - ] - } - }, - { - "ibge": 5007554, - "name": "Santa Rita do Pardo", - "capital": 0, - "ibgeState": 50, - "siafi": 9745, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -21.3016, - -52.8333 - ] - } - }, - { - "ibge": 3547502, - "name": "Santa Rita do Passa Quatro", - "capital": 0, - "ibgeState": 35, - "siafi": 7051, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7083, - -47.478 - ] - } - }, - { - "ibge": 3159605, - "name": "Santa Rita do Sapucaí", - "capital": 0, - "ibgeState": 31, - "siafi": 5191, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2461, - -45.7034 - ] - } - }, - { - "ibge": 1718899, - "name": "Santa Rita do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 96, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.8617, - -48.9161 - ] - } - }, - { - "ibge": 5107768, - "name": "Santa Rita do Trivelato", - "capital": 0, - "ibgeState": 51, - "siafi": 1096, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -13.8146, - -55.2706 - ] - } - }, - { - "ibge": 4317202, - "name": "Santa Rosa", - "capital": 0, - "ibgeState": 43, - "siafi": 8847, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.8702, - -54.4796 - ] - } - }, - { - "ibge": 3159704, - "name": "Santa Rosa da Serra", - "capital": 0, - "ibgeState": 31, - "siafi": 5193, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5186, - -45.9611 - ] - } - }, - { - "ibge": 5219506, - "name": "Santa Rosa de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9585, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.084, - -49.4953 - ] - } - }, - { - "ibge": 4215604, - "name": "Santa Rosa de Lima", - "capital": 0, - "ibgeState": 42, - "siafi": 8307, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.0331, - -49.133 - ] - } - }, - { - "ibge": 2806503, - "name": "Santa Rosa de Lima", - "capital": 0, - "ibgeState": 28, - "siafi": 3229, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.6434, - -37.1931 - ] - } - }, - { - "ibge": 3547601, - "name": "Santa Rosa de Viterbo", - "capital": 0, - "ibgeState": 35, - "siafi": 7053, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4776, - -47.3622 - ] - } - }, - { - "ibge": 2209377, - "name": "Santa Rosa do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 2261, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.79581, - -42.2814 - ] - } - }, - { - "ibge": 1200435, - "name": "Santa Rosa do Purus", - "capital": 0, - "ibgeState": 12, - "siafi": 661, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -9.44652, - -70.4902 - ] - } - }, - { - "ibge": 4215653, - "name": "Santa Rosa do Sul", - "capital": 0, - "ibgeState": 42, - "siafi": 9967, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.1313, - -49.7109 - ] - } - }, - { - "ibge": 1718907, - "name": "Santa Rosa do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9729, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.4474, - -48.1216 - ] - } - }, - { - "ibge": 3547650, - "name": "Santa Salete", - "capital": 0, - "ibgeState": 35, - "siafi": 822, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2429, - -50.6887 - ] - } - }, - { - "ibge": 3204609, - "name": "Santa Teresa", - "capital": 0, - "ibgeState": 32, - "siafi": 5691, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9363, - -40.5979 - ] - } - }, - { - "ibge": 2928505, - "name": "Santa Teresinha", - "capital": 0, - "ibgeState": 29, - "siafi": 3869, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.7697, - -39.5215 - ] - } - }, - { - "ibge": 2513802, - "name": "Santa Teresinha", - "capital": 0, - "ibgeState": 25, - "siafi": 2177, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.07964, - -37.4435 - ] - } - }, - { - "ibge": 4317251, - "name": "Santa Tereza", - "capital": 0, - "ibgeState": 43, - "siafi": 5995, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.1655, - -51.7351 - ] - } - }, - { - "ibge": 5219605, - "name": "Santa Tereza de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9587, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.7138, - -49.0144 - ] - } - }, - { - "ibge": 4124020, - "name": "Santa Tereza do Oeste", - "capital": 0, - "ibgeState": 41, - "siafi": 9969, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.0543, - -53.6274 - ] - } - }, - { - "ibge": 1719004, - "name": "Santa Tereza do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9731, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.2746, - -47.8033 - ] - } - }, - { - "ibge": 4215679, - "name": "Santa Terezinha", - "capital": 0, - "ibgeState": 42, - "siafi": 5555, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7813, - -50.009 - ] - } - }, - { - "ibge": 5107776, - "name": "Santa Terezinha", - "capital": 0, - "ibgeState": 51, - "siafi": 9197, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.4704, - -50.514 - ] - } - }, - { - "ibge": 2612802, - "name": "Santa Terezinha", - "capital": 0, - "ibgeState": 26, - "siafi": 2555, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.37696, - -37.4787 - ] - } - }, - { - "ibge": 5219704, - "name": "Santa Terezinha de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9589, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.4326, - -49.7091 - ] - } - }, - { - "ibge": 4124053, - "name": "Santa Terezinha de Itaipu", - "capital": 0, - "ibgeState": 41, - "siafi": 8467, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4391, - -54.402 - ] - } - }, - { - "ibge": 4215687, - "name": "Santa Terezinha do Progresso", - "capital": 0, - "ibgeState": 42, - "siafi": 938, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.624, - -53.1997 - ] - } - }, - { - "ibge": 1720002, - "name": "Santa Terezinha do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 98, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.44438, - -47.6684 - ] - } - }, - { - "ibge": 3159803, - "name": "Santa Vitória", - "capital": 0, - "ibgeState": 31, - "siafi": 5195, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.8414, - -50.1208 - ] - } - }, - { - "ibge": 4317301, - "name": "Santa Vitória do Palmar", - "capital": 0, - "ibgeState": 43, - "siafi": 8849, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -33.525, - -53.3717 - ] - } - }, - { - "ibge": 2928000, - "name": "Santaluz", - "capital": 0, - "ibgeState": 29, - "siafi": 3861, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.2508, - -39.375 - ] - } - }, - { - "ibge": 2928208, - "name": "Santana", - "capital": 0, - "ibgeState": 29, - "siafi": 3865, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.9792, - -44.0506 - ] - } - }, - { - "ibge": 1600600, - "name": "Santana", - "capital": 0, - "ibgeState": 16, - "siafi": 615, - "ddd": 96, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.045434, - -51.1729 - ] - } - }, - { - "ibge": 4317004, - "name": "Santana da Boa Vista", - "capital": 0, - "ibgeState": 43, - "siafi": 8843, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.8697, - -53.11 - ] - } - }, - { - "ibge": 3547205, - "name": "Santana da Ponte Pensa", - "capital": 0, - "ibgeState": 35, - "siafi": 7045, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2523, - -50.8014 - ] - } - }, - { - "ibge": 3158300, - "name": "Santana da Vargem", - "capital": 0, - "ibgeState": 31, - "siafi": 5165, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2449, - -45.5005 - ] - } - }, - { - "ibge": 3158409, - "name": "Santana de Cataguases", - "capital": 0, - "ibgeState": 31, - "siafi": 5167, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2893, - -42.5524 - ] - } - }, - { - "ibge": 2513505, - "name": "Santana de Mangueira", - "capital": 0, - "ibgeState": 25, - "siafi": 2171, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.54705, - -38.3236 - ] - } - }, - { - "ibge": 3547304, - "name": "Santana de Parnaíba", - "capital": 0, - "ibgeState": 35, - "siafi": 7047, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4439, - -46.9178 - ] - } - }, - { - "ibge": 3158508, - "name": "Santana de Pirapama", - "capital": 0, - "ibgeState": 31, - "siafi": 5169, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.9962, - -44.0409 - ] - } - }, - { - "ibge": 2312007, - "name": "Santana do Acaraú", - "capital": 0, - "ibgeState": 23, - "siafi": 1541, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.46144, - -40.2118 - ] - } - }, - { - "ibge": 1506708, - "name": "Santana do Araguaia", - "capital": 0, - "ibgeState": 15, - "siafi": 533, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.3281, - -50.35 - ] - } - }, - { - "ibge": 2312106, - "name": "Santana do Cariri", - "capital": 0, - "ibgeState": 23, - "siafi": 1543, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.17613, - -39.7302 - ] - } - }, - { - "ibge": 3158607, - "name": "Santana do Deserto", - "capital": 0, - "ibgeState": 31, - "siafi": 5171, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9512, - -43.1583 - ] - } - }, - { - "ibge": 3158706, - "name": "Santana do Garambéu", - "capital": 0, - "ibgeState": 31, - "siafi": 5173, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5983, - -44.105 - ] - } - }, - { - "ibge": 2708006, - "name": "Santana do Ipanema", - "capital": 0, - "ibgeState": 27, - "siafi": 2859, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.36999, - -37.248 - ] - } - }, - { - "ibge": 4124004, - "name": "Santana do Itararé", - "capital": 0, - "ibgeState": 41, - "siafi": 7855, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7587, - -49.6293 - ] - } - }, - { - "ibge": 3158805, - "name": "Santana do Jacaré", - "capital": 0, - "ibgeState": 31, - "siafi": 5175, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9007, - -45.1285 - ] - } - }, - { - "ibge": 3158904, - "name": "Santana do Manhuaçu", - "capital": 0, - "ibgeState": 31, - "siafi": 5177, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1031, - -41.9278 - ] - } - }, - { - "ibge": 2110237, - "name": "Santana do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 224, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.109, - -42.4064 - ] - } - }, - { - "ibge": 2411403, - "name": "Santana do Matos", - "capital": 0, - "ibgeState": 24, - "siafi": 1827, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.94605, - -36.6578 - ] - } - }, - { - "ibge": 2708105, - "name": "Santana do Mundaú", - "capital": 0, - "ibgeState": 27, - "siafi": 2861, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.17141, - -36.2176 - ] - } - }, - { - "ibge": 3158953, - "name": "Santana do Paraíso", - "capital": 0, - "ibgeState": 31, - "siafi": 2673, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.3661, - -42.5446 - ] - } - }, - { - "ibge": 2209351, - "name": "Santana do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 2281, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.94696, - -41.5178 - ] - } - }, - { - "ibge": 3159001, - "name": "Santana do Riacho", - "capital": 0, - "ibgeState": 31, - "siafi": 5179, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.1662, - -43.722 - ] - } - }, - { - "ibge": 2806404, - "name": "Santana do São Francisco", - "capital": 0, - "ibgeState": 28, - "siafi": 2647, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.2922, - -36.6105 - ] - } - }, - { - "ibge": 2411429, - "name": "Santana do Seridó", - "capital": 0, - "ibgeState": 24, - "siafi": 1825, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.76643, - -36.7312 - ] - } - }, - { - "ibge": 2513604, - "name": "Santana dos Garrotes", - "capital": 0, - "ibgeState": 25, - "siafi": 2173, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.38162, - -37.9819 - ] - } - }, - { - "ibge": 3159100, - "name": "Santana dos Montes", - "capital": 0, - "ibgeState": 31, - "siafi": 5181, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7868, - -43.6949 - ] - } - }, - { - "ibge": 2928307, - "name": "Santanópolis", - "capital": 0, - "ibgeState": 29, - "siafi": 3867, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.0311, - -38.8694 - ] - } - }, - { - "ibge": 1506807, - "name": "Santarém", - "capital": 0, - "ibgeState": 15, - "siafi": 535, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.43849, - -54.6996 - ] - } - }, - { - "ibge": 1506906, - "name": "Santarém Novo", - "capital": 0, - "ibgeState": 15, - "siafi": 537, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.93097, - -47.3855 - ] - } - }, - { - "ibge": 4317400, - "name": "Santiago", - "capital": 0, - "ibgeState": 43, - "siafi": 8851, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.1897, - -54.8666 - ] - } - }, - { - "ibge": 4215695, - "name": "Santiago do Sul", - "capital": 0, - "ibgeState": 42, - "siafi": 940, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.6388, - -52.6799 - ] - } - }, - { - "ibge": 5107263, - "name": "Santo Afonso", - "capital": 0, - "ibgeState": 51, - "siafi": 115, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.4945, - -57.0091 - ] - } - }, - { - "ibge": 2928604, - "name": "Santo Amaro", - "capital": 0, - "ibgeState": 29, - "siafi": 3871, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.5472, - -38.7137 - ] - } - }, - { - "ibge": 4215703, - "name": "Santo Amaro da Imperatriz", - "capital": 0, - "ibgeState": 42, - "siafi": 8309, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6852, - -48.7813 - ] - } - }, - { - "ibge": 2806602, - "name": "Santo Amaro das Brotas", - "capital": 0, - "ibgeState": 28, - "siafi": 3231, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7892, - -37.0564 - ] - } - }, - { - "ibge": 2110278, - "name": "Santo Amaro do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 226, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.50068, - -43.238 - ] - } - }, - { - "ibge": 3547700, - "name": "Santo Anastácio", - "capital": 0, - "ibgeState": 35, - "siafi": 7055, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9747, - -51.6527 - ] - } - }, - { - "ibge": 3547809, - "name": "Santo André", - "capital": 0, - "ibgeState": 35, - "siafi": 7057, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6737, - -46.5432 - ] - } - }, - { - "ibge": 2513851, - "name": "Santo André", - "capital": 0, - "ibgeState": 25, - "siafi": 516, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.22016, - -36.6213 - ] - } - }, - { - "ibge": 4317509, - "name": "Santo Ângelo", - "capital": 0, - "ibgeState": 43, - "siafi": 8853, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3001, - -54.2668 - ] - } - }, - { - "ibge": 2411502, - "name": "Santo Antônio", - "capital": 0, - "ibgeState": 24, - "siafi": 1829, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.31195, - -35.4739 - ] - } - }, - { - "ibge": 3547908, - "name": "Santo Antônio da Alegria", - "capital": 0, - "ibgeState": 35, - "siafi": 7059, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0864, - -47.1464 - ] - } - }, - { - "ibge": 5219712, - "name": "Santo Antônio da Barra", - "capital": 0, - "ibgeState": 52, - "siafi": 83, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.5585, - -50.6345 - ] - } - }, - { - "ibge": 4317608, - "name": "Santo Antônio da Patrulha", - "capital": 0, - "ibgeState": 43, - "siafi": 8855, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.8268, - -50.5175 - ] - } - }, - { - "ibge": 4124103, - "name": "Santo Antônio da Platina", - "capital": 0, - "ibgeState": 41, - "siafi": 7859, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2959, - -50.0815 - ] - } - }, - { - "ibge": 4317707, - "name": "Santo Antônio das Missões", - "capital": 0, - "ibgeState": 43, - "siafi": 8857, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.514, - -55.2251 - ] - } - }, - { - "ibge": 5219738, - "name": "Santo Antônio de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 53, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.4815, - -49.3096 - ] - } - }, - { - "ibge": 2928703, - "name": "Santo Antônio de Jesus", - "capital": 0, - "ibgeState": 29, - "siafi": 3873, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.9614, - -39.2584 - ] - } - }, - { - "ibge": 2209401, - "name": "Santo Antônio de Lisboa", - "capital": 0, - "ibgeState": 22, - "siafi": 1187, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.98676, - -41.2252 - ] - } - }, - { - "ibge": 3304706, - "name": "Santo Antônio de Pádua", - "capital": 0, - "ibgeState": 33, - "siafi": 5893, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.541, - -42.1832 - ] - } - }, - { - "ibge": 3548005, - "name": "Santo Antônio de Posse", - "capital": 0, - "ibgeState": 35, - "siafi": 7061, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6029, - -46.9192 - ] - } - }, - { - "ibge": 3159902, - "name": "Santo Antônio do Amparo", - "capital": 0, - "ibgeState": 31, - "siafi": 5197, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.943, - -44.9176 - ] - } - }, - { - "ibge": 3548054, - "name": "Santo Antônio do Aracanguá", - "capital": 0, - "ibgeState": 35, - "siafi": 2939, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9331, - -50.498 - ] - } - }, - { - "ibge": 3160009, - "name": "Santo Antônio do Aventureiro", - "capital": 0, - "ibgeState": 31, - "siafi": 5199, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7606, - -42.8115 - ] - } - }, - { - "ibge": 4124202, - "name": "Santo Antônio do Caiuá", - "capital": 0, - "ibgeState": 41, - "siafi": 7861, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7351, - -52.344 - ] - } - }, - { - "ibge": 5219753, - "name": "Santo Antônio do Descoberto", - "capital": 0, - "ibgeState": 52, - "siafi": 9677, - "ddd": 61, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.9412, - -48.2578 - ] - } - }, - { - "ibge": 3160108, - "name": "Santo Antônio do Grama", - "capital": 0, - "ibgeState": 31, - "siafi": 5201, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3185, - -42.6047 - ] - } - }, - { - "ibge": 1303700, - "name": "Santo Antônio do Içá", - "capital": 0, - "ibgeState": 13, - "siafi": 273, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.09544, - -67.9463 - ] - } - }, - { - "ibge": 3160207, - "name": "Santo Antônio do Itambé", - "capital": 0, - "ibgeState": 31, - "siafi": 5203, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4609, - -43.3006 - ] - } - }, - { - "ibge": 3160306, - "name": "Santo Antônio do Jacinto", - "capital": 0, - "ibgeState": 31, - "siafi": 5205, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.5332, - -40.1817 - ] - } - }, - { - "ibge": 3548104, - "name": "Santo Antônio do Jardim", - "capital": 0, - "ibgeState": 35, - "siafi": 7063, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1121, - -46.6845 - ] - } - }, - { - "ibge": 5107792, - "name": "Santo Antônio do Leste", - "capital": 0, - "ibgeState": 51, - "siafi": 1098, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.805, - -53.6075 - ] - } - }, - { - "ibge": 5107800, - "name": "Santo Antônio do Leverger", - "capital": 0, - "ibgeState": 51, - "siafi": 9155, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.8632, - -56.0788 - ] - } - }, - { - "ibge": 3160405, - "name": "Santo Antônio do Monte", - "capital": 0, - "ibgeState": 31, - "siafi": 5207, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.085, - -45.2947 - ] - } - }, - { - "ibge": 4317558, - "name": "Santo Antônio do Palma", - "capital": 0, - "ibgeState": 43, - "siafi": 5941, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.4956, - -52.0267 - ] - } - }, - { - "ibge": 4124301, - "name": "Santo Antônio do Paraíso", - "capital": 0, - "ibgeState": 41, - "siafi": 7863, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4969, - -50.6455 - ] - } - }, - { - "ibge": 3548203, - "name": "Santo Antônio do Pinhal", - "capital": 0, - "ibgeState": 35, - "siafi": 7065, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.827, - -45.663 - ] - } - }, - { - "ibge": 4317756, - "name": "Santo Antônio do Planalto", - "capital": 0, - "ibgeState": 43, - "siafi": 5957, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.403, - -52.6992 - ] - } - }, - { - "ibge": 3160454, - "name": "Santo Antônio do Retiro", - "capital": 0, - "ibgeState": 31, - "siafi": 708, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.3393, - -42.6171 - ] - } - }, - { - "ibge": 3160504, - "name": "Santo Antônio do Rio Abaixo", - "capital": 0, - "ibgeState": 31, - "siafi": 5209, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2374, - -43.2604 - ] - } - }, - { - "ibge": 4124400, - "name": "Santo Antônio do Sudoeste", - "capital": 0, - "ibgeState": 41, - "siafi": 7857, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.0737, - -53.7251 - ] - } - }, - { - "ibge": 1507003, - "name": "Santo Antônio do Tauá", - "capital": 0, - "ibgeState": 15, - "siafi": 539, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.1522, - -48.1314 - ] - } - }, - { - "ibge": 2110302, - "name": "Santo Antônio dos Lopes", - "capital": 0, - "ibgeState": 21, - "siafi": 903, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.86613, - -44.3653 - ] - } - }, - { - "ibge": 2209450, - "name": "Santo Antônio dos Milagres", - "capital": 0, - "ibgeState": 22, - "siafi": 378, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.04647, - -42.7123 - ] - } - }, - { - "ibge": 4317806, - "name": "Santo Augusto", - "capital": 0, - "ibgeState": 43, - "siafi": 8859, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.8526, - -53.7776 - ] - } - }, - { - "ibge": 4317905, - "name": "Santo Cristo", - "capital": 0, - "ibgeState": 43, - "siafi": 8861, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.8263, - -54.662 - ] - } - }, - { - "ibge": 2928802, - "name": "Santo Estêvão", - "capital": 0, - "ibgeState": 29, - "siafi": 3875, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.428, - -39.2505 - ] - } - }, - { - "ibge": 3548302, - "name": "Santo Expedito", - "capital": 0, - "ibgeState": 35, - "siafi": 7067, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8467, - -51.3929 - ] - } - }, - { - "ibge": 4317954, - "name": "Santo Expedito do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 5977, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9074, - -51.6434 - ] - } - }, - { - "ibge": 3160603, - "name": "Santo Hipólito", - "capital": 0, - "ibgeState": 31, - "siafi": 5211, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.2968, - -44.2229 - ] - } - }, - { - "ibge": 4124509, - "name": "Santo Inácio", - "capital": 0, - "ibgeState": 41, - "siafi": 7865, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6957, - -51.7969 - ] - } - }, - { - "ibge": 2209500, - "name": "Santo Inácio do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1189, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.42072, - -41.9063 - ] - } - }, - { - "ibge": 3548401, - "name": "Santópolis do Aguapeí", - "capital": 0, - "ibgeState": 35, - "siafi": 7069, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6376, - -50.5044 - ] - } - }, - { - "ibge": 3548500, - "name": "Santos", - "capital": 0, - "ibgeState": 35, - "siafi": 7071, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.9535, - -46.335 - ] - } - }, - { - "ibge": 3160702, - "name": "Santos Dumont", - "capital": 0, - "ibgeState": 31, - "siafi": 5213, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4634, - -43.5499 - ] - } - }, - { - "ibge": 2312304, - "name": "São Benedito", - "capital": 0, - "ibgeState": 23, - "siafi": 1547, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.04713, - -40.8596 - ] - } - }, - { - "ibge": 2110401, - "name": "São Benedito do Rio Preto", - "capital": 0, - "ibgeState": 21, - "siafi": 905, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.33515, - -43.5287 - ] - } - }, - { - "ibge": 2612901, - "name": "São Benedito do Sul", - "capital": 0, - "ibgeState": 26, - "siafi": 2557, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.8166, - -35.9453 - ] - } - }, - { - "ibge": 2513927, - "name": "São Bentinho", - "capital": 0, - "ibgeState": 25, - "siafi": 518, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.88596, - -37.7243 - ] - } - }, - { - "ibge": 2513901, - "name": "São Bento", - "capital": 0, - "ibgeState": 25, - "siafi": 2179, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.48529, - -37.4488 - ] - } - }, - { - "ibge": 2110500, - "name": "São Bento", - "capital": 0, - "ibgeState": 21, - "siafi": 907, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.69781, - -44.8289 - ] - } - }, - { - "ibge": 3160801, - "name": "São Bento Abade", - "capital": 0, - "ibgeState": 31, - "siafi": 5215, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5839, - -45.0699 - ] - } - }, - { - "ibge": 2411601, - "name": "São Bento do Norte", - "capital": 0, - "ibgeState": 24, - "siafi": 1831, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.09259, - -35.9587 - ] - } - }, - { - "ibge": 3548609, - "name": "São Bento do Sapucaí", - "capital": 0, - "ibgeState": 35, - "siafi": 7073, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6837, - -45.7287 - ] - } - }, - { - "ibge": 4215802, - "name": "São Bento do Sul", - "capital": 0, - "ibgeState": 42, - "siafi": 8311, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.2495, - -49.3831 - ] - } - }, - { - "ibge": 1720101, - "name": "São Bento do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 197, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.0258, - -47.9012 - ] - } - }, - { - "ibge": 2411700, - "name": "São Bento do Trairí", - "capital": 0, - "ibgeState": 24, - "siafi": 1833, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.33798, - -36.0863 - ] - } - }, - { - "ibge": 2613008, - "name": "São Bento do Una", - "capital": 0, - "ibgeState": 26, - "siafi": 2559, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.52637, - -36.4465 - ] - } - }, - { - "ibge": 4215752, - "name": "São Bernardino", - "capital": 0, - "ibgeState": 42, - "siafi": 942, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.4739, - -52.9687 - ] - } - }, - { - "ibge": 2110609, - "name": "São Bernardo", - "capital": 0, - "ibgeState": 21, - "siafi": 909, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.37223, - -42.4191 - ] - } - }, - { - "ibge": 3548708, - "name": "São Bernardo do Campo", - "capital": 0, - "ibgeState": 35, - "siafi": 7075, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6914, - -46.5646 - ] - } - }, - { - "ibge": 4215901, - "name": "São Bonifácio", - "capital": 0, - "ibgeState": 42, - "siafi": 8313, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9009, - -48.9326 - ] - } - }, - { - "ibge": 4318002, - "name": "São Borja", - "capital": 0, - "ibgeState": 43, - "siafi": 8863, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6578, - -56.0036 - ] - } - }, - { - "ibge": 2708204, - "name": "São Brás", - "capital": 0, - "ibgeState": 27, - "siafi": 2863, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.1141, - -36.8522 - ] - } - }, - { - "ibge": 3160900, - "name": "São Brás do Suaçuí", - "capital": 0, - "ibgeState": 31, - "siafi": 5217, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6242, - -43.9515 - ] - } - }, - { - "ibge": 2209559, - "name": "São Braz do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 2263, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.05797, - -43.0076 - ] - } - }, - { - "ibge": 2613107, - "name": "São Caetano", - "capital": 0, - "ibgeState": 26, - "siafi": 2561, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.33763, - -36.2869 - ] - } - }, - { - "ibge": 1507102, - "name": "São Caetano de Odivelas", - "capital": 0, - "ibgeState": 15, - "siafi": 541, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.747293, - -48.0246 - ] - } - }, - { - "ibge": 3548807, - "name": "São Caetano do Sul", - "capital": 0, - "ibgeState": 35, - "siafi": 7077, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6229, - -46.5548 - ] - } - }, - { - "ibge": 3548906, - "name": "São Carlos", - "capital": 0, - "ibgeState": 35, - "siafi": 7079, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0174, - -47.886 - ] - } - }, - { - "ibge": 4216008, - "name": "São Carlos", - "capital": 0, - "ibgeState": 42, - "siafi": 8315, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0798, - -53.0037 - ] - } - }, - { - "ibge": 4124608, - "name": "São Carlos do Ivaí", - "capital": 0, - "ibgeState": 41, - "siafi": 7867, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3158, - -52.4761 - ] - } - }, - { - "ibge": 2806701, - "name": "São Cristóvão", - "capital": 0, - "ibgeState": 28, - "siafi": 3233, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.0084, - -37.2044 - ] - } - }, - { - "ibge": 4216057, - "name": "São Cristovão do Sul", - "capital": 0, - "ibgeState": 42, - "siafi": 5573, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2666, - -50.4388 - ] - } - }, - { - "ibge": 2928901, - "name": "São Desidério", - "capital": 0, - "ibgeState": 29, - "siafi": 3877, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.3572, - -44.9769 - ] - } - }, - { - "ibge": 2928950, - "name": "São Domingos", - "capital": 0, - "ibgeState": 29, - "siafi": 3029, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.4649, - -39.5268 - ] - } - }, - { - "ibge": 4216107, - "name": "São Domingos", - "capital": 0, - "ibgeState": 42, - "siafi": 8317, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.5548, - -52.5313 - ] - } - }, - { - "ibge": 2513968, - "name": "São Domingos", - "capital": 0, - "ibgeState": 25, - "siafi": 522, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.80313, - -37.9488 - ] - } - }, - { - "ibge": 2806800, - "name": "São Domingos", - "capital": 0, - "ibgeState": 28, - "siafi": 3235, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7916, - -37.5685 - ] - } - }, - { - "ibge": 5219803, - "name": "São Domingos", - "capital": 0, - "ibgeState": 52, - "siafi": 9591, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.621, - -46.7415 - ] - } - }, - { - "ibge": 3160959, - "name": "São Domingos das Dores", - "capital": 0, - "ibgeState": 31, - "siafi": 710, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5246, - -42.0106 - ] - } - }, - { - "ibge": 1507151, - "name": "São Domingos do Araguaia", - "capital": 0, - "ibgeState": 15, - "siafi": 381, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.53732, - -48.7366 - ] - } - }, - { - "ibge": 2110658, - "name": "São Domingos do Azeitão", - "capital": 0, - "ibgeState": 21, - "siafi": 228, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.81471, - -44.6509 - ] - } - }, - { - "ibge": 1507201, - "name": "São Domingos do Capim", - "capital": 0, - "ibgeState": 15, - "siafi": 543, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.68768, - -47.7665 - ] - } - }, - { - "ibge": 2513943, - "name": "São Domingos do Cariri", - "capital": 0, - "ibgeState": 25, - "siafi": 520, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.63273, - -36.4374 - ] - } - }, - { - "ibge": 2110708, - "name": "São Domingos do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 911, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.58095, - -44.3822 - ] - } - }, - { - "ibge": 3204658, - "name": "São Domingos do Norte", - "capital": 0, - "ibgeState": 32, - "siafi": 2933, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.1452, - -40.6281 - ] - } - }, - { - "ibge": 3161007, - "name": "São Domingos do Prata", - "capital": 0, - "ibgeState": 31, - "siafi": 5219, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8678, - -42.971 - ] - } - }, - { - "ibge": 4318051, - "name": "São Domingos do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 7351, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5312, - -51.886 - ] - } - }, - { - "ibge": 2929107, - "name": "São Felipe", - "capital": 0, - "ibgeState": 29, - "siafi": 3881, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.8394, - -39.0893 - ] - } - }, - { - "ibge": 1101484, - "name": "São Felipe D'Oeste", - "capital": 0, - "ibgeState": 11, - "siafi": 18, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.9023, - -61.5026 - ] - } - }, - { - "ibge": 2929008, - "name": "São Félix", - "capital": 0, - "ibgeState": 29, - "siafi": 3879, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.6104, - -38.9727 - ] - } - }, - { - "ibge": 2110807, - "name": "São Félix de Balsas", - "capital": 0, - "ibgeState": 21, - "siafi": 913, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.07535, - -44.8092 - ] - } - }, - { - "ibge": 3161056, - "name": "São Félix de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 712, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5959, - -41.4889 - ] - } - }, - { - "ibge": 5107859, - "name": "São Félix do Araguaia", - "capital": 0, - "ibgeState": 51, - "siafi": 9183, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.615, - -50.6706 - ] - } - }, - { - "ibge": 2929057, - "name": "São Félix do Coribe", - "capital": 0, - "ibgeState": 29, - "siafi": 3031, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.4019, - -44.1837 - ] - } - }, - { - "ibge": 2209609, - "name": "São Félix do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1191, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.93485, - -42.1172 - ] - } - }, - { - "ibge": 1720150, - "name": "São Félix do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 363, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.1615, - -46.6618 - ] - } - }, - { - "ibge": 1507300, - "name": "São Félix do Xingu", - "capital": 0, - "ibgeState": 15, - "siafi": 545, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.64254, - -51.9904 - ] - } - }, - { - "ibge": 2411809, - "name": "São Fernando", - "capital": 0, - "ibgeState": 24, - "siafi": 1835, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.37975, - -37.1864 - ] - } - }, - { - "ibge": 3304805, - "name": "São Fidélis", - "capital": 0, - "ibgeState": 33, - "siafi": 5895, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6551, - -41.756 - ] - } - }, - { - "ibge": 3549003, - "name": "São Francisco", - "capital": 0, - "ibgeState": 35, - "siafi": 7081, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3623, - -50.6952 - ] - } - }, - { - "ibge": 2513984, - "name": "São Francisco", - "capital": 0, - "ibgeState": 25, - "siafi": 524, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.60773, - -38.0968 - ] - } - }, - { - "ibge": 2806909, - "name": "São Francisco", - "capital": 0, - "ibgeState": 28, - "siafi": 3237, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.3442, - -36.8869 - ] - } - }, - { - "ibge": 3161106, - "name": "São Francisco", - "capital": 0, - "ibgeState": 31, - "siafi": 5221, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.9514, - -44.8593 - ] - } - }, - { - "ibge": 4318101, - "name": "São Francisco de Assis", - "capital": 0, - "ibgeState": 43, - "siafi": 8865, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5547, - -55.1253 - ] - } - }, - { - "ibge": 2209658, - "name": "São Francisco de Assis do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 380, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.23599, - -41.6873 - ] - } - }, - { - "ibge": 5219902, - "name": "São Francisco de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9593, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.9256, - -49.2605 - ] - } - }, - { - "ibge": 3304755, - "name": "São Francisco de Itabapoana", - "capital": 0, - "ibgeState": 33, - "siafi": 782, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4702, - -41.1091 - ] - } - }, - { - "ibge": 4318200, - "name": "São Francisco de Paula", - "capital": 0, - "ibgeState": 43, - "siafi": 8867, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4404, - -50.5828 - ] - } - }, - { - "ibge": 3161205, - "name": "São Francisco de Paula", - "capital": 0, - "ibgeState": 31, - "siafi": 5223, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7036, - -44.9838 - ] - } - }, - { - "ibge": 3161304, - "name": "São Francisco de Sales", - "capital": 0, - "ibgeState": 31, - "siafi": 5225, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8611, - -49.7727 - ] - } - }, - { - "ibge": 2110856, - "name": "São Francisco do Brejão", - "capital": 0, - "ibgeState": 21, - "siafi": 230, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.12584, - -47.389 - ] - } - }, - { - "ibge": 2929206, - "name": "São Francisco do Conde", - "capital": 0, - "ibgeState": 29, - "siafi": 3883, - "ddd": 71, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.6183, - -38.6786 - ] - } - }, - { - "ibge": 3161403, - "name": "São Francisco do Glória", - "capital": 0, - "ibgeState": 31, - "siafi": 5227, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7923, - -42.2673 - ] - } - }, - { - "ibge": 1101492, - "name": "São Francisco do Guaporé", - "capital": 0, - "ibgeState": 11, - "siafi": 20, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.052, - -63.568 - ] - } - }, - { - "ibge": 2110906, - "name": "São Francisco do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 915, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.25159, - -42.8668 - ] - } - }, - { - "ibge": 2411908, - "name": "São Francisco do Oeste", - "capital": 0, - "ibgeState": 24, - "siafi": 1821, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.97472, - -38.1519 - ] - } - }, - { - "ibge": 1507409, - "name": "São Francisco do Pará", - "capital": 0, - "ibgeState": 15, - "siafi": 547, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.16963, - -47.7917 - ] - } - }, - { - "ibge": 2209708, - "name": "São Francisco do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1193, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.2463, - -42.541 - ] - } - }, - { - "ibge": 4216206, - "name": "São Francisco do Sul", - "capital": 0, - "ibgeState": 42, - "siafi": 8319, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.2579, - -48.6344 - ] - } - }, - { - "ibge": 4318309, - "name": "São Gabriel", - "capital": 0, - "ibgeState": 43, - "siafi": 8869, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.3337, - -54.3217 - ] - } - }, - { - "ibge": 2929255, - "name": "São Gabriel", - "capital": 0, - "ibgeState": 29, - "siafi": 3989, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.2175, - -41.8843 - ] - } - }, - { - "ibge": 1303809, - "name": "São Gabriel da Cachoeira", - "capital": 0, - "ibgeState": 13, - "siafi": 283, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -0.11909, - -67.084 - ] - } - }, - { - "ibge": 3204708, - "name": "São Gabriel da Palha", - "capital": 0, - "ibgeState": 32, - "siafi": 5693, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.0182, - -40.5365 - ] - } - }, - { - "ibge": 5007695, - "name": "São Gabriel do Oeste", - "capital": 0, - "ibgeState": 50, - "siafi": 9809, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -19.3889, - -54.5507 - ] - } - }, - { - "ibge": 3161502, - "name": "São Geraldo", - "capital": 0, - "ibgeState": 31, - "siafi": 5229, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9252, - -42.8364 - ] - } - }, - { - "ibge": 3161601, - "name": "São Geraldo da Piedade", - "capital": 0, - "ibgeState": 31, - "siafi": 5231, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.8411, - -42.2867 - ] - } - }, - { - "ibge": 1507458, - "name": "São Geraldo do Araguaia", - "capital": 0, - "ibgeState": 15, - "siafi": 619, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.39471, - -48.5592 - ] - } - }, - { - "ibge": 3161650, - "name": "São Geraldo do Baixio", - "capital": 0, - "ibgeState": 31, - "siafi": 714, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.9097, - -41.363 - ] - } - }, - { - "ibge": 3304904, - "name": "São Gonçalo", - "capital": 0, - "ibgeState": 33, - "siafi": 5897, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8268, - -43.0634 - ] - } - }, - { - "ibge": 3161700, - "name": "São Gonçalo do Abaeté", - "capital": 0, - "ibgeState": 31, - "siafi": 5233, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.3315, - -45.8265 - ] - } - }, - { - "ibge": 2412005, - "name": "São Gonçalo do Amarante", - "capital": 0, - "ibgeState": 24, - "siafi": 1837, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.79068, - -35.3257 - ] - } - }, - { - "ibge": 2312403, - "name": "São Gonçalo do Amarante", - "capital": 0, - "ibgeState": 23, - "siafi": 1549, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.60515, - -38.9726 - ] - } - }, - { - "ibge": 2209757, - "name": "São Gonçalo do Gurguéia", - "capital": 0, - "ibgeState": 22, - "siafi": 382, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.0319, - -45.3092 - ] - } - }, - { - "ibge": 3161809, - "name": "São Gonçalo do Pará", - "capital": 0, - "ibgeState": 31, - "siafi": 5235, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9822, - -44.8593 - ] - } - }, - { - "ibge": 2209807, - "name": "São Gonçalo do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1195, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.99393, - -42.7095 - ] - } - }, - { - "ibge": 3161908, - "name": "São Gonçalo do Rio Abaixo", - "capital": 0, - "ibgeState": 31, - "siafi": 5237, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8221, - -43.366 - ] - } - }, - { - "ibge": 3125507, - "name": "São Gonçalo do Rio Preto", - "capital": 0, - "ibgeState": 31, - "siafi": 4509, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.0025, - -43.3854 - ] - } - }, - { - "ibge": 3162005, - "name": "São Gonçalo do Sapucaí", - "capital": 0, - "ibgeState": 31, - "siafi": 5239, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8932, - -45.5893 - ] - } - }, - { - "ibge": 2929305, - "name": "São Gonçalo dos Campos", - "capital": 0, - "ibgeState": 29, - "siafi": 3885, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.4331, - -38.9663 - ] - } - }, - { - "ibge": 3162104, - "name": "São Gotardo", - "capital": 0, - "ibgeState": 31, - "siafi": 5241, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.3087, - -46.0465 - ] - } - }, - { - "ibge": 4318408, - "name": "São Jerônimo", - "capital": 0, - "ibgeState": 43, - "siafi": 8871, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.9716, - -51.7251 - ] - } - }, - { - "ibge": 4124707, - "name": "São Jerônimo da Serra", - "capital": 0, - "ibgeState": 41, - "siafi": 7869, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7218, - -50.7475 - ] - } - }, - { - "ibge": 4124806, - "name": "São João", - "capital": 0, - "ibgeState": 41, - "siafi": 7871, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.8214, - -52.7252 - ] - } - }, - { - "ibge": 2613206, - "name": "São João", - "capital": 0, - "ibgeState": 26, - "siafi": 2563, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.87576, - -36.3653 - ] - } - }, - { - "ibge": 2111003, - "name": "São João Batista", - "capital": 0, - "ibgeState": 21, - "siafi": 917, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.95398, - -44.7953 - ] - } - }, - { - "ibge": 4216305, - "name": "São João Batista", - "capital": 0, - "ibgeState": 42, - "siafi": 8321, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2772, - -48.8474 - ] - } - }, - { - "ibge": 3162203, - "name": "São João Batista do Glória", - "capital": 0, - "ibgeState": 31, - "siafi": 5243, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.635, - -46.508 - ] - } - }, - { - "ibge": 5220009, - "name": "São João d'Aliança", - "capital": 0, - "ibgeState": 52, - "siafi": 9597, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.7048, - -47.5228 - ] - } - }, - { - "ibge": 1400506, - "name": "São João da Baliza", - "capital": 0, - "ibgeState": 14, - "siafi": 313, - "ddd": 95, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - 0.951659, - -59.9133 - ] - } - }, - { - "ibge": 3305000, - "name": "São João da Barra", - "capital": 0, - "ibgeState": 33, - "siafi": 5899, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.638, - -41.0446 - ] - } - }, - { - "ibge": 3549102, - "name": "São João da Boa Vista", - "capital": 0, - "ibgeState": 35, - "siafi": 7083, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9707, - -46.7944 - ] - } - }, - { - "ibge": 2209856, - "name": "São João da Canabrava", - "capital": 0, - "ibgeState": 22, - "siafi": 1291, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.81203, - -41.3415 - ] - } - }, - { - "ibge": 2209872, - "name": "São João da Fronteira", - "capital": 0, - "ibgeState": 22, - "siafi": 384, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.95497, - -41.2569 - ] - } - }, - { - "ibge": 3162252, - "name": "São João da Lagoa", - "capital": 0, - "ibgeState": 31, - "siafi": 716, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.8455, - -44.3507 - ] - } - }, - { - "ibge": 3162302, - "name": "São João da Mata", - "capital": 0, - "ibgeState": 31, - "siafi": 5245, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.928, - -45.9297 - ] - } - }, - { - "ibge": 5220058, - "name": "São João da Paraúna", - "capital": 0, - "ibgeState": 52, - "siafi": 9747, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.8126, - -50.4092 - ] - } - }, - { - "ibge": 1507466, - "name": "São João da Ponta", - "capital": 0, - "ibgeState": 15, - "siafi": 64, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.857885, - -47.918 - ] - } - }, - { - "ibge": 3162401, - "name": "São João da Ponte", - "capital": 0, - "ibgeState": 31, - "siafi": 5247, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.9271, - -44.0096 - ] - } - }, - { - "ibge": 2209906, - "name": "São João da Serra", - "capital": 0, - "ibgeState": 22, - "siafi": 1197, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.51081, - -41.8923 - ] - } - }, - { - "ibge": 4318424, - "name": "São João da Urtiga", - "capital": 0, - "ibgeState": 43, - "siafi": 7349, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.8195, - -51.8257 - ] - } - }, - { - "ibge": 2209955, - "name": "São João da Varjota", - "capital": 0, - "ibgeState": 22, - "siafi": 386, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.94082, - -41.8889 - ] - } - }, - { - "ibge": 3549201, - "name": "São João das Duas Pontes", - "capital": 0, - "ibgeState": 35, - "siafi": 7085, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3879, - -50.3792 - ] - } - }, - { - "ibge": 3162450, - "name": "São João das Missões", - "capital": 0, - "ibgeState": 31, - "siafi": 718, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.8859, - -44.0922 - ] - } - }, - { - "ibge": 3549250, - "name": "São João de Iracema", - "capital": 0, - "ibgeState": 35, - "siafi": 2941, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5111, - -50.3561 - ] - } - }, - { - "ibge": 3305109, - "name": "São João de Meriti", - "capital": 0, - "ibgeState": 33, - "siafi": 5901, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8058, - -43.3729 - ] - } - }, - { - "ibge": 1507474, - "name": "São João de Pirabas", - "capital": 0, - "ibgeState": 15, - "siafi": 393, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.780222, - -47.181 - ] - } - }, - { - "ibge": 3162500, - "name": "São João del Rei", - "capital": 0, - "ibgeState": 31, - "siafi": 5249, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1311, - -44.2526 - ] - } - }, - { - "ibge": 1507508, - "name": "São João do Araguaia", - "capital": 0, - "ibgeState": 15, - "siafi": 549, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.36334, - -48.7926 - ] - } - }, - { - "ibge": 2209971, - "name": "São João do Arraial", - "capital": 0, - "ibgeState": 22, - "siafi": 388, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.8186, - -42.4459 - ] - } - }, - { - "ibge": 4124905, - "name": "São João do Caiuá", - "capital": 0, - "ibgeState": 41, - "siafi": 7873, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8535, - -52.3411 - ] - } - }, - { - "ibge": 2514008, - "name": "São João do Cariri", - "capital": 0, - "ibgeState": 25, - "siafi": 2181, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.38168, - -36.5345 - ] - } - }, - { - "ibge": 2111029, - "name": "São João do Carú", - "capital": 0, - "ibgeState": 21, - "siafi": 232, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.5503, - -46.2507 - ] - } - }, - { - "ibge": 4216354, - "name": "São João do Itaperiú", - "capital": 0, - "ibgeState": 42, - "siafi": 5551, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.6213, - -48.7683 - ] - } - }, - { - "ibge": 4125001, - "name": "São João do Ivaí", - "capital": 0, - "ibgeState": 41, - "siafi": 7875, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.9833, - -51.8215 - ] - } - }, - { - "ibge": 2312502, - "name": "São João do Jaguaribe", - "capital": 0, - "ibgeState": 23, - "siafi": 1551, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.27516, - -38.2694 - ] - } - }, - { - "ibge": 3162559, - "name": "São João do Manhuaçu", - "capital": 0, - "ibgeState": 31, - "siafi": 2677, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3933, - -42.1533 - ] - } - }, - { - "ibge": 3162575, - "name": "São João do Manteninha", - "capital": 0, - "ibgeState": 31, - "siafi": 2679, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.723, - -41.1628 - ] - } - }, - { - "ibge": 4216255, - "name": "São João do Oeste", - "capital": 0, - "ibgeState": 42, - "siafi": 5753, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0984, - -53.5977 - ] - } - }, - { - "ibge": 3162609, - "name": "São João do Oriente", - "capital": 0, - "ibgeState": 31, - "siafi": 5251, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.3384, - -42.1575 - ] - } - }, - { - "ibge": 3162658, - "name": "São João do Pacuí", - "capital": 0, - "ibgeState": 31, - "siafi": 720, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.5373, - -44.5134 - ] - } - }, - { - "ibge": 3162708, - "name": "São João do Paraíso", - "capital": 0, - "ibgeState": 31, - "siafi": 5253, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.3168, - -42.0213 - ] - } - }, - { - "ibge": 2111052, - "name": "São João do Paraíso", - "capital": 0, - "ibgeState": 21, - "siafi": 234, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.45634, - -47.0594 - ] - } - }, - { - "ibge": 3549300, - "name": "São João do Pau d'Alho", - "capital": 0, - "ibgeState": 35, - "siafi": 7087, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2662, - -51.6672 - ] - } - }, - { - "ibge": 2210003, - "name": "São João do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1199, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.35466, - -42.2559 - ] - } - }, - { - "ibge": 4318432, - "name": "São João do Polêsine", - "capital": 0, - "ibgeState": 43, - "siafi": 5791, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6194, - -53.4439 - ] - } - }, - { - "ibge": 2500700, - "name": "São João do Rio do Peixe", - "capital": 0, - "ibgeState": 25, - "siafi": 1913, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.72195, - -38.4468 - ] - } - }, - { - "ibge": 2412104, - "name": "São João do Sabugi", - "capital": 0, - "ibgeState": 24, - "siafi": 1839, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.71387, - -37.2027 - ] - } - }, - { - "ibge": 2111078, - "name": "São João do Soter", - "capital": 0, - "ibgeState": 21, - "siafi": 236, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.10821, - -43.8163 - ] - } - }, - { - "ibge": 4216404, - "name": "São João do Sul", - "capital": 0, - "ibgeState": 42, - "siafi": 8323, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.2154, - -49.8094 - ] - } - }, - { - "ibge": 2514107, - "name": "São João do Tigre", - "capital": 0, - "ibgeState": 25, - "siafi": 2183, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.07703, - -36.8547 - ] - } - }, - { - "ibge": 4125100, - "name": "São João do Triunfo", - "capital": 0, - "ibgeState": 41, - "siafi": 7877, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.683, - -50.2949 - ] - } - }, - { - "ibge": 2111102, - "name": "São João dos Patos", - "capital": 0, - "ibgeState": 21, - "siafi": 919, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.4934, - -43.7036 - ] - } - }, - { - "ibge": 3162807, - "name": "São João Evangelista", - "capital": 0, - "ibgeState": 31, - "siafi": 5255, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.548, - -42.7655 - ] - } - }, - { - "ibge": 3162906, - "name": "São João Nepomuceno", - "capital": 0, - "ibgeState": 31, - "siafi": 5257, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5381, - -43.0069 - ] - } - }, - { - "ibge": 4216503, - "name": "São Joaquim", - "capital": 0, - "ibgeState": 42, - "siafi": 8325, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.2887, - -49.9457 - ] - } - }, - { - "ibge": 3549409, - "name": "São Joaquim da Barra", - "capital": 0, - "ibgeState": 35, - "siafi": 7089, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5812, - -47.8593 - ] - } - }, - { - "ibge": 3162922, - "name": "São Joaquim de Bicas", - "capital": 0, - "ibgeState": 31, - "siafi": 722, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.048, - -44.2749 - ] - } - }, - { - "ibge": 2613305, - "name": "São Joaquim do Monte", - "capital": 0, - "ibgeState": 26, - "siafi": 2565, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.43196, - -35.8035 - ] - } - }, - { - "ibge": 4318440, - "name": "São Jorge", - "capital": 0, - "ibgeState": 43, - "siafi": 7347, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.4984, - -51.7064 - ] - } - }, - { - "ibge": 4125209, - "name": "São Jorge d'Oeste", - "capital": 0, - "ibgeState": 41, - "siafi": 7881, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.7085, - -52.9204 - ] - } - }, - { - "ibge": 4125308, - "name": "São Jorge do Ivaí", - "capital": 0, - "ibgeState": 41, - "siafi": 7879, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4336, - -52.2929 - ] - } - }, - { - "ibge": 4125357, - "name": "São Jorge do Patrocínio", - "capital": 0, - "ibgeState": 41, - "siafi": 7999, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7647, - -53.8823 - ] - } - }, - { - "ibge": 4216602, - "name": "São José", - "capital": 0, - "ibgeState": 42, - "siafi": 8327, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6136, - -48.6366 - ] - } - }, - { - "ibge": 3162948, - "name": "São José da Barra", - "capital": 0, - "ibgeState": 31, - "siafi": 724, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7178, - -46.313 - ] - } - }, - { - "ibge": 3549508, - "name": "São José da Bela Vista", - "capital": 0, - "ibgeState": 35, - "siafi": 7091, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.5935, - -47.6424 - ] - } - }, - { - "ibge": 4125407, - "name": "São José da Boa Vista", - "capital": 0, - "ibgeState": 41, - "siafi": 7883, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.9122, - -49.6577 - ] - } - }, - { - "ibge": 2613404, - "name": "São José da Coroa Grande", - "capital": 0, - "ibgeState": 26, - "siafi": 2567, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.88937, - -35.1515 - ] - } - }, - { - "ibge": 2514206, - "name": "São José da Lagoa Tapada", - "capital": 0, - "ibgeState": 25, - "siafi": 2185, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.93646, - -38.1622 - ] - } - }, - { - "ibge": 2708303, - "name": "São José da Laje", - "capital": 0, - "ibgeState": 27, - "siafi": 2865, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.01278, - -36.0515 - ] - } - }, - { - "ibge": 3162955, - "name": "São José da Lapa", - "capital": 0, - "ibgeState": 31, - "siafi": 2649, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6971, - -43.9586 - ] - } - }, - { - "ibge": 3163003, - "name": "São José da Safira", - "capital": 0, - "ibgeState": 31, - "siafi": 5259, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.3243, - -42.1431 - ] - } - }, - { - "ibge": 2708402, - "name": "São José da Tapera", - "capital": 0, - "ibgeState": 27, - "siafi": 2867, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.55768, - -37.3831 - ] - } - }, - { - "ibge": 3163102, - "name": "São José da Varginha", - "capital": 0, - "ibgeState": 31, - "siafi": 5261, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7006, - -44.556 - ] - } - }, - { - "ibge": 2929354, - "name": "São José da Vitória", - "capital": 0, - "ibgeState": 29, - "siafi": 3035, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.0787, - -39.3437 - ] - } - }, - { - "ibge": 4318457, - "name": "São José das Missões", - "capital": 0, - "ibgeState": 43, - "siafi": 5989, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7789, - -53.1226 - ] - } - }, - { - "ibge": 4125456, - "name": "São José das Palmeiras", - "capital": 0, - "ibgeState": 41, - "siafi": 8471, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.8369, - -54.0572 - ] - } - }, - { - "ibge": 2514305, - "name": "São José de Caiana", - "capital": 0, - "ibgeState": 25, - "siafi": 2187, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.24636, - -38.2989 - ] - } - }, - { - "ibge": 2514404, - "name": "São José de Espinharas", - "capital": 0, - "ibgeState": 25, - "siafi": 2189, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.83974, - -37.3214 - ] - } - }, - { - "ibge": 2412203, - "name": "São José de Mipibu", - "capital": 0, - "ibgeState": 24, - "siafi": 1841, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.0773, - -35.2417 - ] - } - }, - { - "ibge": 2514503, - "name": "São José de Piranhas", - "capital": 0, - "ibgeState": 25, - "siafi": 2191, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.1187, - -38.502 - ] - } - }, - { - "ibge": 2514552, - "name": "São José de Princesa", - "capital": 0, - "ibgeState": 25, - "siafi": 528, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.73633, - -38.0894 - ] - } - }, - { - "ibge": 2111201, - "name": "São José de Ribamar", - "capital": 0, - "ibgeState": 21, - "siafi": 889, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.54704, - -44.0597 - ] - } - }, - { - "ibge": 3305133, - "name": "São José de Ubá", - "capital": 0, - "ibgeState": 33, - "siafi": 784, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3661, - -41.9511 - ] - } - }, - { - "ibge": 3163201, - "name": "São José do Alegre", - "capital": 0, - "ibgeState": 31, - "siafi": 5263, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3243, - -45.5258 - ] - } - }, - { - "ibge": 3549607, - "name": "São José do Barreiro", - "capital": 0, - "ibgeState": 35, - "siafi": 7093, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6414, - -44.5774 - ] - } - }, - { - "ibge": 2613503, - "name": "São José do Belmonte", - "capital": 0, - "ibgeState": 26, - "siafi": 2569, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.85723, - -38.7577 - ] - } - }, - { - "ibge": 2514602, - "name": "São José do Bonfim", - "capital": 0, - "ibgeState": 25, - "siafi": 2193, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.1607, - -37.3036 - ] - } - }, - { - "ibge": 2514651, - "name": "São José do Brejo do Cruz", - "capital": 0, - "ibgeState": 25, - "siafi": 530, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.21054, - -37.3601 - ] - } - }, - { - "ibge": 3204807, - "name": "São José do Calçado", - "capital": 0, - "ibgeState": 32, - "siafi": 5695, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0274, - -41.6636 - ] - } - }, - { - "ibge": 2412302, - "name": "São José do Campestre", - "capital": 0, - "ibgeState": 24, - "siafi": 1843, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.31087, - -35.7067 - ] - } - }, - { - "ibge": 4216701, - "name": "São José do Cedro", - "capital": 0, - "ibgeState": 42, - "siafi": 8329, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.4561, - -53.4955 - ] - } - }, - { - "ibge": 4216800, - "name": "São José do Cerrito", - "capital": 0, - "ibgeState": 42, - "siafi": 8331, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6602, - -50.5733 - ] - } - }, - { - "ibge": 2210052, - "name": "São José do Divino", - "capital": 0, - "ibgeState": 22, - "siafi": 2285, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.81411, - -41.8308 - ] - } - }, - { - "ibge": 3163300, - "name": "São José do Divino", - "capital": 0, - "ibgeState": 31, - "siafi": 5265, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4793, - -41.3907 - ] - } - }, - { - "ibge": 2613602, - "name": "São José do Egito", - "capital": 0, - "ibgeState": 26, - "siafi": 2571, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.46945, - -37.274 - ] - } - }, - { - "ibge": 3163409, - "name": "São José do Goiabal", - "capital": 0, - "ibgeState": 31, - "siafi": 5267, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9214, - -42.7035 - ] - } - }, - { - "ibge": 4318465, - "name": "São José do Herval", - "capital": 0, - "ibgeState": 43, - "siafi": 7345, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.052, - -52.295 - ] - } - }, - { - "ibge": 4318481, - "name": "São José do Hortêncio", - "capital": 0, - "ibgeState": 43, - "siafi": 7343, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.528, - -51.245 - ] - } - }, - { - "ibge": 4318499, - "name": "São José do Inhacorá", - "capital": 0, - "ibgeState": 43, - "siafi": 6059, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7251, - -54.1275 - ] - } - }, - { - "ibge": 2929370, - "name": "São José do Jacuípe", - "capital": 0, - "ibgeState": 29, - "siafi": 3033, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.4137, - -39.8669 - ] - } - }, - { - "ibge": 3163508, - "name": "São José do Jacuri", - "capital": 0, - "ibgeState": 31, - "siafi": 5269, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.281, - -42.6729 - ] - } - }, - { - "ibge": 3163607, - "name": "São José do Mantimento", - "capital": 0, - "ibgeState": 31, - "siafi": 5271, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0058, - -41.7486 - ] - } - }, - { - "ibge": 4318507, - "name": "São José do Norte", - "capital": 0, - "ibgeState": 43, - "siafi": 8873, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -32.0151, - -52.0331 - ] - } - }, - { - "ibge": 4318606, - "name": "São José do Ouro", - "capital": 0, - "ibgeState": 43, - "siafi": 8875, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7707, - -51.5966 - ] - } - }, - { - "ibge": 2210102, - "name": "São José do Peixe", - "capital": 0, - "ibgeState": 22, - "siafi": 1201, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.48554, - -42.5672 - ] - } - }, - { - "ibge": 2210201, - "name": "São José do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1203, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.87194, - -41.4731 - ] - } - }, - { - "ibge": 5107297, - "name": "São José do Povo", - "capital": 0, - "ibgeState": 51, - "siafi": 6087, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -16.4549, - -54.2487 - ] - } - }, - { - "ibge": 5107305, - "name": "São José do Rio Claro", - "capital": 0, - "ibgeState": 51, - "siafi": 9199, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -13.4398, - -56.7218 - ] - } - }, - { - "ibge": 3549706, - "name": "São José do Rio Pardo", - "capital": 0, - "ibgeState": 35, - "siafi": 7095, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5953, - -46.8873 - ] - } - }, - { - "ibge": 3549805, - "name": "São José do Rio Preto", - "capital": 0, - "ibgeState": 35, - "siafi": 7097, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8113, - -49.3758 - ] - } - }, - { - "ibge": 2514701, - "name": "São José do Sabugi", - "capital": 0, - "ibgeState": 25, - "siafi": 2195, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.76295, - -36.7972 - ] - } - }, - { - "ibge": 2412401, - "name": "São José do Seridó", - "capital": 0, - "ibgeState": 24, - "siafi": 1845, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.44002, - -36.8746 - ] - } - }, - { - "ibge": 4318614, - "name": "São José do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 1170, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5448, - -51.4821 - ] - } - }, - { - "ibge": 3305158, - "name": "São José do Vale do Rio Preto", - "capital": 0, - "ibgeState": 33, - "siafi": 6009, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1525, - -42.9327 - ] - } - }, - { - "ibge": 5107354, - "name": "São José do Xingu", - "capital": 0, - "ibgeState": 51, - "siafi": 133, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.7982, - -52.7486 - ] - } - }, - { - "ibge": 4318622, - "name": "São José dos Ausentes", - "capital": 0, - "ibgeState": 43, - "siafi": 6015, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.7476, - -50.0677 - ] - } - }, - { - "ibge": 2111250, - "name": "São José dos Basílios", - "capital": 0, - "ibgeState": 21, - "siafi": 238, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.05493, - -44.5809 - ] - } - }, - { - "ibge": 3549904, - "name": "São José dos Campos", - "capital": 0, - "ibgeState": 35, - "siafi": 7099, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1896, - -45.8841 - ] - } - }, - { - "ibge": 2514800, - "name": "São José dos Cordeiros", - "capital": 0, - "ibgeState": 25, - "siafi": 2197, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.38775, - -36.8085 - ] - } - }, - { - "ibge": 4125506, - "name": "São José dos Pinhais", - "capital": 0, - "ibgeState": 41, - "siafi": 7885, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.5313, - -49.2031 - ] - } - }, - { - "ibge": 5107107, - "name": "São José dos Quatro Marcos", - "capital": 0, - "ibgeState": 51, - "siafi": 8993, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.6276, - -58.1772 - ] - } - }, - { - "ibge": 2514453, - "name": "São José dos Ramos", - "capital": 0, - "ibgeState": 25, - "siafi": 526, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.25238, - -35.3725 - ] - } - }, - { - "ibge": 2210300, - "name": "São Julião", - "capital": 0, - "ibgeState": 22, - "siafi": 1205, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.08391, - -40.8246 - ] - } - }, - { - "ibge": 4318705, - "name": "São Leopoldo", - "capital": 0, - "ibgeState": 43, - "siafi": 8877, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.7545, - -51.1498 - ] - } - }, - { - "ibge": 3163706, - "name": "São Lourenço", - "capital": 0, - "ibgeState": 31, - "siafi": 5273, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1166, - -45.0506 - ] - } - }, - { - "ibge": 2613701, - "name": "São Lourenço da Mata", - "capital": 0, - "ibgeState": 26, - "siafi": 2573, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.00684, - -35.0124 - ] - } - }, - { - "ibge": 3549953, - "name": "São Lourenço da Serra", - "capital": 0, - "ibgeState": 35, - "siafi": 5447, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8491, - -46.9432 - ] - } - }, - { - "ibge": 4216909, - "name": "São Lourenço do Oeste", - "capital": 0, - "ibgeState": 42, - "siafi": 8333, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.3557, - -52.8498 - ] - } - }, - { - "ibge": 2210359, - "name": "São Lourenço do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 2265, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.16463, - -42.5496 - ] - } - }, - { - "ibge": 4318804, - "name": "São Lourenço do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8879, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.3564, - -51.9715 - ] - } - }, - { - "ibge": 4217006, - "name": "São Ludgero", - "capital": 0, - "ibgeState": 42, - "siafi": 8335, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3144, - -49.1806 - ] - } - }, - { - "ibge": 2111300, - "name": "São Luís", - "capital": 1, - "ibgeState": 21, - "siafi": 921, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.53874, - -44.2825 - ] - } - }, - { - "ibge": 5220108, - "name": "São Luís de Montes Belos", - "capital": 0, - "ibgeState": 52, - "siafi": 9599, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.5211, - -50.3726 - ] - } - }, - { - "ibge": 2312601, - "name": "São Luís do Curu", - "capital": 0, - "ibgeState": 23, - "siafi": 1553, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.66976, - -39.2391 - ] - } - }, - { - "ibge": 2210375, - "name": "São Luis do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 390, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.81936, - -41.3175 - ] - } - }, - { - "ibge": 2708501, - "name": "São Luís do Quitunde", - "capital": 0, - "ibgeState": 27, - "siafi": 2869, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.31816, - -35.5606 - ] - } - }, - { - "ibge": 2111409, - "name": "São Luís Gonzaga do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 805, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.38541, - -44.6654 - ] - } - }, - { - "ibge": 1400605, - "name": "São Luiz", - "capital": 0, - "ibgeState": 14, - "siafi": 315, - "ddd": 95, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - 1.01019, - -60.0419 - ] - } - }, - { - "ibge": 5220157, - "name": "São Luiz do Norte", - "capital": 0, - "ibgeState": 52, - "siafi": 9749, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.8608, - -49.3285 - ] - } - }, - { - "ibge": 3550001, - "name": "São Luiz do Paraitinga", - "capital": 0, - "ibgeState": 35, - "siafi": 7101, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.222, - -45.3109 - ] - } - }, - { - "ibge": 4318903, - "name": "São Luiz Gonzaga", - "capital": 0, - "ibgeState": 43, - "siafi": 8881, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.412, - -54.9559 - ] - } - }, - { - "ibge": 2514909, - "name": "São Mamede", - "capital": 0, - "ibgeState": 25, - "siafi": 2199, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.92386, - -37.0954 - ] - } - }, - { - "ibge": 4125555, - "name": "São Manoel do Paraná", - "capital": 0, - "ibgeState": 41, - "siafi": 5515, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3941, - -52.6454 - ] - } - }, - { - "ibge": 3550100, - "name": "São Manuel", - "capital": 0, - "ibgeState": 35, - "siafi": 7103, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7321, - -48.5723 - ] - } - }, - { - "ibge": 4319000, - "name": "São Marcos", - "capital": 0, - "ibgeState": 43, - "siafi": 8883, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.9677, - -51.0696 - ] - } - }, - { - "ibge": 4217105, - "name": "São Martinho", - "capital": 0, - "ibgeState": 42, - "siafi": 8337, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.1609, - -48.9867 - ] - } - }, - { - "ibge": 4319109, - "name": "São Martinho", - "capital": 0, - "ibgeState": 43, - "siafi": 8885, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7112, - -53.9699 - ] - } - }, - { - "ibge": 4319125, - "name": "São Martinho da Serra", - "capital": 0, - "ibgeState": 43, - "siafi": 5793, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5397, - -53.859 - ] - } - }, - { - "ibge": 3204906, - "name": "São Mateus", - "capital": 0, - "ibgeState": 32, - "siafi": 5697, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7214, - -39.8579 - ] - } - }, - { - "ibge": 2111508, - "name": "São Mateus do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 923, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.03736, - -44.4707 - ] - } - }, - { - "ibge": 4125605, - "name": "São Mateus do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 7887, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.8677, - -50.384 - ] - } - }, - { - "ibge": 2412500, - "name": "São Miguel", - "capital": 0, - "ibgeState": 24, - "siafi": 1847, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.20283, - -38.4947 - ] - } - }, - { - "ibge": 3550209, - "name": "São Miguel Arcanjo", - "capital": 0, - "ibgeState": 35, - "siafi": 7105, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8782, - -47.9935 - ] - } - }, - { - "ibge": 2210383, - "name": "São Miguel da Baixa Grande", - "capital": 0, - "ibgeState": 22, - "siafi": 392, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.85646, - -42.1934 - ] - } - }, - { - "ibge": 4217154, - "name": "São Miguel da Boa Vista", - "capital": 0, - "ibgeState": 42, - "siafi": 5755, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.687, - -53.2511 - ] - } - }, - { - "ibge": 2929404, - "name": "São Miguel das Matas", - "capital": 0, - "ibgeState": 29, - "siafi": 3887, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.0434, - -39.4578 - ] - } - }, - { - "ibge": 4319158, - "name": "São Miguel das Missões", - "capital": 0, - "ibgeState": 43, - "siafi": 7341, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.556, - -54.5559 - ] - } - }, - { - "ibge": 2515005, - "name": "São Miguel de Taipu", - "capital": 0, - "ibgeState": 25, - "siafi": 2201, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.24764, - -35.2016 - ] - } - }, - { - "ibge": 2807006, - "name": "São Miguel do Aleixo", - "capital": 0, - "ibgeState": 28, - "siafi": 3239, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.3847, - -37.3836 - ] - } - }, - { - "ibge": 3163805, - "name": "São Miguel do Anta", - "capital": 0, - "ibgeState": 31, - "siafi": 5275, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7067, - -42.7174 - ] - } - }, - { - "ibge": 5220207, - "name": "São Miguel do Araguaia", - "capital": 0, - "ibgeState": 52, - "siafi": 9601, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.2731, - -50.1634 - ] - } - }, - { - "ibge": 2210391, - "name": "São Miguel do Fidalgo", - "capital": 0, - "ibgeState": 22, - "siafi": 394, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.59713, - -42.3676 - ] - } - }, - { - "ibge": 2412559, - "name": "São Miguel do Gostoso", - "capital": 0, - "ibgeState": 24, - "siafi": 430, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.12302, - -35.6354 - ] - } - }, - { - "ibge": 1507607, - "name": "São Miguel do Guamá", - "capital": 0, - "ibgeState": 15, - "siafi": 551, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.61307, - -47.4784 - ] - } - }, - { - "ibge": 1100320, - "name": "São Miguel do Guaporé", - "capital": 0, - "ibgeState": 11, - "siafi": 45, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.6953, - -62.7192 - ] - } - }, - { - "ibge": 4125704, - "name": "São Miguel do Iguaçu", - "capital": 0, - "ibgeState": 41, - "siafi": 7889, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.3492, - -54.2405 - ] - } - }, - { - "ibge": 4217204, - "name": "São Miguel do Oeste", - "capital": 0, - "ibgeState": 42, - "siafi": 8339, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7242, - -53.5163 - ] - } - }, - { - "ibge": 5220264, - "name": "São Miguel do Passa Quatro", - "capital": 0, - "ibgeState": 52, - "siafi": 9751, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.0582, - -48.662 - ] - } - }, - { - "ibge": 2210409, - "name": "São Miguel do Tapuio", - "capital": 0, - "ibgeState": 22, - "siafi": 1207, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.49729, - -41.3165 - ] - } - }, - { - "ibge": 1720200, - "name": "São Miguel do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 199, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.56305, - -47.5743 - ] - } - }, - { - "ibge": 2708600, - "name": "São Miguel dos Campos", - "capital": 0, - "ibgeState": 27, - "siafi": 2871, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.78301, - -36.0971 - ] - } - }, - { - "ibge": 2708709, - "name": "São Miguel dos Milagres", - "capital": 0, - "ibgeState": 27, - "siafi": 2873, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.26493, - -35.3763 - ] - } - }, - { - "ibge": 4319208, - "name": "São Nicolau", - "capital": 0, - "ibgeState": 43, - "siafi": 8887, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.1834, - -55.2654 - ] - } - }, - { - "ibge": 5220280, - "name": "São Patrício", - "capital": 0, - "ibgeState": 52, - "siafi": 1064, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.35, - -49.818 - ] - } - }, - { - "ibge": 3550308, - "name": "São Paulo", - "capital": 1, - "ibgeState": 35, - "siafi": 7107, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5329, - -46.6395 - ] - } - }, - { - "ibge": 4319307, - "name": "São Paulo das Missões", - "capital": 0, - "ibgeState": 43, - "siafi": 8889, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.0195, - -54.9404 - ] - } - }, - { - "ibge": 1303908, - "name": "São Paulo de Olivença", - "capital": 0, - "ibgeState": 13, - "siafi": 275, - "ddd": 97, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -3.47292, - -68.9646 - ] - } - }, - { - "ibge": 2412609, - "name": "São Paulo do Potengi", - "capital": 0, - "ibgeState": 24, - "siafi": 1849, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.8994, - -35.7642 - ] - } - }, - { - "ibge": 2412708, - "name": "São Pedro", - "capital": 0, - "ibgeState": 24, - "siafi": 1851, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.90559, - -35.6317 - ] - } - }, - { - "ibge": 3550407, - "name": "São Pedro", - "capital": 0, - "ibgeState": 35, - "siafi": 7109, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5483, - -47.9096 - ] - } - }, - { - "ibge": 2111532, - "name": "São Pedro da Água Branca", - "capital": 0, - "ibgeState": 21, - "siafi": 240, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.08472, - -48.4291 - ] - } - }, - { - "ibge": 3305208, - "name": "São Pedro da Aldeia", - "capital": 0, - "ibgeState": 33, - "siafi": 5903, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8429, - -42.1026 - ] - } - }, - { - "ibge": 5107404, - "name": "São Pedro da Cipa", - "capital": 0, - "ibgeState": 51, - "siafi": 93, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -16.0109, - -54.9176 - ] - } - }, - { - "ibge": 4319356, - "name": "São Pedro da Serra", - "capital": 0, - "ibgeState": 43, - "siafi": 6043, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4193, - -51.5134 - ] - } - }, - { - "ibge": 3163904, - "name": "São Pedro da União", - "capital": 0, - "ibgeState": 31, - "siafi": 5277, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.131, - -46.6123 - ] - } - }, - { - "ibge": 4319364, - "name": "São Pedro das Missões", - "capital": 0, - "ibgeState": 43, - "siafi": 1172, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7706, - -53.2513 - ] - } - }, - { - "ibge": 4217253, - "name": "São Pedro de Alcântara", - "capital": 0, - "ibgeState": 42, - "siafi": 944, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5665, - -48.8048 - ] - } - }, - { - "ibge": 4319372, - "name": "São Pedro do Butiá", - "capital": 0, - "ibgeState": 43, - "siafi": 6063, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.1243, - -54.8926 - ] - } - }, - { - "ibge": 4125753, - "name": "São Pedro do Iguaçu", - "capital": 0, - "ibgeState": 41, - "siafi": 5489, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.9373, - -53.8521 - ] - } - }, - { - "ibge": 4125803, - "name": "São Pedro do Ivaí", - "capital": 0, - "ibgeState": 41, - "siafi": 7891, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8634, - -51.8568 - ] - } - }, - { - "ibge": 4125902, - "name": "São Pedro do Paraná", - "capital": 0, - "ibgeState": 41, - "siafi": 7893, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8239, - -53.2241 - ] - } - }, - { - "ibge": 2210508, - "name": "São Pedro do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1209, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.92078, - -42.7192 - ] - } - }, - { - "ibge": 3164100, - "name": "São Pedro do Suaçuí", - "capital": 0, - "ibgeState": 31, - "siafi": 5281, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.3609, - -42.5981 - ] - } - }, - { - "ibge": 4319406, - "name": "São Pedro do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8891, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6202, - -54.1855 - ] - } - }, - { - "ibge": 3550506, - "name": "São Pedro do Turvo", - "capital": 0, - "ibgeState": 35, - "siafi": 7111, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7453, - -49.7428 - ] - } - }, - { - "ibge": 2111573, - "name": "São Pedro dos Crentes", - "capital": 0, - "ibgeState": 21, - "siafi": 242, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.82389, - -46.5319 - ] - } - }, - { - "ibge": 3164001, - "name": "São Pedro dos Ferros", - "capital": 0, - "ibgeState": 31, - "siafi": 5279, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1732, - -42.5251 - ] - } - }, - { - "ibge": 2412807, - "name": "São Rafael", - "capital": 0, - "ibgeState": 24, - "siafi": 1853, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.79791, - -36.8778 - ] - } - }, - { - "ibge": 2111607, - "name": "São Raimundo das Mangabeiras", - "capital": 0, - "ibgeState": 21, - "siafi": 925, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.02183, - -45.4809 - ] - } - }, - { - "ibge": 2111631, - "name": "São Raimundo do Doca Bezerra", - "capital": 0, - "ibgeState": 21, - "siafi": 244, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.11053, - -45.0696 - ] - } - }, - { - "ibge": 2210607, - "name": "São Raimundo Nonato", - "capital": 0, - "ibgeState": 22, - "siafi": 1211, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.01241, - -42.6987 - ] - } - }, - { - "ibge": 2111672, - "name": "São Roberto", - "capital": 0, - "ibgeState": 21, - "siafi": 246, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.0231, - -45.001 - ] - } - }, - { - "ibge": 3164209, - "name": "São Romão", - "capital": 0, - "ibgeState": 31, - "siafi": 5283, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.3641, - -45.0749 - ] - } - }, - { - "ibge": 3550605, - "name": "São Roque", - "capital": 0, - "ibgeState": 35, - "siafi": 7113, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5226, - -47.1357 - ] - } - }, - { - "ibge": 3164308, - "name": "São Roque de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 5285, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.249, - -46.3639 - ] - } - }, - { - "ibge": 3204955, - "name": "São Roque do Canaã", - "capital": 0, - "ibgeState": 32, - "siafi": 764, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7411, - -40.6526 - ] - } - }, - { - "ibge": 1720259, - "name": "São Salvador do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 333, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.7458, - -48.2352 - ] - } - }, - { - "ibge": 3550704, - "name": "São Sebastião", - "capital": 0, - "ibgeState": 35, - "siafi": 7115, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7951, - -45.4143 - ] - } - }, - { - "ibge": 2708808, - "name": "São Sebastião", - "capital": 0, - "ibgeState": 27, - "siafi": 2875, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.93043, - -36.559 - ] - } - }, - { - "ibge": 4126009, - "name": "São Sebastião da Amoreira", - "capital": 0, - "ibgeState": 41, - "siafi": 7895, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4656, - -50.7625 - ] - } - }, - { - "ibge": 3164407, - "name": "São Sebastião da Bela Vista", - "capital": 0, - "ibgeState": 31, - "siafi": 5287, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1583, - -45.7546 - ] - } - }, - { - "ibge": 1507706, - "name": "São Sebastião da Boa Vista", - "capital": 0, - "ibgeState": 15, - "siafi": 553, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.71597, - -49.5249 - ] - } - }, - { - "ibge": 3550803, - "name": "São Sebastião da Grama", - "capital": 0, - "ibgeState": 35, - "siafi": 7117, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7041, - -46.8208 - ] - } - }, - { - "ibge": 3164431, - "name": "São Sebastião da Vargem Alegre", - "capital": 0, - "ibgeState": 31, - "siafi": 726, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7477, - -43.3679 - ] - } - }, - { - "ibge": 2515104, - "name": "São Sebastião de Lagoa de Roça", - "capital": 0, - "ibgeState": 25, - "siafi": 2203, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.11034, - -35.8678 - ] - } - }, - { - "ibge": 3305307, - "name": "São Sebastião do Alto", - "capital": 0, - "ibgeState": 33, - "siafi": 5905, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9578, - -42.1328 - ] - } - }, - { - "ibge": 3164472, - "name": "São Sebastião do Anta", - "capital": 0, - "ibgeState": 31, - "siafi": 728, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5064, - -41.985 - ] - } - }, - { - "ibge": 4319505, - "name": "São Sebastião do Caí", - "capital": 0, - "ibgeState": 43, - "siafi": 8893, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5885, - -51.3749 - ] - } - }, - { - "ibge": 3164506, - "name": "São Sebastião do Maranhão", - "capital": 0, - "ibgeState": 31, - "siafi": 5289, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.0873, - -42.5659 - ] - } - }, - { - "ibge": 3164605, - "name": "São Sebastião do Oeste", - "capital": 0, - "ibgeState": 31, - "siafi": 5291, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2758, - -45.0063 - ] - } - }, - { - "ibge": 3164704, - "name": "São Sebastião do Paraíso", - "capital": 0, - "ibgeState": 31, - "siafi": 5293, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9167, - -46.9837 - ] - } - }, - { - "ibge": 2929503, - "name": "São Sebastião do Passé", - "capital": 0, - "ibgeState": 29, - "siafi": 3889, - "ddd": 71, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.5123, - -38.4905 - ] - } - }, - { - "ibge": 3164803, - "name": "São Sebastião do Rio Preto", - "capital": 0, - "ibgeState": 31, - "siafi": 5295, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2959, - -43.1757 - ] - } - }, - { - "ibge": 3164902, - "name": "São Sebastião do Rio Verde", - "capital": 0, - "ibgeState": 31, - "siafi": 5297, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2183, - -44.9761 - ] - } - }, - { - "ibge": 1720309, - "name": "São Sebastião do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9603, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.26131, - -48.2021 - ] - } - }, - { - "ibge": 1303957, - "name": "São Sebastião do Uatumã", - "capital": 0, - "ibgeState": 13, - "siafi": 9845, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -2.55915, - -57.8731 - ] - } - }, - { - "ibge": 2515203, - "name": "São Sebastião do Umbuzeiro", - "capital": 0, - "ibgeState": 25, - "siafi": 2205, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.15289, - -37.0138 - ] - } - }, - { - "ibge": 4319604, - "name": "São Sepé", - "capital": 0, - "ibgeState": 43, - "siafi": 8895, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.1643, - -53.5603 - ] - } - }, - { - "ibge": 3550902, - "name": "São Simão", - "capital": 0, - "ibgeState": 35, - "siafi": 7119, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4732, - -47.5518 - ] - } - }, - { - "ibge": 5220405, - "name": "São Simão", - "capital": 0, - "ibgeState": 52, - "siafi": 9605, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.996, - -50.547 - ] - } - }, - { - "ibge": 3165206, - "name": "São Thomé das Letras", - "capital": 0, - "ibgeState": 31, - "siafi": 5303, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7218, - -44.9849 - ] - } - }, - { - "ibge": 3165008, - "name": "São Tiago", - "capital": 0, - "ibgeState": 31, - "siafi": 5299, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9075, - -44.5098 - ] - } - }, - { - "ibge": 3165107, - "name": "São Tomás de Aquino", - "capital": 0, - "ibgeState": 31, - "siafi": 5301, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7791, - -47.0962 - ] - } - }, - { - "ibge": 4126108, - "name": "São Tomé", - "capital": 0, - "ibgeState": 41, - "siafi": 7897, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5349, - -52.5901 - ] - } - }, - { - "ibge": 2412906, - "name": "São Tomé", - "capital": 0, - "ibgeState": 24, - "siafi": 1855, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.96404, - -36.0798 - ] - } - }, - { - "ibge": 4319703, - "name": "São Valentim", - "capital": 0, - "ibgeState": 43, - "siafi": 8897, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5583, - -52.5237 - ] - } - }, - { - "ibge": 4319711, - "name": "São Valentim do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 5997, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.0451, - -51.7684 - ] - } - }, - { - "ibge": 1720499, - "name": "São Valério", - "capital": 0, - "ibgeState": 17, - "siafi": 9691, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.9743, - -48.2353 - ] - } - }, - { - "ibge": 4319737, - "name": "São Valério do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 6075, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7906, - -53.9368 - ] - } - }, - { - "ibge": 4319752, - "name": "São Vendelino", - "capital": 0, - "ibgeState": 43, - "siafi": 7293, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3729, - -51.3675 - ] - } - }, - { - "ibge": 3551009, - "name": "São Vicente", - "capital": 0, - "ibgeState": 35, - "siafi": 7121, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.9574, - -46.3883 - ] - } - }, - { - "ibge": 2413003, - "name": "São Vicente", - "capital": 0, - "ibgeState": 24, - "siafi": 1857, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.21893, - -36.6827 - ] - } - }, - { - "ibge": 3165305, - "name": "São Vicente de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 5305, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7042, - -44.4431 - ] - } - }, - { - "ibge": 2515401, - "name": "São Vicente do Seridó", - "capital": 0, - "ibgeState": 25, - "siafi": 2209, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.85426, - -36.4122 - ] - } - }, - { - "ibge": 4319802, - "name": "São Vicente do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8675, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6882, - -54.6826 - ] - } - }, - { - "ibge": 2613800, - "name": "São Vicente Ferrer", - "capital": 0, - "ibgeState": 26, - "siafi": 2575, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.58969, - -35.4808 - ] - } - }, - { - "ibge": 2111706, - "name": "São Vicente Ferrer", - "capital": 0, - "ibgeState": 21, - "siafi": 927, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.89487, - -44.8681 - ] - } - }, - { - "ibge": 2515302, - "name": "Sapé", - "capital": 0, - "ibgeState": 25, - "siafi": 2207, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.09359, - -35.228 - ] - } - }, - { - "ibge": 2929602, - "name": "Sapeaçu", - "capital": 0, - "ibgeState": 29, - "siafi": 3891, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.7208, - -39.1824 - ] - } - }, - { - "ibge": 5107875, - "name": "Sapezal", - "capital": 0, - "ibgeState": 51, - "siafi": 1046, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.9892, - -58.7645 - ] - } - }, - { - "ibge": 4319901, - "name": "Sapiranga", - "capital": 0, - "ibgeState": 43, - "siafi": 8899, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6349, - -51.0064 - ] - } - }, - { - "ibge": 4126207, - "name": "Sapopema", - "capital": 0, - "ibgeState": 41, - "siafi": 7899, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.9078, - -50.5801 - ] - } - }, - { - "ibge": 3165404, - "name": "Sapucaí-Mirim", - "capital": 0, - "ibgeState": 31, - "siafi": 5307, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7409, - -45.738 - ] - } - }, - { - "ibge": 1507755, - "name": "Sapucaia", - "capital": 0, - "ibgeState": 15, - "siafi": 66, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.94018, - -49.6834 - ] - } - }, - { - "ibge": 3305406, - "name": "Sapucaia", - "capital": 0, - "ibgeState": 33, - "siafi": 5907, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9949, - -42.9142 - ] - } - }, - { - "ibge": 4320008, - "name": "Sapucaia do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 8901, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.8276, - -51.145 - ] - } - }, - { - "ibge": 3305505, - "name": "Saquarema", - "capital": 0, - "ibgeState": 33, - "siafi": 5909, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9292, - -42.5099 - ] - } - }, - { - "ibge": 4126256, - "name": "Sarandi", - "capital": 0, - "ibgeState": 41, - "siafi": 8461, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4441, - -51.876 - ] - } - }, - { - "ibge": 4320107, - "name": "Sarandi", - "capital": 0, - "ibgeState": 43, - "siafi": 8903, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.942, - -52.9231 - ] - } - }, - { - "ibge": 3551108, - "name": "Sarapuí", - "capital": 0, - "ibgeState": 35, - "siafi": 7123, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6397, - -47.8249 - ] - } - }, - { - "ibge": 3165503, - "name": "Sardoá", - "capital": 0, - "ibgeState": 31, - "siafi": 5309, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.7828, - -42.3629 - ] - } - }, - { - "ibge": 3551207, - "name": "Sarutaiá", - "capital": 0, - "ibgeState": 35, - "siafi": 7125, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2721, - -49.4763 - ] - } - }, - { - "ibge": 3165537, - "name": "Sarzedo", - "capital": 0, - "ibgeState": 31, - "siafi": 730, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0367, - -44.1446 - ] - } - }, - { - "ibge": 2929701, - "name": "Sátiro Dias", - "capital": 0, - "ibgeState": 29, - "siafi": 3893, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.5929, - -38.5938 - ] - } - }, - { - "ibge": 2708907, - "name": "Satuba", - "capital": 0, - "ibgeState": 27, - "siafi": 2877, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.56911, - -35.8227 - ] - } - }, - { - "ibge": 2111722, - "name": "Satubinha", - "capital": 0, - "ibgeState": 21, - "siafi": 248, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.04913, - -45.2457 - ] - } - }, - { - "ibge": 2929750, - "name": "Saubara", - "capital": 0, - "ibgeState": 29, - "siafi": 3037, - "ddd": 71, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.7387, - -38.7625 - ] - } - }, - { - "ibge": 4126272, - "name": "Saudade do Iguaçu", - "capital": 0, - "ibgeState": 41, - "siafi": 5493, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.6917, - -52.6184 - ] - } - }, - { - "ibge": 4217303, - "name": "Saudades", - "capital": 0, - "ibgeState": 42, - "siafi": 8341, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9317, - -53.0021 - ] - } - }, - { - "ibge": 2929800, - "name": "Saúde", - "capital": 0, - "ibgeState": 29, - "siafi": 3895, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.9428, - -40.4155 - ] - } - }, - { - "ibge": 4217402, - "name": "Schroeder", - "capital": 0, - "ibgeState": 42, - "siafi": 8343, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.4116, - -49.074 - ] - } - }, - { - "ibge": 2929909, - "name": "Seabra", - "capital": 0, - "ibgeState": 29, - "siafi": 3897, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.4169, - -41.7722 - ] - } - }, - { - "ibge": 4217501, - "name": "Seara", - "capital": 0, - "ibgeState": 42, - "siafi": 8345, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1564, - -52.299 - ] - } - }, - { - "ibge": 3551306, - "name": "Sebastianópolis do Sul", - "capital": 0, - "ibgeState": 35, - "siafi": 7127, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6523, - -49.925 - ] - } - }, - { - "ibge": 2210623, - "name": "Sebastião Barros", - "capital": 0, - "ibgeState": 22, - "siafi": 396, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.817, - -44.8337 - ] - } - }, - { - "ibge": 2930006, - "name": "Sebastião Laranjeiras", - "capital": 0, - "ibgeState": 29, - "siafi": 3899, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.571, - -42.9434 - ] - } - }, - { - "ibge": 2210631, - "name": "Sebastião Leal", - "capital": 0, - "ibgeState": 22, - "siafi": 398, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.56803, - -44.06 - ] - } - }, - { - "ibge": 4320206, - "name": "Seberi", - "capital": 0, - "ibgeState": 43, - "siafi": 8905, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4829, - -53.4026 - ] - } - }, - { - "ibge": 4320230, - "name": "Sede Nova", - "capital": 0, - "ibgeState": 43, - "siafi": 7335, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6367, - -53.9493 - ] - } - }, - { - "ibge": 4320263, - "name": "Segredo", - "capital": 0, - "ibgeState": 43, - "siafi": 7317, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3523, - -52.9767 - ] - } - }, - { - "ibge": 4320305, - "name": "Selbach", - "capital": 0, - "ibgeState": 43, - "siafi": 8907, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6294, - -52.9498 - ] - } - }, - { - "ibge": 5007802, - "name": "Selvíria", - "capital": 0, - "ibgeState": 50, - "siafi": 9811, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -20.3637, - -51.4192 - ] - } - }, - { - "ibge": 3165560, - "name": "Sem-Peixe", - "capital": 0, - "ibgeState": 31, - "siafi": 734, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1008, - -42.8483 - ] - } - }, - { - "ibge": 1200500, - "name": "Sena Madureira", - "capital": 0, - "ibgeState": 12, - "siafi": 145, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -9.06596, - -68.6571 - ] - } - }, - { - "ibge": 2111748, - "name": "Senador Alexandre Costa", - "capital": 0, - "ibgeState": 21, - "siafi": 250, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.25096, - -44.0533 - ] - } - }, - { - "ibge": 3165578, - "name": "Senador Amaral", - "capital": 0, - "ibgeState": 31, - "siafi": 2689, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5869, - -46.1763 - ] - } - }, - { - "ibge": 5220454, - "name": "Senador Canedo", - "capital": 0, - "ibgeState": 52, - "siafi": 9753, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.7084, - -49.0914 - ] - } - }, - { - "ibge": 3165602, - "name": "Senador Cortes", - "capital": 0, - "ibgeState": 31, - "siafi": 5311, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7986, - -42.9424 - ] - } - }, - { - "ibge": 2413102, - "name": "Senador Elói de Souza", - "capital": 0, - "ibgeState": 24, - "siafi": 1859, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.03334, - -35.6978 - ] - } - }, - { - "ibge": 3165701, - "name": "Senador Firmino", - "capital": 0, - "ibgeState": 31, - "siafi": 5313, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9158, - -43.0904 - ] - } - }, - { - "ibge": 2413201, - "name": "Senador Georgino Avelino", - "capital": 0, - "ibgeState": 24, - "siafi": 1861, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.1576, - -35.1299 - ] - } - }, - { - "ibge": 1200450, - "name": "Senador Guiomard", - "capital": 0, - "ibgeState": 12, - "siafi": 153, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -10.1497, - -67.7362 - ] - } - }, - { - "ibge": 3165800, - "name": "Senador José Bento", - "capital": 0, - "ibgeState": 31, - "siafi": 5315, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1633, - -46.1792 - ] - } - }, - { - "ibge": 1507805, - "name": "Senador José Porfírio", - "capital": 0, - "ibgeState": 15, - "siafi": 555, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.31242, - -51.5764 - ] - } - }, - { - "ibge": 2111763, - "name": "Senador La Rocque", - "capital": 0, - "ibgeState": 21, - "siafi": 252, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.4461, - -47.2959 - ] - } - }, - { - "ibge": 3165909, - "name": "Senador Modestino Gonçalves", - "capital": 0, - "ibgeState": 31, - "siafi": 5317, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.9465, - -43.2172 - ] - } - }, - { - "ibge": 2312700, - "name": "Senador Pompeu", - "capital": 0, - "ibgeState": 23, - "siafi": 1555, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.58244, - -39.3704 - ] - } - }, - { - "ibge": 2708956, - "name": "Senador Rui Palmeira", - "capital": 0, - "ibgeState": 27, - "siafi": 2891, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.46986, - -37.4576 - ] - } - }, - { - "ibge": 2312809, - "name": "Senador Sá", - "capital": 0, - "ibgeState": 23, - "siafi": 1557, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.35305, - -40.4662 - ] - } - }, - { - "ibge": 4320321, - "name": "Senador Salgado Filho", - "capital": 0, - "ibgeState": 43, - "siafi": 1012, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.025, - -54.5507 - ] - } - }, - { - "ibge": 4126306, - "name": "Sengés", - "capital": 0, - "ibgeState": 41, - "siafi": 7901, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.1129, - -49.4616 - ] - } - }, - { - "ibge": 2930105, - "name": "Senhor do Bonfim", - "capital": 0, - "ibgeState": 29, - "siafi": 3901, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.4594, - -40.1865 - ] - } - }, - { - "ibge": 3166006, - "name": "Senhora de Oliveira", - "capital": 0, - "ibgeState": 31, - "siafi": 5319, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7972, - -43.3394 - ] - } - }, - { - "ibge": 3166105, - "name": "Senhora do Porto", - "capital": 0, - "ibgeState": 31, - "siafi": 5321, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.8909, - -43.0799 - ] - } - }, - { - "ibge": 3166204, - "name": "Senhora dos Remédios", - "capital": 0, - "ibgeState": 31, - "siafi": 5323, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0351, - -43.5812 - ] - } - }, - { - "ibge": 4320354, - "name": "Sentinela do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 5781, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.6107, - -51.5862 - ] - } - }, - { - "ibge": 2930204, - "name": "Sento Sé", - "capital": 0, - "ibgeState": 29, - "siafi": 3903, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.74138, - -41.8786 - ] - } - }, - { - "ibge": 4320404, - "name": "Serafina Corrêa", - "capital": 0, - "ibgeState": 43, - "siafi": 8909, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.7126, - -51.9352 - ] - } - }, - { - "ibge": 3166303, - "name": "Sericita", - "capital": 0, - "ibgeState": 31, - "siafi": 5325, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4748, - -42.4828 - ] - } - }, - { - "ibge": 1101500, - "name": "Seringueiras", - "capital": 0, - "ibgeState": 11, - "siafi": 699, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.8055, - -63.0182 - ] - } - }, - { - "ibge": 4320453, - "name": "Sério", - "capital": 0, - "ibgeState": 43, - "siafi": 6035, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3904, - -52.2685 - ] - } - }, - { - "ibge": 3166402, - "name": "Seritinga", - "capital": 0, - "ibgeState": 31, - "siafi": 5327, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9134, - -44.518 - ] - } - }, - { - "ibge": 3305554, - "name": "Seropédica", - "capital": 0, - "ibgeState": 33, - "siafi": 786, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7526, - -43.7155 - ] - } - }, - { - "ibge": 3205002, - "name": "Serra", - "capital": 0, - "ibgeState": 32, - "siafi": 5699, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.121, - -40.3074 - ] - } - }, - { - "ibge": 4217550, - "name": "Serra Alta", - "capital": 0, - "ibgeState": 42, - "siafi": 9989, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7229, - -53.0409 - ] - } - }, - { - "ibge": 3551405, - "name": "Serra Azul", - "capital": 0, - "ibgeState": 35, - "siafi": 7129, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3074, - -47.5602 - ] - } - }, - { - "ibge": 3166501, - "name": "Serra Azul de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 5329, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.3602, - -43.1675 - ] - } - }, - { - "ibge": 2515500, - "name": "Serra Branca", - "capital": 0, - "ibgeState": 25, - "siafi": 2211, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.48034, - -36.666 - ] - } - }, - { - "ibge": 2410306, - "name": "Serra Caiada", - "capital": 0, - "ibgeState": 24, - "siafi": 1805, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.10478, - -35.7113 - ] - } - }, - { - "ibge": 2515609, - "name": "Serra da Raiz", - "capital": 0, - "ibgeState": 25, - "siafi": 2213, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.68527, - -35.4379 - ] - } - }, - { - "ibge": 3166600, - "name": "Serra da Saudade", - "capital": 0, - "ibgeState": 31, - "siafi": 5331, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.4447, - -45.795 - ] - } - }, - { - "ibge": 2413300, - "name": "Serra de São Bento", - "capital": 0, - "ibgeState": 24, - "siafi": 1863, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.41762, - -35.7033 - ] - } - }, - { - "ibge": 2413359, - "name": "Serra do Mel", - "capital": 0, - "ibgeState": 24, - "siafi": 1927, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.17725, - -37.0242 - ] - } - }, - { - "ibge": 1600055, - "name": "Serra do Navio", - "capital": 0, - "ibgeState": 16, - "siafi": 665, - "ddd": 96, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - 0.901357, - -52.0036 - ] - } - }, - { - "ibge": 2930154, - "name": "Serra do Ramalho", - "capital": 0, - "ibgeState": 29, - "siafi": 3039, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.5659, - -43.5929 - ] - } - }, - { - "ibge": 3166808, - "name": "Serra do Salitre", - "capital": 0, - "ibgeState": 31, - "siafi": 5335, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.1083, - -46.6961 - ] - } - }, - { - "ibge": 3166709, - "name": "Serra dos Aimorés", - "capital": 0, - "ibgeState": 31, - "siafi": 5333, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.7872, - -40.2453 - ] - } - }, - { - "ibge": 2930303, - "name": "Serra Dourada", - "capital": 0, - "ibgeState": 29, - "siafi": 3905, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.759, - -43.9504 - ] - } - }, - { - "ibge": 2515708, - "name": "Serra Grande", - "capital": 0, - "ibgeState": 25, - "siafi": 2215, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.20957, - -38.3647 - ] - } - }, - { - "ibge": 3551603, - "name": "Serra Negra", - "capital": 0, - "ibgeState": 35, - "siafi": 7133, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6139, - -46.7033 - ] - } - }, - { - "ibge": 2413409, - "name": "Serra Negra do Norte", - "capital": 0, - "ibgeState": 24, - "siafi": 1865, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.66031, - -37.3996 - ] - } - }, - { - "ibge": 5107883, - "name": "Serra Nova Dourada", - "capital": 0, - "ibgeState": 51, - "siafi": 1100, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.0896, - -51.4025 - ] - } - }, - { - "ibge": 2930402, - "name": "Serra Preta", - "capital": 0, - "ibgeState": 29, - "siafi": 3907, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.156, - -39.3305 - ] - } - }, - { - "ibge": 2515807, - "name": "Serra Redonda", - "capital": 0, - "ibgeState": 25, - "siafi": 2217, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.18622, - -35.6842 - ] - } - }, - { - "ibge": 2613909, - "name": "Serra Talhada", - "capital": 0, - "ibgeState": 26, - "siafi": 2577, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.98178, - -38.289 - ] - } - }, - { - "ibge": 3551504, - "name": "Serrana", - "capital": 0, - "ibgeState": 35, - "siafi": 7131, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2043, - -47.5952 - ] - } - }, - { - "ibge": 3166907, - "name": "Serrania", - "capital": 0, - "ibgeState": 31, - "siafi": 5337, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5441, - -46.0417 - ] - } - }, - { - "ibge": 2111789, - "name": "Serrano do Maranhão", - "capital": 0, - "ibgeState": 21, - "siafi": 254, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.85229, - -45.1207 - ] - } - }, - { - "ibge": 5220504, - "name": "Serranópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9607, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.3067, - -51.9586 - ] - } - }, - { - "ibge": 3166956, - "name": "Serranópolis de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 736, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.8176, - -42.8732 - ] - } - }, - { - "ibge": 4126355, - "name": "Serranópolis do Iguaçu", - "capital": 0, - "ibgeState": 41, - "siafi": 882, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.3799, - -54.0518 - ] - } - }, - { - "ibge": 3167004, - "name": "Serranos", - "capital": 0, - "ibgeState": 31, - "siafi": 5339, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8857, - -44.5125 - ] - } - }, - { - "ibge": 2515906, - "name": "Serraria", - "capital": 0, - "ibgeState": 25, - "siafi": 2219, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.81569, - -35.6282 - ] - } - }, - { - "ibge": 2413508, - "name": "Serrinha", - "capital": 0, - "ibgeState": 24, - "siafi": 1867, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.28181, - -35.5 - ] - } - }, - { - "ibge": 2930501, - "name": "Serrinha", - "capital": 0, - "ibgeState": 29, - "siafi": 3909, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.6584, - -39.01 - ] - } - }, - { - "ibge": 2413557, - "name": "Serrinha dos Pintos", - "capital": 0, - "ibgeState": 24, - "siafi": 432, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.11087, - -37.9548 - ] - } - }, - { - "ibge": 2614006, - "name": "Serrita", - "capital": 0, - "ibgeState": 26, - "siafi": 2579, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.94041, - -39.2951 - ] - } - }, - { - "ibge": 3167103, - "name": "Serro", - "capital": 0, - "ibgeState": 31, - "siafi": 5341, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5991, - -43.3744 - ] - } - }, - { - "ibge": 2930600, - "name": "Serrolândia", - "capital": 0, - "ibgeState": 29, - "siafi": 3911, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.4085, - -40.2983 - ] - } - }, - { - "ibge": 4126405, - "name": "Sertaneja", - "capital": 0, - "ibgeState": 41, - "siafi": 7903, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0361, - -50.8317 - ] - } - }, - { - "ibge": 2614105, - "name": "Sertânia", - "capital": 0, - "ibgeState": 26, - "siafi": 2581, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.06847, - -37.2684 - ] - } - }, - { - "ibge": 4126504, - "name": "Sertanópolis", - "capital": 0, - "ibgeState": 41, - "siafi": 7905, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0571, - -51.0399 - ] - } - }, - { - "ibge": 4320503, - "name": "Sertão", - "capital": 0, - "ibgeState": 43, - "siafi": 8911, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9798, - -52.2588 - ] - } - }, - { - "ibge": 4320552, - "name": "Sertão Santana", - "capital": 0, - "ibgeState": 43, - "siafi": 5761, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.4562, - -51.6017 - ] - } - }, - { - "ibge": 3551702, - "name": "Sertãozinho", - "capital": 0, - "ibgeState": 35, - "siafi": 7135, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1316, - -47.9875 - ] - } - }, - { - "ibge": 2515930, - "name": "Sertãozinho", - "capital": 0, - "ibgeState": 25, - "siafi": 532, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.75127, - -35.4372 - ] - } - }, - { - "ibge": 3551801, - "name": "Sete Barras", - "capital": 0, - "ibgeState": 35, - "siafi": 7137, - "ddd": 13, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.382, - -47.9279 - ] - } - }, - { - "ibge": 4320578, - "name": "Sete de Setembro", - "capital": 0, - "ibgeState": 43, - "siafi": 1014, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.1362, - -54.4637 - ] - } - }, - { - "ibge": 3167202, - "name": "Sete Lagoas", - "capital": 0, - "ibgeState": 31, - "siafi": 5343, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.4569, - -44.2413 - ] - } - }, - { - "ibge": 5007703, - "name": "Sete Quedas", - "capital": 0, - "ibgeState": 50, - "siafi": 9813, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -23.9705, - -55.0398 - ] - } - }, - { - "ibge": 3165552, - "name": "Setubinha", - "capital": 0, - "ibgeState": 31, - "siafi": 732, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.6002, - -42.1587 - ] - } - }, - { - "ibge": 4320602, - "name": "Severiano de Almeida", - "capital": 0, - "ibgeState": 43, - "siafi": 8913, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4362, - -52.1217 - ] - } - }, - { - "ibge": 2413607, - "name": "Severiano Melo", - "capital": 0, - "ibgeState": 24, - "siafi": 1869, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.77666, - -37.957 - ] - } - }, - { - "ibge": 3551900, - "name": "Severínia", - "capital": 0, - "ibgeState": 35, - "siafi": 7139, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8108, - -48.8054 - ] - } - }, - { - "ibge": 4217600, - "name": "Siderópolis", - "capital": 0, - "ibgeState": 42, - "siafi": 8347, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5955, - -49.4314 - ] - } - }, - { - "ibge": 5007901, - "name": "Sidrolândia", - "capital": 0, - "ibgeState": 50, - "siafi": 9157, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -20.9302, - -54.9692 - ] - } - }, - { - "ibge": 2210656, - "name": "Sigefredo Pacheco", - "capital": 0, - "ibgeState": 22, - "siafi": 1379, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.91665, - -41.7311 - ] - } - }, - { - "ibge": 3305604, - "name": "Silva Jardim", - "capital": 0, - "ibgeState": 33, - "siafi": 5911, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6574, - -42.3961 - ] - } - }, - { - "ibge": 5220603, - "name": "Silvânia", - "capital": 0, - "ibgeState": 52, - "siafi": 9609, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.66, - -48.6083 - ] - } - }, - { - "ibge": 1720655, - "name": "Silvanópolis", - "capital": 0, - "ibgeState": 17, - "siafi": 9659, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.1471, - -48.1694 - ] - } - }, - { - "ibge": 4320651, - "name": "Silveira Martins", - "capital": 0, - "ibgeState": 43, - "siafi": 7315, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6467, - -53.591 - ] - } - }, - { - "ibge": 3167301, - "name": "Silveirânia", - "capital": 0, - "ibgeState": 31, - "siafi": 5345, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1615, - -43.2128 - ] - } - }, - { - "ibge": 3552007, - "name": "Silveiras", - "capital": 0, - "ibgeState": 35, - "siafi": 7141, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.6638, - -44.8522 - ] - } - }, - { - "ibge": 1304005, - "name": "Silves", - "capital": 0, - "ibgeState": 13, - "siafi": 277, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -2.81748, - -58.248 - ] - } - }, - { - "ibge": 3167400, - "name": "Silvianópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 5347, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0274, - -45.8385 - ] - } - }, - { - "ibge": 2807105, - "name": "Simão Dias", - "capital": 0, - "ibgeState": 28, - "siafi": 3241, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7387, - -37.8097 - ] - } - }, - { - "ibge": 3167509, - "name": "Simão Pereira", - "capital": 0, - "ibgeState": 31, - "siafi": 5349, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.964, - -43.3088 - ] - } - }, - { - "ibge": 2210706, - "name": "Simões", - "capital": 0, - "ibgeState": 22, - "siafi": 1213, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.59109, - -40.8137 - ] - } - }, - { - "ibge": 2930709, - "name": "Simões Filho", - "capital": 0, - "ibgeState": 29, - "siafi": 3913, - "ddd": 71, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.7866, - -38.4029 - ] - } - }, - { - "ibge": 5220686, - "name": "Simolândia", - "capital": 0, - "ibgeState": 52, - "siafi": 9755, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.4644, - -46.4847 - ] - } - }, - { - "ibge": 3167608, - "name": "Simonésia", - "capital": 0, - "ibgeState": 31, - "siafi": 5351, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1341, - -42.0091 - ] - } - }, - { - "ibge": 2210805, - "name": "Simplício Mendes", - "capital": 0, - "ibgeState": 22, - "siafi": 1215, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.85294, - -41.9075 - ] - } - }, - { - "ibge": 4320677, - "name": "Sinimbu", - "capital": 0, - "ibgeState": 43, - "siafi": 5767, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5357, - -52.5304 - ] - } - }, - { - "ibge": 5107909, - "name": "Sinop", - "capital": 0, - "ibgeState": 51, - "siafi": 8985, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.8604, - -55.5091 - ] - } - }, - { - "ibge": 4126603, - "name": "Siqueira Campos", - "capital": 0, - "ibgeState": 41, - "siafi": 7907, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6875, - -49.8304 - ] - } - }, - { - "ibge": 2614204, - "name": "Sirinhaém", - "capital": 0, - "ibgeState": 26, - "siafi": 2583, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.58778, - -35.1126 - ] - } - }, - { - "ibge": 2807204, - "name": "Siriri", - "capital": 0, - "ibgeState": 28, - "siafi": 3243, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.5965, - -37.1131 - ] - } - }, - { - "ibge": 5220702, - "name": "Sítio d'Abadia", - "capital": 0, - "ibgeState": 52, - "siafi": 9611, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.7992, - -46.2506 - ] - } - }, - { - "ibge": 2930758, - "name": "Sítio do Mato", - "capital": 0, - "ibgeState": 29, - "siafi": 3041, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.0801, - -43.4689 - ] - } - }, - { - "ibge": 2930766, - "name": "Sítio do Quinto", - "capital": 0, - "ibgeState": 29, - "siafi": 3043, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.3545, - -38.2213 - ] - } - }, - { - "ibge": 2111805, - "name": "Sítio Novo", - "capital": 0, - "ibgeState": 21, - "siafi": 929, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.87601, - -46.7033 - ] - } - }, - { - "ibge": 2413706, - "name": "Sítio Novo", - "capital": 0, - "ibgeState": 24, - "siafi": 1871, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.11132, - -35.909 - ] - } - }, - { - "ibge": 1720804, - "name": "Sítio Novo do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 9613, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.6012, - -47.6381 - ] - } - }, - { - "ibge": 2930774, - "name": "Sobradinho", - "capital": 0, - "ibgeState": 29, - "siafi": 3045, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.45024, - -40.8145 - ] - } - }, - { - "ibge": 4320701, - "name": "Sobradinho", - "capital": 0, - "ibgeState": 43, - "siafi": 8917, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4194, - -53.0326 - ] - } - }, - { - "ibge": 2515971, - "name": "Sobrado", - "capital": 0, - "ibgeState": 25, - "siafi": 534, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.14429, - -35.2357 - ] - } - }, - { - "ibge": 2312908, - "name": "Sobral", - "capital": 0, - "ibgeState": 23, - "siafi": 1559, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.68913, - -40.3482 - ] - } - }, - { - "ibge": 3167707, - "name": "Sobrália", - "capital": 0, - "ibgeState": 31, - "siafi": 5353, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2345, - -42.0998 - ] - } - }, - { - "ibge": 3552106, - "name": "Socorro", - "capital": 0, - "ibgeState": 35, - "siafi": 7143, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5903, - -46.5251 - ] - } - }, - { - "ibge": 2210904, - "name": "Socorro do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1217, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.86773, - -42.4922 - ] - } - }, - { - "ibge": 2516003, - "name": "Solânea", - "capital": 0, - "ibgeState": 25, - "siafi": 2221, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.75161, - -35.6636 - ] - } - }, - { - "ibge": 2516102, - "name": "Soledade", - "capital": 0, - "ibgeState": 25, - "siafi": 2223, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.05829, - -36.3668 - ] - } - }, - { - "ibge": 4320800, - "name": "Soledade", - "capital": 0, - "ibgeState": 43, - "siafi": 8919, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.8306, - -52.5131 - ] - } - }, - { - "ibge": 3167806, - "name": "Soledade de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 5355, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0554, - -45.0464 - ] - } - }, - { - "ibge": 2614402, - "name": "Solidão", - "capital": 0, - "ibgeState": 26, - "siafi": 2587, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.59472, - -37.6445 - ] - } - }, - { - "ibge": 2313005, - "name": "Solonópole", - "capital": 0, - "ibgeState": 23, - "siafi": 1561, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.71894, - -39.0107 - ] - } - }, - { - "ibge": 4217709, - "name": "Sombrio", - "capital": 0, - "ibgeState": 42, - "siafi": 8349, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.108, - -49.6328 - ] - } - }, - { - "ibge": 5007935, - "name": "Sonora", - "capital": 0, - "ibgeState": 50, - "siafi": 9757, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -17.5698, - -54.7551 - ] - } - }, - { - "ibge": 3205010, - "name": "Sooretama", - "capital": 0, - "ibgeState": 32, - "siafi": 766, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.1897, - -40.0974 - ] - } - }, - { - "ibge": 3552205, - "name": "Sorocaba", - "capital": 0, - "ibgeState": 35, - "siafi": 7145, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4969, - -47.4451 - ] - } - }, - { - "ibge": 5107925, - "name": "Sorriso", - "capital": 0, - "ibgeState": 51, - "siafi": 9907, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.5425, - -55.7211 - ] - } - }, - { - "ibge": 2516151, - "name": "Sossêgo", - "capital": 0, - "ibgeState": 25, - "siafi": 536, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.77067, - -36.2538 - ] - } - }, - { - "ibge": 1507904, - "name": "Soure", - "capital": 0, - "ibgeState": 15, - "siafi": 557, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.73032, - -48.5015 - ] - } - }, - { - "ibge": 2516201, - "name": "Sousa", - "capital": 0, - "ibgeState": 25, - "siafi": 2225, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.75148, - -38.2311 - ] - } - }, - { - "ibge": 2930808, - "name": "Souto Soares", - "capital": 0, - "ibgeState": 29, - "siafi": 3915, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.088, - -41.6427 - ] - } - }, - { - "ibge": 1720853, - "name": "Sucupira", - "capital": 0, - "ibgeState": 17, - "siafi": 335, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.993, - -48.9685 - ] - } - }, - { - "ibge": 2111904, - "name": "Sucupira do Norte", - "capital": 0, - "ibgeState": 21, - "siafi": 931, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.47839, - -44.1919 - ] - } - }, - { - "ibge": 2111953, - "name": "Sucupira do Riachão", - "capital": 0, - "ibgeState": 21, - "siafi": 256, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.40858, - -43.5455 - ] - } - }, - { - "ibge": 3552304, - "name": "Sud Mennucci", - "capital": 0, - "ibgeState": 35, - "siafi": 7147, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6872, - -50.9238 - ] - } - }, - { - "ibge": 4217758, - "name": "Sul Brasil", - "capital": 0, - "ibgeState": 42, - "siafi": 5595, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.7351, - -52.964 - ] - } - }, - { - "ibge": 4126652, - "name": "Sulina", - "capital": 0, - "ibgeState": 41, - "siafi": 8477, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.7066, - -52.7299 - ] - } - }, - { - "ibge": 3552403, - "name": "Sumaré", - "capital": 0, - "ibgeState": 35, - "siafi": 7149, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8204, - -47.2728 - ] - } - }, - { - "ibge": 2516300, - "name": "Sumé", - "capital": 0, - "ibgeState": 25, - "siafi": 2227, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.66206, - -36.884 - ] - } - }, - { - "ibge": 3305703, - "name": "Sumidouro", - "capital": 0, - "ibgeState": 33, - "siafi": 5913, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0485, - -42.6761 - ] - } - }, - { - "ibge": 2614501, - "name": "Surubim", - "capital": 0, - "ibgeState": 26, - "siafi": 2589, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.84746, - -35.7481 - ] - } - }, - { - "ibge": 2210938, - "name": "Sussuapara", - "capital": 0, - "ibgeState": 22, - "siafi": 400, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.03687, - -41.3767 - ] - } - }, - { - "ibge": 3552551, - "name": "Suzanápolis", - "capital": 0, - "ibgeState": 35, - "siafi": 2945, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4981, - -51.0268 - ] - } - }, - { - "ibge": 3552502, - "name": "Suzano", - "capital": 0, - "ibgeState": 35, - "siafi": 7151, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5448, - -46.3112 - ] - } - }, - { - "ibge": 4320859, - "name": "Tabaí", - "capital": 0, - "ibgeState": 43, - "siafi": 1016, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.643, - -51.6823 - ] - } - }, - { - "ibge": 5107941, - "name": "Tabaporã", - "capital": 0, - "ibgeState": 51, - "siafi": 125, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.3007, - -56.8312 - ] - } - }, - { - "ibge": 3552601, - "name": "Tabapuã", - "capital": 0, - "ibgeState": 35, - "siafi": 7153, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9602, - -49.0307 - ] - } - }, - { - "ibge": 3552700, - "name": "Tabatinga", - "capital": 0, - "ibgeState": 35, - "siafi": 7155, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7239, - -48.6896 - ] - } - }, - { - "ibge": 1304062, - "name": "Tabatinga", - "capital": 0, - "ibgeState": 13, - "siafi": 9847, - "ddd": 97, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -4.2416, - -69.9383 - ] - } - }, - { - "ibge": 2614600, - "name": "Tabira", - "capital": 0, - "ibgeState": 26, - "siafi": 2591, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.58366, - -37.5377 - ] - } - }, - { - "ibge": 3552809, - "name": "Taboão da Serra", - "capital": 0, - "ibgeState": 35, - "siafi": 7157, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.6019, - -46.7526 - ] - } - }, - { - "ibge": 2930907, - "name": "Tabocas do Brejo Velho", - "capital": 0, - "ibgeState": 29, - "siafi": 3917, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.7026, - -44.0075 - ] - } - }, - { - "ibge": 2413805, - "name": "Taboleiro Grande", - "capital": 0, - "ibgeState": 24, - "siafi": 1873, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.91948, - -38.0367 - ] - } - }, - { - "ibge": 3167905, - "name": "Tabuleiro", - "capital": 0, - "ibgeState": 31, - "siafi": 5357, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3632, - -43.2381 - ] - } - }, - { - "ibge": 2313104, - "name": "Tabuleiro do Norte", - "capital": 0, - "ibgeState": 23, - "siafi": 1563, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.24353, - -38.1282 - ] - } - }, - { - "ibge": 2614709, - "name": "Tacaimbó", - "capital": 0, - "ibgeState": 26, - "siafi": 2593, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.30867, - -36.3 - ] - } - }, - { - "ibge": 2614808, - "name": "Tacaratu", - "capital": 0, - "ibgeState": 26, - "siafi": 2595, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.09798, - -38.1504 - ] - } - }, - { - "ibge": 3552908, - "name": "Taciba", - "capital": 0, - "ibgeState": 35, - "siafi": 7159, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3866, - -51.2882 - ] - } - }, - { - "ibge": 2516409, - "name": "Tacima", - "capital": 0, - "ibgeState": 25, - "siafi": 2229, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.48759, - -35.6367 - ] - } - }, - { - "ibge": 5007950, - "name": "Tacuru", - "capital": 0, - "ibgeState": 50, - "siafi": 9815, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -23.636, - -55.0141 - ] - } - }, - { - "ibge": 3553005, - "name": "Taguaí", - "capital": 0, - "ibgeState": 35, - "siafi": 7161, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4452, - -49.4024 - ] - } - }, - { - "ibge": 1720903, - "name": "Taguatinga", - "capital": 0, - "ibgeState": 17, - "siafi": 9615, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.4026, - -46.437 - ] - } - }, - { - "ibge": 3553104, - "name": "Taiaçu", - "capital": 0, - "ibgeState": 35, - "siafi": 7163, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1431, - -48.5112 - ] - } - }, - { - "ibge": 1507953, - "name": "Tailândia", - "capital": 0, - "ibgeState": 15, - "siafi": 395, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.94584, - -48.9489 - ] - } - }, - { - "ibge": 4217808, - "name": "Taió", - "capital": 0, - "ibgeState": 42, - "siafi": 8351, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.121, - -49.9942 - ] - } - }, - { - "ibge": 3168002, - "name": "Taiobeiras", - "capital": 0, - "ibgeState": 31, - "siafi": 5359, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.8106, - -42.2259 - ] - } - }, - { - "ibge": 1720937, - "name": "Taipas do Tocantins", - "capital": 0, - "ibgeState": 17, - "siafi": 325, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.1873, - -46.9797 - ] - } - }, - { - "ibge": 2413904, - "name": "Taipu", - "capital": 0, - "ibgeState": 24, - "siafi": 1875, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.63058, - -35.5918 - ] - } - }, - { - "ibge": 3553203, - "name": "Taiúva", - "capital": 0, - "ibgeState": 35, - "siafi": 7165, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1223, - -48.4528 - ] - } - }, - { - "ibge": 1720978, - "name": "Talismã", - "capital": 0, - "ibgeState": 17, - "siafi": 100, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.7949, - -49.0896 - ] - } - }, - { - "ibge": 2614857, - "name": "Tamandaré", - "capital": 0, - "ibgeState": 26, - "siafi": 558, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.75665, - -35.1033 - ] - } - }, - { - "ibge": 4126678, - "name": "Tamarana", - "capital": 0, - "ibgeState": 41, - "siafi": 884, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7204, - -51.0991 - ] - } - }, - { - "ibge": 3553302, - "name": "Tambaú", - "capital": 0, - "ibgeState": 35, - "siafi": 7167, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7029, - -47.2703 - ] - } - }, - { - "ibge": 4126702, - "name": "Tamboara", - "capital": 0, - "ibgeState": 41, - "siafi": 7909, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2036, - -52.4743 - ] - } - }, - { - "ibge": 2313203, - "name": "Tamboril", - "capital": 0, - "ibgeState": 23, - "siafi": 1565, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.83136, - -40.3196 - ] - } - }, - { - "ibge": 2210953, - "name": "Tamboril do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 402, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.40937, - -42.9211 - ] - } - }, - { - "ibge": 3553401, - "name": "Tanabi", - "capital": 0, - "ibgeState": 35, - "siafi": 7169, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6228, - -49.6563 - ] - } - }, - { - "ibge": 2414001, - "name": "Tangará", - "capital": 0, - "ibgeState": 24, - "siafi": 1877, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.19649, - -35.7989 - ] - } - }, - { - "ibge": 4217907, - "name": "Tangará", - "capital": 0, - "ibgeState": 42, - "siafi": 8353, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0996, - -51.2473 - ] - } - }, - { - "ibge": 5107958, - "name": "Tangará da Serra", - "capital": 0, - "ibgeState": 51, - "siafi": 9185, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -14.6229, - -57.4933 - ] - } - }, - { - "ibge": 3305752, - "name": "Tanguá", - "capital": 0, - "ibgeState": 33, - "siafi": 788, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7423, - -42.7202 - ] - } - }, - { - "ibge": 2931004, - "name": "Tanhaçu", - "capital": 0, - "ibgeState": 29, - "siafi": 3919, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.0197, - -41.2473 - ] - } - }, - { - "ibge": 2709004, - "name": "Tanque d'Arca", - "capital": 0, - "ibgeState": 27, - "siafi": 2879, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.53379, - -36.4366 - ] - } - }, - { - "ibge": 2210979, - "name": "Tanque do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 404, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.59787, - -42.2795 - ] - } - }, - { - "ibge": 2931053, - "name": "Tanque Novo", - "capital": 0, - "ibgeState": 29, - "siafi": 3991, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.5485, - -42.4934 - ] - } - }, - { - "ibge": 2931103, - "name": "Tanquinho", - "capital": 0, - "ibgeState": 29, - "siafi": 3921, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.968, - -39.1033 - ] - } - }, - { - "ibge": 3168051, - "name": "Taparuba", - "capital": 0, - "ibgeState": 31, - "siafi": 738, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7621, - -41.608 - ] - } - }, - { - "ibge": 1304104, - "name": "Tapauá", - "capital": 0, - "ibgeState": 13, - "siafi": 279, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -5.62085, - -63.1808 - ] - } - }, - { - "ibge": 4126801, - "name": "Tapejara", - "capital": 0, - "ibgeState": 41, - "siafi": 7911, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7315, - -52.8735 - ] - } - }, - { - "ibge": 4320909, - "name": "Tapejara", - "capital": 0, - "ibgeState": 43, - "siafi": 8921, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.0652, - -52.0097 - ] - } - }, - { - "ibge": 4321006, - "name": "Tapera", - "capital": 0, - "ibgeState": 43, - "siafi": 8923, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.6277, - -52.8613 - ] - } - }, - { - "ibge": 2931202, - "name": "Taperoá", - "capital": 0, - "ibgeState": 29, - "siafi": 3923, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.5321, - -39.1009 - ] - } - }, - { - "ibge": 2516508, - "name": "Taperoá", - "capital": 0, - "ibgeState": 25, - "siafi": 2231, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.20629, - -36.8245 - ] - } - }, - { - "ibge": 4321105, - "name": "Tapes", - "capital": 0, - "ibgeState": 43, - "siafi": 8925, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.6683, - -51.3991 - ] - } - }, - { - "ibge": 4126900, - "name": "Tapira", - "capital": 0, - "ibgeState": 41, - "siafi": 7973, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3193, - -53.0684 - ] - } - }, - { - "ibge": 3168101, - "name": "Tapira", - "capital": 0, - "ibgeState": 31, - "siafi": 5361, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.9166, - -46.8264 - ] - } - }, - { - "ibge": 3168200, - "name": "Tapiraí", - "capital": 0, - "ibgeState": 31, - "siafi": 5363, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.8936, - -46.0221 - ] - } - }, - { - "ibge": 3553500, - "name": "Tapiraí", - "capital": 0, - "ibgeState": 35, - "siafi": 7171, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.9612, - -47.5062 - ] - } - }, - { - "ibge": 2931301, - "name": "Tapiramutá", - "capital": 0, - "ibgeState": 29, - "siafi": 3925, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.8475, - -40.7927 - ] - } - }, - { - "ibge": 3553609, - "name": "Tapiratiba", - "capital": 0, - "ibgeState": 35, - "siafi": 7173, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4713, - -46.7448 - ] - } - }, - { - "ibge": 5108006, - "name": "Tapurah", - "capital": 0, - "ibgeState": 51, - "siafi": 9763, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.695, - -56.5178 - ] - } - }, - { - "ibge": 4321204, - "name": "Taquara", - "capital": 0, - "ibgeState": 43, - "siafi": 8927, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6505, - -50.7753 - ] - } - }, - { - "ibge": 3168309, - "name": "Taquaraçu de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 5365, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6652, - -43.6922 - ] - } - }, - { - "ibge": 3553658, - "name": "Taquaral", - "capital": 0, - "ibgeState": 35, - "siafi": 824, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0737, - -48.4126 - ] - } - }, - { - "ibge": 5221007, - "name": "Taquaral de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9617, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0521, - -49.6039 - ] - } - }, - { - "ibge": 2709103, - "name": "Taquarana", - "capital": 0, - "ibgeState": 27, - "siafi": 2881, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.64529, - -36.4928 - ] - } - }, - { - "ibge": 4321303, - "name": "Taquari", - "capital": 0, - "ibgeState": 43, - "siafi": 8929, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.7943, - -51.8653 - ] - } - }, - { - "ibge": 3553708, - "name": "Taquaritinga", - "capital": 0, - "ibgeState": 35, - "siafi": 7175, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.4049, - -48.5103 - ] - } - }, - { - "ibge": 2615003, - "name": "Taquaritinga do Norte", - "capital": 0, - "ibgeState": 26, - "siafi": 2599, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.89446, - -36.0423 - ] - } - }, - { - "ibge": 3553807, - "name": "Taquarituba", - "capital": 0, - "ibgeState": 35, - "siafi": 7177, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5307, - -49.241 - ] - } - }, - { - "ibge": 3553856, - "name": "Taquarivaí", - "capital": 0, - "ibgeState": 35, - "siafi": 3063, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.9211, - -48.6948 - ] - } - }, - { - "ibge": 4321329, - "name": "Taquaruçu do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 7313, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4005, - -53.4702 - ] - } - }, - { - "ibge": 5007976, - "name": "Taquarussu", - "capital": 0, - "ibgeState": 50, - "siafi": 9817, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.4898, - -53.3519 - ] - } - }, - { - "ibge": 3553906, - "name": "Tarabai", - "capital": 0, - "ibgeState": 35, - "siafi": 7179, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3016, - -51.5621 - ] - } - }, - { - "ibge": 1200609, - "name": "Tarauacá", - "capital": 0, - "ibgeState": 12, - "siafi": 147, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -8.15697, - -70.7722 - ] - } - }, - { - "ibge": 2313252, - "name": "Tarrafas", - "capital": 0, - "ibgeState": 23, - "siafi": 1275, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.67838, - -39.753 - ] - } - }, - { - "ibge": 1600709, - "name": "Tartarugalzinho", - "capital": 0, - "ibgeState": 16, - "siafi": 617, - "ddd": 96, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - 1.50652, - -50.9087 - ] - } - }, - { - "ibge": 3553955, - "name": "Tarumã", - "capital": 0, - "ibgeState": 35, - "siafi": 7267, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7429, - -50.5786 - ] - } - }, - { - "ibge": 3168408, - "name": "Tarumirim", - "capital": 0, - "ibgeState": 31, - "siafi": 5367, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.2835, - -42.0097 - ] - } - }, - { - "ibge": 2112001, - "name": "Tasso Fragoso", - "capital": 0, - "ibgeState": 21, - "siafi": 933, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.4662, - -45.7536 - ] - } - }, - { - "ibge": 3554003, - "name": "Tatuí", - "capital": 0, - "ibgeState": 35, - "siafi": 7181, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3487, - -47.8461 - ] - } - }, - { - "ibge": 2313302, - "name": "Tauá", - "capital": 0, - "ibgeState": 23, - "siafi": 1567, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.98585, - -40.2968 - ] - } - }, - { - "ibge": 3554102, - "name": "Taubaté", - "capital": 0, - "ibgeState": 35, - "siafi": 7183, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0104, - -45.5593 - ] - } - }, - { - "ibge": 4321352, - "name": "Tavares", - "capital": 0, - "ibgeState": 43, - "siafi": 8971, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.2843, - -51.088 - ] - } - }, - { - "ibge": 2516607, - "name": "Tavares", - "capital": 0, - "ibgeState": 25, - "siafi": 2233, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.62697, - -37.8712 - ] - } - }, - { - "ibge": 1304203, - "name": "Tefé", - "capital": 0, - "ibgeState": 13, - "siafi": 281, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.36822, - -64.7193 - ] - } - }, - { - "ibge": 2516706, - "name": "Teixeira", - "capital": 0, - "ibgeState": 25, - "siafi": 2235, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.22104, - -37.2525 - ] - } - }, - { - "ibge": 2931350, - "name": "Teixeira de Freitas", - "capital": 0, - "ibgeState": 29, - "siafi": 3993, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.5399, - -39.74 - ] - } - }, - { - "ibge": 4127007, - "name": "Teixeira Soares", - "capital": 0, - "ibgeState": 41, - "siafi": 7913, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.3701, - -50.4571 - ] - } - }, - { - "ibge": 3168507, - "name": "Teixeiras", - "capital": 0, - "ibgeState": 31, - "siafi": 5369, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.6561, - -42.8564 - ] - } - }, - { - "ibge": 1101559, - "name": "Teixeirópolis", - "capital": 0, - "ibgeState": 11, - "siafi": 22, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.9056, - -62.242 - ] - } - }, - { - "ibge": 2313351, - "name": "Tejuçuoca", - "capital": 0, - "ibgeState": 23, - "siafi": 1277, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.98831, - -39.5799 - ] - } - }, - { - "ibge": 3554201, - "name": "Tejupá", - "capital": 0, - "ibgeState": 35, - "siafi": 7185, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.3425, - -49.3722 - ] - } - }, - { - "ibge": 4127106, - "name": "Telêmaco Borba", - "capital": 0, - "ibgeState": 41, - "siafi": 7915, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.3245, - -50.6176 - ] - } - }, - { - "ibge": 2807303, - "name": "Telha", - "capital": 0, - "ibgeState": 28, - "siafi": 3245, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.2064, - -36.8818 - ] - } - }, - { - "ibge": 2414100, - "name": "Tenente Ananias", - "capital": 0, - "ibgeState": 24, - "siafi": 1879, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.45823, - -38.182 - ] - } - }, - { - "ibge": 2414159, - "name": "Tenente Laurentino Cruz", - "capital": 0, - "ibgeState": 24, - "siafi": 434, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.1378, - -36.7135 - ] - } - }, - { - "ibge": 4321402, - "name": "Tenente Portela", - "capital": 0, - "ibgeState": 43, - "siafi": 8931, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3711, - -53.7585 - ] - } - }, - { - "ibge": 2516755, - "name": "Tenório", - "capital": 0, - "ibgeState": 25, - "siafi": 538, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.93855, - -36.6273 - ] - } - }, - { - "ibge": 2931400, - "name": "Teodoro Sampaio", - "capital": 0, - "ibgeState": 29, - "siafi": 3927, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.295, - -38.6347 - ] - } - }, - { - "ibge": 3554300, - "name": "Teodoro Sampaio", - "capital": 0, - "ibgeState": 35, - "siafi": 7187, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5299, - -52.1682 - ] - } - }, - { - "ibge": 2931509, - "name": "Teofilândia", - "capital": 0, - "ibgeState": 29, - "siafi": 3929, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.4827, - -38.9913 - ] - } - }, - { - "ibge": 3168606, - "name": "Teófilo Otoni", - "capital": 0, - "ibgeState": 31, - "siafi": 5371, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.8595, - -41.5087 - ] - } - }, - { - "ibge": 2931608, - "name": "Teolândia", - "capital": 0, - "ibgeState": 29, - "siafi": 3931, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.5896, - -39.484 - ] - } - }, - { - "ibge": 2709152, - "name": "Teotônio Vilela", - "capital": 0, - "ibgeState": 27, - "siafi": 971, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.91656, - -36.3492 - ] - } - }, - { - "ibge": 5008008, - "name": "Terenos", - "capital": 0, - "ibgeState": 50, - "siafi": 9159, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -20.4378, - -54.8647 - ] - } - }, - { - "ibge": 2211001, - "name": "Teresina", - "capital": 1, - "ibgeState": 22, - "siafi": 1219, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.09194, - -42.8034 - ] - } - }, - { - "ibge": 5221080, - "name": "Teresina de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 9759, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.7801, - -47.2659 - ] - } - }, - { - "ibge": 3305802, - "name": "Teresópolis", - "capital": 0, - "ibgeState": 33, - "siafi": 5915, - "ddd": 21, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4165, - -42.9752 - ] - } - }, - { - "ibge": 2615102, - "name": "Terezinha", - "capital": 0, - "ibgeState": 26, - "siafi": 2601, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.05621, - -36.6272 - ] - } - }, - { - "ibge": 5221197, - "name": "Terezópolis de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 57, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.3945, - -49.0797 - ] - } - }, - { - "ibge": 1507961, - "name": "Terra Alta", - "capital": 0, - "ibgeState": 15, - "siafi": 373, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.02963, - -47.9004 - ] - } - }, - { - "ibge": 4127205, - "name": "Terra Boa", - "capital": 0, - "ibgeState": 41, - "siafi": 7917, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7683, - -52.447 - ] - } - }, - { - "ibge": 4321436, - "name": "Terra de Areia", - "capital": 0, - "ibgeState": 43, - "siafi": 7333, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5782, - -50.0644 - ] - } - }, - { - "ibge": 2931707, - "name": "Terra Nova", - "capital": 0, - "ibgeState": 29, - "siafi": 3933, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.3888, - -38.6238 - ] - } - }, - { - "ibge": 2615201, - "name": "Terra Nova", - "capital": 0, - "ibgeState": 26, - "siafi": 2603, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.22244, - -39.3825 - ] - } - }, - { - "ibge": 5108055, - "name": "Terra Nova do Norte", - "capital": 0, - "ibgeState": 51, - "siafi": 9909, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.517, - -55.231 - ] - } - }, - { - "ibge": 4127304, - "name": "Terra Rica", - "capital": 0, - "ibgeState": 41, - "siafi": 7919, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7111, - -52.6188 - ] - } - }, - { - "ibge": 4127403, - "name": "Terra Roxa", - "capital": 0, - "ibgeState": 41, - "siafi": 7921, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.1575, - -54.0988 - ] - } - }, - { - "ibge": 3554409, - "name": "Terra Roxa", - "capital": 0, - "ibgeState": 35, - "siafi": 7189, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.787, - -48.3314 - ] - } - }, - { - "ibge": 1507979, - "name": "Terra Santa", - "capital": 0, - "ibgeState": 15, - "siafi": 637, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.10443, - -56.4877 - ] - } - }, - { - "ibge": 5108105, - "name": "Tesouro", - "capital": 0, - "ibgeState": 51, - "siafi": 9161, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -16.0809, - -53.559 - ] - } - }, - { - "ibge": 4321451, - "name": "Teutônia", - "capital": 0, - "ibgeState": 43, - "siafi": 9821, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4482, - -51.8044 - ] - } - }, - { - "ibge": 1101609, - "name": "Theobroma", - "capital": 0, - "ibgeState": 11, - "siafi": 975, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.2483, - -62.3538 - ] - } - }, - { - "ibge": 2313401, - "name": "Tianguá", - "capital": 0, - "ibgeState": 23, - "siafi": 1569, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.72965, - -40.9923 - ] - } - }, - { - "ibge": 4127502, - "name": "Tibagi", - "capital": 0, - "ibgeState": 41, - "siafi": 7923, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.5153, - -50.4176 - ] - } - }, - { - "ibge": 2411056, - "name": "Tibau", - "capital": 0, - "ibgeState": 24, - "siafi": 428, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.83729, - -37.2554 - ] - } - }, - { - "ibge": 2414209, - "name": "Tibau do Sul", - "capital": 0, - "ibgeState": 24, - "siafi": 1881, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.19176, - -35.0866 - ] - } - }, - { - "ibge": 3554508, - "name": "Tietê", - "capital": 0, - "ibgeState": 35, - "siafi": 7191, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.1101, - -47.7164 - ] - } - }, - { - "ibge": 4217956, - "name": "Tigrinhos", - "capital": 0, - "ibgeState": 42, - "siafi": 946, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.6876, - -53.1545 - ] - } - }, - { - "ibge": 4218004, - "name": "Tijucas", - "capital": 0, - "ibgeState": 42, - "siafi": 8355, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2354, - -48.6322 - ] - } - }, - { - "ibge": 4127601, - "name": "Tijucas do Sul", - "capital": 0, - "ibgeState": 41, - "siafi": 7925, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.9311, - -49.195 - ] - } - }, - { - "ibge": 2615300, - "name": "Timbaúba", - "capital": 0, - "ibgeState": 26, - "siafi": 2605, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.50484, - -35.3119 - ] - } - }, - { - "ibge": 2414308, - "name": "Timbaúba dos Batistas", - "capital": 0, - "ibgeState": 24, - "siafi": 1883, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.45768, - -37.2745 - ] - } - }, - { - "ibge": 4218103, - "name": "Timbé do Sul", - "capital": 0, - "ibgeState": 42, - "siafi": 8393, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.8287, - -49.842 - ] - } - }, - { - "ibge": 2112100, - "name": "Timbiras", - "capital": 0, - "ibgeState": 21, - "siafi": 935, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.25597, - -43.932 - ] - } - }, - { - "ibge": 4218202, - "name": "Timbó", - "capital": 0, - "ibgeState": 42, - "siafi": 8357, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.8246, - -49.269 - ] - } - }, - { - "ibge": 4218251, - "name": "Timbó Grande", - "capital": 0, - "ibgeState": 42, - "siafi": 9971, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.6127, - -50.6607 - ] - } - }, - { - "ibge": 3554607, - "name": "Timburi", - "capital": 0, - "ibgeState": 35, - "siafi": 7193, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2057, - -49.6096 - ] - } - }, - { - "ibge": 2112209, - "name": "Timon", - "capital": 0, - "ibgeState": 21, - "siafi": 937, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.09769, - -42.8329 - ] - } - }, - { - "ibge": 3168705, - "name": "Timóteo", - "capital": 0, - "ibgeState": 31, - "siafi": 5373, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5811, - -42.6471 - ] - } - }, - { - "ibge": 4321469, - "name": "Tio Hugo", - "capital": 0, - "ibgeState": 43, - "siafi": 1174, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5712, - -52.5955 - ] - } - }, - { - "ibge": 3168804, - "name": "Tiradentes", - "capital": 0, - "ibgeState": 31, - "siafi": 5375, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1102, - -44.1744 - ] - } - }, - { - "ibge": 4321477, - "name": "Tiradentes do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 6077, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4022, - -54.0814 - ] - } - }, - { - "ibge": 3168903, - "name": "Tiros", - "capital": 0, - "ibgeState": 31, - "siafi": 5377, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.0037, - -45.9626 - ] - } - }, - { - "ibge": 2807402, - "name": "Tobias Barreto", - "capital": 0, - "ibgeState": 28, - "siafi": 3247, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.1798, - -37.9995 - ] - } - }, - { - "ibge": 1721109, - "name": "Tocantínia", - "capital": 0, - "ibgeState": 17, - "siafi": 9619, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.5632, - -48.3741 - ] - } - }, - { - "ibge": 1721208, - "name": "Tocantinópolis", - "capital": 0, - "ibgeState": 17, - "siafi": 9621, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.32447, - -47.4224 - ] - } - }, - { - "ibge": 3169000, - "name": "Tocantins", - "capital": 0, - "ibgeState": 31, - "siafi": 5379, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1774, - -43.0127 - ] - } - }, - { - "ibge": 3169059, - "name": "Tocos do Moji", - "capital": 0, - "ibgeState": 31, - "siafi": 740, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3698, - -46.0971 - ] - } - }, - { - "ibge": 3169109, - "name": "Toledo", - "capital": 0, - "ibgeState": 31, - "siafi": 5381, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.7421, - -46.3728 - ] - } - }, - { - "ibge": 4127700, - "name": "Toledo", - "capital": 0, - "ibgeState": 41, - "siafi": 7927, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.7246, - -53.7412 - ] - } - }, - { - "ibge": 2807501, - "name": "Tomar do Geru", - "capital": 0, - "ibgeState": 28, - "siafi": 3249, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.3694, - -37.8433 - ] - } - }, - { - "ibge": 4127809, - "name": "Tomazina", - "capital": 0, - "ibgeState": 41, - "siafi": 7929, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7796, - -49.9499 - ] - } - }, - { - "ibge": 3169208, - "name": "Tombos", - "capital": 0, - "ibgeState": 31, - "siafi": 5383, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9086, - -42.0228 - ] - } - }, - { - "ibge": 1508001, - "name": "Tomé-Açu", - "capital": 0, - "ibgeState": 15, - "siafi": 559, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.41302, - -48.1415 - ] - } - }, - { - "ibge": 1304237, - "name": "Tonantins", - "capital": 0, - "ibgeState": 13, - "siafi": 9851, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -2.86582, - -67.7919 - ] - } - }, - { - "ibge": 2615409, - "name": "Toritama", - "capital": 0, - "ibgeState": 26, - "siafi": 2607, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.00955, - -36.0637 - ] - } - }, - { - "ibge": 5108204, - "name": "Torixoréu", - "capital": 0, - "ibgeState": 51, - "siafi": 9163, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -16.2006, - -52.5571 - ] - } - }, - { - "ibge": 4321493, - "name": "Toropi", - "capital": 0, - "ibgeState": 43, - "siafi": 1018, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4782, - -54.2244 - ] - } - }, - { - "ibge": 3554656, - "name": "Torre de Pedra", - "capital": 0, - "ibgeState": 35, - "siafi": 3227, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2462, - -48.1955 - ] - } - }, - { - "ibge": 4321501, - "name": "Torres", - "capital": 0, - "ibgeState": 43, - "siafi": 8933, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3334, - -49.7333 - ] - } - }, - { - "ibge": 3554706, - "name": "Torrinha", - "capital": 0, - "ibgeState": 35, - "siafi": 7195, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4237, - -48.1731 - ] - } - }, - { - "ibge": 2414407, - "name": "Touros", - "capital": 0, - "ibgeState": 24, - "siafi": 1885, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.20182, - -35.4621 - ] - } - }, - { - "ibge": 3554755, - "name": "Trabiju", - "capital": 0, - "ibgeState": 35, - "siafi": 826, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0388, - -48.3342 - ] - } - }, - { - "ibge": 1508035, - "name": "Tracuateua", - "capital": 0, - "ibgeState": 15, - "siafi": 68, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.07653, - -46.9031 - ] - } - }, - { - "ibge": 2615508, - "name": "Tracunhaém", - "capital": 0, - "ibgeState": 26, - "siafi": 2609, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.80228, - -35.2314 - ] - } - }, - { - "ibge": 2709202, - "name": "Traipu", - "capital": 0, - "ibgeState": 27, - "siafi": 2883, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.96262, - -37.0071 - ] - } - }, - { - "ibge": 1508050, - "name": "Trairão", - "capital": 0, - "ibgeState": 15, - "siafi": 635, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.57347, - -55.9429 - ] - } - }, - { - "ibge": 2313500, - "name": "Trairi", - "capital": 0, - "ibgeState": 23, - "siafi": 1571, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.26932, - -39.2681 - ] - } - }, - { - "ibge": 3305901, - "name": "Trajano de Moraes", - "capital": 0, - "ibgeState": 33, - "siafi": 5917, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.0638, - -42.0643 - ] - } - }, - { - "ibge": 4321600, - "name": "Tramandaí", - "capital": 0, - "ibgeState": 43, - "siafi": 8935, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.9841, - -50.1322 - ] - } - }, - { - "ibge": 4321626, - "name": "Travesseiro", - "capital": 0, - "ibgeState": 43, - "siafi": 6037, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.2977, - -52.0532 - ] - } - }, - { - "ibge": 2931806, - "name": "Tremedal", - "capital": 0, - "ibgeState": 29, - "siafi": 3935, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.9736, - -41.4142 - ] - } - }, - { - "ibge": 3554805, - "name": "Tremembé", - "capital": 0, - "ibgeState": 35, - "siafi": 7197, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9571, - -45.5475 - ] - } - }, - { - "ibge": 4321634, - "name": "Três Arroios", - "capital": 0, - "ibgeState": 43, - "siafi": 7331, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5003, - -52.1448 - ] - } - }, - { - "ibge": 4218301, - "name": "Três Barras", - "capital": 0, - "ibgeState": 42, - "siafi": 8359, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.1056, - -50.3197 - ] - } - }, - { - "ibge": 4127858, - "name": "Três Barras do Paraná", - "capital": 0, - "ibgeState": 41, - "siafi": 7987, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.4185, - -53.1833 - ] - } - }, - { - "ibge": 4321667, - "name": "Três Cachoeiras", - "capital": 0, - "ibgeState": 43, - "siafi": 7329, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4487, - -49.9275 - ] - } - }, - { - "ibge": 3169307, - "name": "Três Corações", - "capital": 0, - "ibgeState": 31, - "siafi": 5385, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.6921, - -45.2511 - ] - } - }, - { - "ibge": 4321709, - "name": "Três Coroas", - "capital": 0, - "ibgeState": 43, - "siafi": 8937, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5137, - -50.7739 - ] - } - }, - { - "ibge": 4321808, - "name": "Três de Maio", - "capital": 0, - "ibgeState": 43, - "siafi": 8939, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.78, - -54.2357 - ] - } - }, - { - "ibge": 4321832, - "name": "Três Forquilhas", - "capital": 0, - "ibgeState": 43, - "siafi": 5777, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5384, - -50.0708 - ] - } - }, - { - "ibge": 3554904, - "name": "Três Fronteiras", - "capital": 0, - "ibgeState": 35, - "siafi": 7199, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2344, - -50.8905 - ] - } - }, - { - "ibge": 5008305, - "name": "Três Lagoas", - "capital": 0, - "ibgeState": 50, - "siafi": 9165, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -20.7849, - -51.7007 - ] - } - }, - { - "ibge": 3169356, - "name": "Três Marias", - "capital": 0, - "ibgeState": 31, - "siafi": 4115, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.2048, - -45.2473 - ] - } - }, - { - "ibge": 4321857, - "name": "Três Palmeiras", - "capital": 0, - "ibgeState": 43, - "siafi": 7327, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6139, - -52.8437 - ] - } - }, - { - "ibge": 4321907, - "name": "Três Passos", - "capital": 0, - "ibgeState": 43, - "siafi": 8941, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4555, - -53.9296 - ] - } - }, - { - "ibge": 3169406, - "name": "Três Pontas", - "capital": 0, - "ibgeState": 31, - "siafi": 5387, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3694, - -45.5109 - ] - } - }, - { - "ibge": 5221304, - "name": "Três Ranchos", - "capital": 0, - "ibgeState": 52, - "siafi": 9623, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.3539, - -47.776 - ] - } - }, - { - "ibge": 3306008, - "name": "Três Rios", - "capital": 0, - "ibgeState": 33, - "siafi": 5919, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.1165, - -43.2185 - ] - } - }, - { - "ibge": 4218350, - "name": "Treviso", - "capital": 0, - "ibgeState": 42, - "siafi": 948, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5097, - -49.4634 - ] - } - }, - { - "ibge": 4218400, - "name": "Treze de Maio", - "capital": 0, - "ibgeState": 42, - "siafi": 8361, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5537, - -49.1565 - ] - } - }, - { - "ibge": 4218509, - "name": "Treze Tílias", - "capital": 0, - "ibgeState": 42, - "siafi": 8363, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0026, - -51.4084 - ] - } - }, - { - "ibge": 5221403, - "name": "Trindade", - "capital": 0, - "ibgeState": 52, - "siafi": 9625, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.6517, - -49.4927 - ] - } - }, - { - "ibge": 2615607, - "name": "Trindade", - "capital": 0, - "ibgeState": 26, - "siafi": 2611, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.759, - -40.2647 - ] - } - }, - { - "ibge": 4321956, - "name": "Trindade do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 7325, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5239, - -52.8956 - ] - } - }, - { - "ibge": 4322004, - "name": "Triunfo", - "capital": 0, - "ibgeState": 43, - "siafi": 8943, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.9291, - -51.7075 - ] - } - }, - { - "ibge": 2516805, - "name": "Triunfo", - "capital": 0, - "ibgeState": 25, - "siafi": 2237, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.5713, - -38.5986 - ] - } - }, - { - "ibge": 2615706, - "name": "Triunfo", - "capital": 0, - "ibgeState": 26, - "siafi": 2613, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.83272, - -38.0978 - ] - } - }, - { - "ibge": 2414456, - "name": "Triunfo Potiguar", - "capital": 0, - "ibgeState": 24, - "siafi": 436, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.85408, - -37.1786 - ] - } - }, - { - "ibge": 2112233, - "name": "Trizidela do Vale", - "capital": 0, - "ibgeState": 21, - "siafi": 258, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.538, - -44.628 - ] - } - }, - { - "ibge": 5221452, - "name": "Trombas", - "capital": 0, - "ibgeState": 52, - "siafi": 9761, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.5079, - -48.7417 - ] - } - }, - { - "ibge": 4218608, - "name": "Trombudo Central", - "capital": 0, - "ibgeState": 42, - "siafi": 8365, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3033, - -49.793 - ] - } - }, - { - "ibge": 4218707, - "name": "Tubarão", - "capital": 0, - "ibgeState": 42, - "siafi": 8367, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.4713, - -49.0144 - ] - } - }, - { - "ibge": 2931905, - "name": "Tucano", - "capital": 0, - "ibgeState": 29, - "siafi": 3937, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.9584, - -38.7894 - ] - } - }, - { - "ibge": 1508084, - "name": "Tucumã", - "capital": 0, - "ibgeState": 15, - "siafi": 397, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.74687, - -51.1626 - ] - } - }, - { - "ibge": 4322103, - "name": "Tucunduva", - "capital": 0, - "ibgeState": 43, - "siafi": 8945, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.6573, - -54.4439 - ] - } - }, - { - "ibge": 1508100, - "name": "Tucuruí", - "capital": 0, - "ibgeState": 15, - "siafi": 561, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.7657, - -49.6773 - ] - } - }, - { - "ibge": 2112274, - "name": "Tufilândia", - "capital": 0, - "ibgeState": 21, - "siafi": 260, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.67355, - -45.6238 - ] - } - }, - { - "ibge": 3554953, - "name": "Tuiuti", - "capital": 0, - "ibgeState": 35, - "siafi": 2955, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.8193, - -46.6937 - ] - } - }, - { - "ibge": 3169505, - "name": "Tumiritinga", - "capital": 0, - "ibgeState": 31, - "siafi": 5389, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.9844, - -41.6527 - ] - } - }, - { - "ibge": 4218756, - "name": "Tunápolis", - "capital": 0, - "ibgeState": 42, - "siafi": 9991, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9681, - -53.6417 - ] - } - }, - { - "ibge": 4322152, - "name": "Tunas", - "capital": 0, - "ibgeState": 43, - "siafi": 7323, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.1039, - -52.9538 - ] - } - }, - { - "ibge": 4127882, - "name": "Tunas do Paraná", - "capital": 0, - "ibgeState": 41, - "siafi": 5455, - "ddd": 41, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.9731, - -49.0879 - ] - } - }, - { - "ibge": 4127908, - "name": "Tuneiras do Oeste", - "capital": 0, - "ibgeState": 41, - "siafi": 7931, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8648, - -52.8769 - ] - } - }, - { - "ibge": 2112308, - "name": "Tuntum", - "capital": 0, - "ibgeState": 21, - "siafi": 939, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.25476, - -44.6444 - ] - } - }, - { - "ibge": 3555000, - "name": "Tupã", - "capital": 0, - "ibgeState": 35, - "siafi": 7201, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.9335, - -50.5191 - ] - } - }, - { - "ibge": 3169604, - "name": "Tupaciguara", - "capital": 0, - "ibgeState": 31, - "siafi": 5391, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.5866, - -48.6985 - ] - } - }, - { - "ibge": 2615805, - "name": "Tupanatinga", - "capital": 0, - "ibgeState": 26, - "siafi": 2615, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.74798, - -37.3445 - ] - } - }, - { - "ibge": 4322186, - "name": "Tupanci do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 5979, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9241, - -51.5383 - ] - } - }, - { - "ibge": 4322202, - "name": "Tupanciretã", - "capital": 0, - "ibgeState": 43, - "siafi": 8947, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.0858, - -53.8445 - ] - } - }, - { - "ibge": 4322251, - "name": "Tupandi", - "capital": 0, - "ibgeState": 43, - "siafi": 7321, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4772, - -51.4174 - ] - } - }, - { - "ibge": 4322301, - "name": "Tuparendi", - "capital": 0, - "ibgeState": 43, - "siafi": 8949, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.7598, - -54.4814 - ] - } - }, - { - "ibge": 2615904, - "name": "Tuparetama", - "capital": 0, - "ibgeState": 26, - "siafi": 2617, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.6003, - -37.3165 - ] - } - }, - { - "ibge": 4127957, - "name": "Tupãssi", - "capital": 0, - "ibgeState": 41, - "siafi": 7993, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.5879, - -53.5105 - ] - } - }, - { - "ibge": 3555109, - "name": "Tupi Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 7203, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.3825, - -51.575 - ] - } - }, - { - "ibge": 1721257, - "name": "Tupirama", - "capital": 0, - "ibgeState": 17, - "siafi": 102, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.97168, - -48.1883 - ] - } - }, - { - "ibge": 1721307, - "name": "Tupiratins", - "capital": 0, - "ibgeState": 17, - "siafi": 365, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.39388, - -48.1277 - ] - } - }, - { - "ibge": 2112407, - "name": "Turiaçu", - "capital": 0, - "ibgeState": 21, - "siafi": 941, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.65893, - -45.3798 - ] - } - }, - { - "ibge": 2112456, - "name": "Turilândia", - "capital": 0, - "ibgeState": 21, - "siafi": 262, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.21638, - -45.3044 - ] - } - }, - { - "ibge": 3555208, - "name": "Turiúba", - "capital": 0, - "ibgeState": 35, - "siafi": 7205, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9428, - -50.1135 - ] - } - }, - { - "ibge": 3555307, - "name": "Turmalina", - "capital": 0, - "ibgeState": 35, - "siafi": 7207, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0486, - -50.4792 - ] - } - }, - { - "ibge": 3169703, - "name": "Turmalina", - "capital": 0, - "ibgeState": 31, - "siafi": 5393, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.2828, - -42.7285 - ] - } - }, - { - "ibge": 4322327, - "name": "Turuçu", - "capital": 0, - "ibgeState": 43, - "siafi": 1020, - "ddd": 53, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -31.4173, - -52.1706 - ] - } - }, - { - "ibge": 2313559, - "name": "Tururu", - "capital": 0, - "ibgeState": 23, - "siafi": 1279, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.58413, - -39.4297 - ] - } - }, - { - "ibge": 5221502, - "name": "Turvânia", - "capital": 0, - "ibgeState": 52, - "siafi": 9631, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.6125, - -50.1369 - ] - } - }, - { - "ibge": 5221551, - "name": "Turvelândia", - "capital": 0, - "ibgeState": 52, - "siafi": 9765, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.8502, - -50.3024 - ] - } - }, - { - "ibge": 4127965, - "name": "Turvo", - "capital": 0, - "ibgeState": 41, - "siafi": 8453, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.0437, - -51.5282 - ] - } - }, - { - "ibge": 4218806, - "name": "Turvo", - "capital": 0, - "ibgeState": 42, - "siafi": 8369, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.9272, - -49.6831 - ] - } - }, - { - "ibge": 3169802, - "name": "Turvolândia", - "capital": 0, - "ibgeState": 31, - "siafi": 5395, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8733, - -45.7859 - ] - } - }, - { - "ibge": 2112506, - "name": "Tutóia", - "capital": 0, - "ibgeState": 21, - "siafi": 943, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.76141, - -42.2755 - ] - } - }, - { - "ibge": 1304260, - "name": "Uarini", - "capital": 0, - "ibgeState": 13, - "siafi": 9849, - "ddd": 97, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -2.99609, - -65.1133 - ] - } - }, - { - "ibge": 2932002, - "name": "Uauá", - "capital": 0, - "ibgeState": 29, - "siafi": 3939, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.83325, - -39.4794 - ] - } - }, - { - "ibge": 3169901, - "name": "Ubá", - "capital": 0, - "ibgeState": 31, - "siafi": 5397, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1204, - -42.9359 - ] - } - }, - { - "ibge": 3170008, - "name": "Ubaí", - "capital": 0, - "ibgeState": 31, - "siafi": 5399, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.2885, - -44.7783 - ] - } - }, - { - "ibge": 2932101, - "name": "Ubaíra", - "capital": 0, - "ibgeState": 29, - "siafi": 3941, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.2714, - -39.666 - ] - } - }, - { - "ibge": 2932200, - "name": "Ubaitaba", - "capital": 0, - "ibgeState": 29, - "siafi": 3943, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.303, - -39.3222 - ] - } - }, - { - "ibge": 2313609, - "name": "Ubajara", - "capital": 0, - "ibgeState": 23, - "siafi": 1573, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.85448, - -40.9204 - ] - } - }, - { - "ibge": 3170057, - "name": "Ubaporanga", - "capital": 0, - "ibgeState": 31, - "siafi": 2671, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6351, - -42.1059 - ] - } - }, - { - "ibge": 3555356, - "name": "Ubarana", - "capital": 0, - "ibgeState": 35, - "siafi": 2971, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.165, - -49.7198 - ] - } - }, - { - "ibge": 2932309, - "name": "Ubatã", - "capital": 0, - "ibgeState": 29, - "siafi": 3945, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.2063, - -39.5207 - ] - } - }, - { - "ibge": 3555406, - "name": "Ubatuba", - "capital": 0, - "ibgeState": 35, - "siafi": 7209, - "ddd": 12, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.4332, - -45.0834 - ] - } - }, - { - "ibge": 3170107, - "name": "Uberaba", - "capital": 0, - "ibgeState": 31, - "siafi": 5401, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.7472, - -47.9381 - ] - } - }, - { - "ibge": 3170206, - "name": "Uberlândia", - "capital": 0, - "ibgeState": 31, - "siafi": 5403, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.9141, - -48.2749 - ] - } - }, - { - "ibge": 3555505, - "name": "Ubirajara", - "capital": 0, - "ibgeState": 35, - "siafi": 7211, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5272, - -49.6613 - ] - } - }, - { - "ibge": 4128005, - "name": "Ubiratã", - "capital": 0, - "ibgeState": 41, - "siafi": 7933, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.5393, - -52.9865 - ] - } - }, - { - "ibge": 4322343, - "name": "Ubiretama", - "capital": 0, - "ibgeState": 43, - "siafi": 1022, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.0404, - -54.686 - ] - } - }, - { - "ibge": 3555604, - "name": "Uchoa", - "capital": 0, - "ibgeState": 35, - "siafi": 7213, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9511, - -49.1713 - ] - } - }, - { - "ibge": 2932408, - "name": "Uibaí", - "capital": 0, - "ibgeState": 29, - "siafi": 3947, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.3394, - -42.1354 - ] - } - }, - { - "ibge": 1400704, - "name": "Uiramutã", - "capital": 0, - "ibgeState": 14, - "siafi": 38, - "ddd": 95, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - 4.60314, - -60.1815 - ] - } - }, - { - "ibge": 5221577, - "name": "Uirapuru", - "capital": 0, - "ibgeState": 52, - "siafi": 59, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.2835, - -49.9201 - ] - } - }, - { - "ibge": 2516904, - "name": "Uiraúna", - "capital": 0, - "ibgeState": 25, - "siafi": 2239, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.51504, - -38.4128 - ] - } - }, - { - "ibge": 1508126, - "name": "Ulianópolis", - "capital": 0, - "ibgeState": 15, - "siafi": 623, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.75007, - -47.4892 - ] - } - }, - { - "ibge": 2313708, - "name": "Umari", - "capital": 0, - "ibgeState": 23, - "siafi": 1575, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.63893, - -38.7008 - ] - } - }, - { - "ibge": 2414506, - "name": "Umarizal", - "capital": 0, - "ibgeState": 24, - "siafi": 1887, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.98238, - -37.818 - ] - } - }, - { - "ibge": 2807600, - "name": "Umbaúba", - "capital": 0, - "ibgeState": 28, - "siafi": 3251, - "ddd": 79, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.3809, - -37.6623 - ] - } - }, - { - "ibge": 2932457, - "name": "Umburanas", - "capital": 0, - "ibgeState": 29, - "siafi": 3047, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.7339, - -41.3234 - ] - } - }, - { - "ibge": 3170305, - "name": "Umburatiba", - "capital": 0, - "ibgeState": 31, - "siafi": 5405, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.2548, - -40.5779 - ] - } - }, - { - "ibge": 2517001, - "name": "Umbuzeiro", - "capital": 0, - "ibgeState": 25, - "siafi": 2241, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.69199, - -35.6582 - ] - } - }, - { - "ibge": 2313757, - "name": "Umirim", - "capital": 0, - "ibgeState": 23, - "siafi": 9855, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.67654, - -39.3465 - ] - } - }, - { - "ibge": 4128104, - "name": "Umuarama", - "capital": 0, - "ibgeState": 41, - "siafi": 7935, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7656, - -53.3201 - ] - } - }, - { - "ibge": 2932507, - "name": "Una", - "capital": 0, - "ibgeState": 29, - "siafi": 3949, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.2791, - -39.0765 - ] - } - }, - { - "ibge": 3170404, - "name": "Unaí", - "capital": 0, - "ibgeState": 31, - "siafi": 5407, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.3592, - -46.9022 - ] - } - }, - { - "ibge": 2211100, - "name": "União", - "capital": 0, - "ibgeState": 22, - "siafi": 1221, - "ddd": 86, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.58571, - -42.8583 - ] - } - }, - { - "ibge": 4322350, - "name": "União da Serra", - "capital": 0, - "ibgeState": 43, - "siafi": 5999, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.7833, - -52.0238 - ] - } - }, - { - "ibge": 4128203, - "name": "União da Vitória", - "capital": 0, - "ibgeState": 41, - "siafi": 7937, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.2273, - -51.0873 - ] - } - }, - { - "ibge": 3170438, - "name": "União de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 742, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5299, - -50.338 - ] - } - }, - { - "ibge": 4218855, - "name": "União do Oeste", - "capital": 0, - "ibgeState": 42, - "siafi": 9973, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.762, - -52.8541 - ] - } - }, - { - "ibge": 5108303, - "name": "União do Sul", - "capital": 0, - "ibgeState": 51, - "siafi": 1048, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.5308, - -54.3616 - ] - } - }, - { - "ibge": 2709301, - "name": "União dos Palmares", - "capital": 0, - "ibgeState": 27, - "siafi": 2885, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.15921, - -36.0223 - ] - } - }, - { - "ibge": 3555703, - "name": "União Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 7215, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8862, - -49.9025 - ] - } - }, - { - "ibge": 4128302, - "name": "Uniflor", - "capital": 0, - "ibgeState": 41, - "siafi": 7939, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0868, - -52.1573 - ] - } - }, - { - "ibge": 4322376, - "name": "Unistalda", - "capital": 0, - "ibgeState": 43, - "siafi": 1024, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.04, - -55.1517 - ] - } - }, - { - "ibge": 2414605, - "name": "Upanema", - "capital": 0, - "ibgeState": 24, - "siafi": 1889, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.63761, - -37.2635 - ] - } - }, - { - "ibge": 4128401, - "name": "Uraí", - "capital": 0, - "ibgeState": 41, - "siafi": 7941, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2, - -50.7939 - ] - } - }, - { - "ibge": 2932606, - "name": "Urandi", - "capital": 0, - "ibgeState": 29, - "siafi": 3951, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.7678, - -42.6498 - ] - } - }, - { - "ibge": 3555802, - "name": "Urânia", - "capital": 0, - "ibgeState": 35, - "siafi": 7217, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.2455, - -50.6455 - ] - } - }, - { - "ibge": 2112605, - "name": "Urbano Santos", - "capital": 0, - "ibgeState": 21, - "siafi": 945, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.20642, - -43.3878 - ] - } - }, - { - "ibge": 3555901, - "name": "Uru", - "capital": 0, - "ibgeState": 35, - "siafi": 7219, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7866, - -49.2848 - ] - } - }, - { - "ibge": 5221601, - "name": "Uruaçu", - "capital": 0, - "ibgeState": 52, - "siafi": 9633, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.5238, - -49.1396 - ] - } - }, - { - "ibge": 5221700, - "name": "Uruana", - "capital": 0, - "ibgeState": 52, - "siafi": 9635, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.4993, - -49.6861 - ] - } - }, - { - "ibge": 3170479, - "name": "Uruana de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 744, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0634, - -46.2443 - ] - } - }, - { - "ibge": 1508159, - "name": "Uruará", - "capital": 0, - "ibgeState": 15, - "siafi": 399, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.71519, - -53.7396 - ] - } - }, - { - "ibge": 4218905, - "name": "Urubici", - "capital": 0, - "ibgeState": 42, - "siafi": 8371, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.0157, - -49.5925 - ] - } - }, - { - "ibge": 2313807, - "name": "Uruburetama", - "capital": 0, - "ibgeState": 23, - "siafi": 1577, - "ddd": 85, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.62316, - -39.5107 - ] - } - }, - { - "ibge": 3170503, - "name": "Urucânia", - "capital": 0, - "ibgeState": 31, - "siafi": 5409, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3521, - -42.737 - ] - } - }, - { - "ibge": 1304302, - "name": "Urucará", - "capital": 0, - "ibgeState": 13, - "siafi": 285, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -2.52936, - -57.7538 - ] - } - }, - { - "ibge": 2932705, - "name": "Uruçuca", - "capital": 0, - "ibgeState": 29, - "siafi": 3953, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.5963, - -39.2851 - ] - } - }, - { - "ibge": 2211209, - "name": "Uruçuí", - "capital": 0, - "ibgeState": 22, - "siafi": 1223, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.23944, - -44.5577 - ] - } - }, - { - "ibge": 3170529, - "name": "Urucuia", - "capital": 0, - "ibgeState": 31, - "siafi": 2699, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.1244, - -45.7352 - ] - } - }, - { - "ibge": 1304401, - "name": "Urucurituba", - "capital": 0, - "ibgeState": 13, - "siafi": 287, - "ddd": 92, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -3.12841, - -58.1496 - ] - } - }, - { - "ibge": 4322400, - "name": "Uruguaiana", - "capital": 0, - "ibgeState": 43, - "siafi": 8951, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.7614, - -57.0853 - ] - } - }, - { - "ibge": 2313906, - "name": "Uruoca", - "capital": 0, - "ibgeState": 23, - "siafi": 1579, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.30819, - -40.5628 - ] - } - }, - { - "ibge": 1101708, - "name": "Urupá", - "capital": 0, - "ibgeState": 11, - "siafi": 977, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -11.1261, - -62.3639 - ] - } - }, - { - "ibge": 4218954, - "name": "Urupema", - "capital": 0, - "ibgeState": 42, - "siafi": 9975, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.9557, - -49.8729 - ] - } - }, - { - "ibge": 3556008, - "name": "Urupês", - "capital": 0, - "ibgeState": 35, - "siafi": 7221, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2032, - -49.2931 - ] - } - }, - { - "ibge": 4219002, - "name": "Urussanga", - "capital": 0, - "ibgeState": 42, - "siafi": 8373, - "ddd": 48, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.518, - -49.3238 - ] - } - }, - { - "ibge": 5221809, - "name": "Urutaí", - "capital": 0, - "ibgeState": 52, - "siafi": 9637, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.4651, - -48.2015 - ] - } - }, - { - "ibge": 2932804, - "name": "Utinga", - "capital": 0, - "ibgeState": 29, - "siafi": 3955, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.0783, - -41.0954 - ] - } - }, - { - "ibge": 4322509, - "name": "Vacaria", - "capital": 0, - "ibgeState": 43, - "siafi": 8953, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5079, - -50.9418 - ] - } - }, - { - "ibge": 5108352, - "name": "Vale de São Domingos", - "capital": 0, - "ibgeState": 51, - "siafi": 1102, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.286, - -59.0683 - ] - } - }, - { - "ibge": 1101757, - "name": "Vale do Anari", - "capital": 0, - "ibgeState": 11, - "siafi": 24, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -9.86215, - -62.1876 - ] - } - }, - { - "ibge": 1101807, - "name": "Vale do Paraíso", - "capital": 0, - "ibgeState": 11, - "siafi": 979, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.4465, - -62.1352 - ] - } - }, - { - "ibge": 4322533, - "name": "Vale do Sol", - "capital": 0, - "ibgeState": 43, - "siafi": 5769, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.5967, - -52.6839 - ] - } - }, - { - "ibge": 4322541, - "name": "Vale Real", - "capital": 0, - "ibgeState": 43, - "siafi": 6049, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.3919, - -51.2559 - ] - } - }, - { - "ibge": 4322525, - "name": "Vale Verde", - "capital": 0, - "ibgeState": 43, - "siafi": 1026, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.7864, - -52.1857 - ] - } - }, - { - "ibge": 2932903, - "name": "Valença", - "capital": 0, - "ibgeState": 29, - "siafi": 3957, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.3669, - -39.073 - ] - } - }, - { - "ibge": 3306107, - "name": "Valença", - "capital": 0, - "ibgeState": 33, - "siafi": 5921, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2445, - -43.7129 - ] - } - }, - { - "ibge": 2211308, - "name": "Valença do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 1225, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.40301, - -41.7375 - ] - } - }, - { - "ibge": 2933000, - "name": "Valente", - "capital": 0, - "ibgeState": 29, - "siafi": 3959, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.4062, - -39.457 - ] - } - }, - { - "ibge": 3556107, - "name": "Valentim Gentil", - "capital": 0, - "ibgeState": 35, - "siafi": 7223, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4217, - -50.0889 - ] - } - }, - { - "ibge": 3556206, - "name": "Valinhos", - "capital": 0, - "ibgeState": 35, - "siafi": 7225, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.9698, - -46.9974 - ] - } - }, - { - "ibge": 3556305, - "name": "Valparaíso", - "capital": 0, - "ibgeState": 35, - "siafi": 7227, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.2229, - -50.8699 - ] - } - }, - { - "ibge": 5221858, - "name": "Valparaíso de Goiás", - "capital": 0, - "ibgeState": 52, - "siafi": 1066, - "ddd": 61, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.0651, - -47.9757 - ] - } - }, - { - "ibge": 4322558, - "name": "Vanini", - "capital": 0, - "ibgeState": 43, - "siafi": 7319, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.4758, - -51.8447 - ] - } - }, - { - "ibge": 4219101, - "name": "Vargeão", - "capital": 0, - "ibgeState": 42, - "siafi": 8375, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.8621, - -52.1549 - ] - } - }, - { - "ibge": 4219150, - "name": "Vargem", - "capital": 0, - "ibgeState": 42, - "siafi": 5563, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4867, - -50.9724 - ] - } - }, - { - "ibge": 3556354, - "name": "Vargem", - "capital": 0, - "ibgeState": 35, - "siafi": 2957, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.887, - -46.4124 - ] - } - }, - { - "ibge": 3170578, - "name": "Vargem Alegre", - "capital": 0, - "ibgeState": 31, - "siafi": 746, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.5988, - -42.2949 - ] - } - }, - { - "ibge": 3205036, - "name": "Vargem Alta", - "capital": 0, - "ibgeState": 32, - "siafi": 5727, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.669, - -41.0179 - ] - } - }, - { - "ibge": 3170602, - "name": "Vargem Bonita", - "capital": 0, - "ibgeState": 31, - "siafi": 5411, - "ddd": 37, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3333, - -46.3688 - ] - } - }, - { - "ibge": 4219176, - "name": "Vargem Bonita", - "capital": 0, - "ibgeState": 42, - "siafi": 5565, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0055, - -51.7402 - ] - } - }, - { - "ibge": 2112704, - "name": "Vargem Grande", - "capital": 0, - "ibgeState": 21, - "siafi": 947, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.53639, - -43.917 - ] - } - }, - { - "ibge": 3170651, - "name": "Vargem Grande do Rio Pardo", - "capital": 0, - "ibgeState": 31, - "siafi": 748, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.3987, - -42.3085 - ] - } - }, - { - "ibge": 3556404, - "name": "Vargem Grande do Sul", - "capital": 0, - "ibgeState": 35, - "siafi": 7231, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.8322, - -46.8913 - ] - } - }, - { - "ibge": 3556453, - "name": "Vargem Grande Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 7273, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5993, - -47.022 - ] - } - }, - { - "ibge": 3170701, - "name": "Varginha", - "capital": 0, - "ibgeState": 31, - "siafi": 5413, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.5556, - -45.4364 - ] - } - }, - { - "ibge": 5221908, - "name": "Varjão", - "capital": 0, - "ibgeState": 52, - "siafi": 9639, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.0471, - -49.6312 - ] - } - }, - { - "ibge": 3170750, - "name": "Varjão de Minas", - "capital": 0, - "ibgeState": 31, - "siafi": 750, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.3741, - -46.0313 - ] - } - }, - { - "ibge": 2313955, - "name": "Varjota", - "capital": 0, - "ibgeState": 23, - "siafi": 9857, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.19387, - -40.4741 - ] - } - }, - { - "ibge": 3306156, - "name": "Varre-Sai", - "capital": 0, - "ibgeState": 33, - "siafi": 2917, - "ddd": 22, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.9276, - -41.8701 - ] - } - }, - { - "ibge": 2414704, - "name": "Várzea", - "capital": 0, - "ibgeState": 24, - "siafi": 1891, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.34641, - -35.3732 - ] - } - }, - { - "ibge": 2517100, - "name": "Várzea", - "capital": 0, - "ibgeState": 25, - "siafi": 2243, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.76189, - -36.9913 - ] - } - }, - { - "ibge": 2314003, - "name": "Várzea Alegre", - "capital": 0, - "ibgeState": 23, - "siafi": 1581, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.78264, - -39.2942 - ] - } - }, - { - "ibge": 2211357, - "name": "Várzea Branca", - "capital": 0, - "ibgeState": 22, - "siafi": 2267, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.238, - -42.9692 - ] - } - }, - { - "ibge": 3170800, - "name": "Várzea da Palma", - "capital": 0, - "ibgeState": 31, - "siafi": 5415, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.5944, - -44.7226 - ] - } - }, - { - "ibge": 2933059, - "name": "Várzea da Roça", - "capital": 0, - "ibgeState": 29, - "siafi": 3997, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.6005, - -40.1328 - ] - } - }, - { - "ibge": 2933109, - "name": "Várzea do Poço", - "capital": 0, - "ibgeState": 29, - "siafi": 3961, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.5273, - -40.3149 - ] - } - }, - { - "ibge": 2211407, - "name": "Várzea Grande", - "capital": 0, - "ibgeState": 22, - "siafi": 1227, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.54899, - -42.248 - ] - } - }, - { - "ibge": 5108402, - "name": "Várzea Grande", - "capital": 0, - "ibgeState": 51, - "siafi": 9167, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.6458, - -56.1322 - ] - } - }, - { - "ibge": 2933158, - "name": "Várzea Nova", - "capital": 0, - "ibgeState": 29, - "siafi": 3995, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -11.2557, - -40.9432 - ] - } - }, - { - "ibge": 3556503, - "name": "Várzea Paulista", - "capital": 0, - "ibgeState": 35, - "siafi": 7233, - "ddd": 11, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.2136, - -46.8234 - ] - } - }, - { - "ibge": 2933174, - "name": "Varzedo", - "capital": 0, - "ibgeState": 29, - "siafi": 3049, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.9672, - -39.3919 - ] - } - }, - { - "ibge": 3170909, - "name": "Varzelândia", - "capital": 0, - "ibgeState": 31, - "siafi": 5417, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.6992, - -44.0278 - ] - } - }, - { - "ibge": 3306206, - "name": "Vassouras", - "capital": 0, - "ibgeState": 33, - "siafi": 5923, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.4059, - -43.6686 - ] - } - }, - { - "ibge": 3171006, - "name": "Vazante", - "capital": 0, - "ibgeState": 31, - "siafi": 5419, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.9827, - -46.9088 - ] - } - }, - { - "ibge": 4322608, - "name": "Venâncio Aires", - "capital": 0, - "ibgeState": 43, - "siafi": 8955, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.6143, - -52.1932 - ] - } - }, - { - "ibge": 3205069, - "name": "Venda Nova do Imigrante", - "capital": 0, - "ibgeState": 32, - "siafi": 5729, - "ddd": 28, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.327, - -41.1355 - ] - } - }, - { - "ibge": 2414753, - "name": "Venha-Ver", - "capital": 0, - "ibgeState": 24, - "siafi": 438, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.32016, - -38.4896 - ] - } - }, - { - "ibge": 4128534, - "name": "Ventania", - "capital": 0, - "ibgeState": 41, - "siafi": 5497, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -24.2458, - -50.2376 - ] - } - }, - { - "ibge": 2616001, - "name": "Venturosa", - "capital": 0, - "ibgeState": 26, - "siafi": 2619, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.57885, - -36.8742 - ] - } - }, - { - "ibge": 5108501, - "name": "Vera", - "capital": 0, - "ibgeState": 51, - "siafi": 9905, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.3017, - -55.3045 - ] - } - }, - { - "ibge": 2414803, - "name": "Vera Cruz", - "capital": 0, - "ibgeState": 24, - "siafi": 1895, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.04399, - -35.428 - ] - } - }, - { - "ibge": 2933208, - "name": "Vera Cruz", - "capital": 0, - "ibgeState": 29, - "siafi": 3963, - "ddd": 71, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.9568, - -38.6153 - ] - } - }, - { - "ibge": 4322707, - "name": "Vera Cruz", - "capital": 0, - "ibgeState": 43, - "siafi": 8957, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.7184, - -52.5152 - ] - } - }, - { - "ibge": 3556602, - "name": "Vera Cruz", - "capital": 0, - "ibgeState": 35, - "siafi": 7235, - "ddd": 14, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.2183, - -49.8207 - ] - } - }, - { - "ibge": 4128559, - "name": "Vera Cruz do Oeste", - "capital": 0, - "ibgeState": 41, - "siafi": 7989, - "ddd": 45, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.0577, - -53.8771 - ] - } - }, - { - "ibge": 2211506, - "name": "Vera Mendes", - "capital": 0, - "ibgeState": 22, - "siafi": 406, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.59748, - -41.4673 - ] - } - }, - { - "ibge": 4322806, - "name": "Veranópolis", - "capital": 0, - "ibgeState": 43, - "siafi": 8959, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.9312, - -51.5516 - ] - } - }, - { - "ibge": 2616100, - "name": "Verdejante", - "capital": 0, - "ibgeState": 26, - "siafi": 2621, - "ddd": 87, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.92235, - -38.9701 - ] - } - }, - { - "ibge": 3171030, - "name": "Verdelândia", - "capital": 0, - "ibgeState": 31, - "siafi": 752, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.5845, - -43.6121 - ] - } - }, - { - "ibge": 4128609, - "name": "Verê", - "capital": 0, - "ibgeState": 41, - "siafi": 7945, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.8772, - -52.9051 - ] - } - }, - { - "ibge": 2933257, - "name": "Vereda", - "capital": 0, - "ibgeState": 29, - "siafi": 3051, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.2183, - -40.0974 - ] - } - }, - { - "ibge": 3171071, - "name": "Veredinha", - "capital": 0, - "ibgeState": 31, - "siafi": 754, - "ddd": 38, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.3974, - -42.7307 - ] - } - }, - { - "ibge": 3171105, - "name": "Veríssimo", - "capital": 0, - "ibgeState": 31, - "siafi": 5423, - "ddd": 34, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6657, - -48.3118 - ] - } - }, - { - "ibge": 3171154, - "name": "Vermelho Novo", - "capital": 0, - "ibgeState": 31, - "siafi": 756, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.0406, - -42.2688 - ] - } - }, - { - "ibge": 2616183, - "name": "Vertente do Lério", - "capital": 0, - "ibgeState": 26, - "siafi": 2291, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.77084, - -35.8491 - ] - } - }, - { - "ibge": 2616209, - "name": "Vertentes", - "capital": 0, - "ibgeState": 26, - "siafi": 2623, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.90158, - -35.9681 - ] - } - }, - { - "ibge": 3171204, - "name": "Vespasiano", - "capital": 0, - "ibgeState": 31, - "siafi": 5425, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -19.6883, - -43.9239 - ] - } - }, - { - "ibge": 4322855, - "name": "Vespasiano Corrêa", - "capital": 0, - "ibgeState": 43, - "siafi": 1028, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.0655, - -51.8625 - ] - } - }, - { - "ibge": 4322905, - "name": "Viadutos", - "capital": 0, - "ibgeState": 43, - "siafi": 8961, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.5716, - -52.0211 - ] - } - }, - { - "ibge": 4323002, - "name": "Viamão", - "capital": 0, - "ibgeState": 43, - "siafi": 8963, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.0819, - -51.0194 - ] - } - }, - { - "ibge": 3205101, - "name": "Viana", - "capital": 0, - "ibgeState": 32, - "siafi": 5701, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3825, - -40.4933 - ] - } - }, - { - "ibge": 2112803, - "name": "Viana", - "capital": 0, - "ibgeState": 21, - "siafi": 949, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.20451, - -44.9912 - ] - } - }, - { - "ibge": 5222005, - "name": "Vianópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9641, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.7405, - -48.5159 - ] - } - }, - { - "ibge": 2616308, - "name": "Vicência", - "capital": 0, - "ibgeState": 26, - "siafi": 2625, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.65655, - -35.3139 - ] - } - }, - { - "ibge": 4323101, - "name": "Vicente Dutra", - "capital": 0, - "ibgeState": 43, - "siafi": 8965, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.1607, - -53.4022 - ] - } - }, - { - "ibge": 5008404, - "name": "Vicentina", - "capital": 0, - "ibgeState": 50, - "siafi": 9187, - "ddd": 67, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -22.4098, - -54.4415 - ] - } - }, - { - "ibge": 5222054, - "name": "Vicentinópolis", - "capital": 0, - "ibgeState": 52, - "siafi": 9657, - "ddd": 64, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -17.7322, - -49.8047 - ] - } - }, - { - "ibge": 2414902, - "name": "Viçosa", - "capital": 0, - "ibgeState": 24, - "siafi": 1897, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.98253, - -37.9462 - ] - } - }, - { - "ibge": 2709400, - "name": "Viçosa", - "capital": 0, - "ibgeState": 27, - "siafi": 2887, - "ddd": 82, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -9.36763, - -36.2431 - ] - } - }, - { - "ibge": 3171303, - "name": "Viçosa", - "capital": 0, - "ibgeState": 31, - "siafi": 5427, - "ddd": 31, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.7559, - -42.8742 - ] - } - }, - { - "ibge": 2314102, - "name": "Viçosa do Ceará", - "capital": 0, - "ibgeState": 23, - "siafi": 1583, - "ddd": 88, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.5667, - -41.0916 - ] - } - }, - { - "ibge": 4323200, - "name": "Victor Graeff", - "capital": 0, - "ibgeState": 43, - "siafi": 8969, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5632, - -52.7495 - ] - } - }, - { - "ibge": 4219200, - "name": "Vidal Ramos", - "capital": 0, - "ibgeState": 42, - "siafi": 8377, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3886, - -49.3593 - ] - } - }, - { - "ibge": 4219309, - "name": "Videira", - "capital": 0, - "ibgeState": 42, - "siafi": 8379, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0086, - -51.1543 - ] - } - }, - { - "ibge": 3171402, - "name": "Vieiras", - "capital": 0, - "ibgeState": 31, - "siafi": 5429, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.867, - -42.2401 - ] - } - }, - { - "ibge": 2517209, - "name": "Vieirópolis", - "capital": 0, - "ibgeState": 25, - "siafi": 540, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.50684, - -38.2567 - ] - } - }, - { - "ibge": 1508209, - "name": "Vigia", - "capital": 0, - "ibgeState": 15, - "siafi": 563, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.861194, - -48.1386 - ] - } - }, - { - "ibge": 5105507, - "name": "Vila Bela da Santíssima Trindade", - "capital": 0, - "ibgeState": 51, - "siafi": 9109, - "ddd": 65, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -15.0068, - -59.9504 - ] - } - }, - { - "ibge": 5222203, - "name": "Vila Boa", - "capital": 0, - "ibgeState": 52, - "siafi": 67, - "ddd": 61, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.0387, - -47.052 - ] - } - }, - { - "ibge": 2415008, - "name": "Vila Flor", - "capital": 0, - "ibgeState": 24, - "siafi": 1899, - "ddd": 84, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.31287, - -35.067 - ] - } - }, - { - "ibge": 4323309, - "name": "Vila Flores", - "capital": 0, - "ibgeState": 43, - "siafi": 7311, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.8598, - -51.5504 - ] - } - }, - { - "ibge": 4323358, - "name": "Vila Lângaro", - "capital": 0, - "ibgeState": 43, - "siafi": 1030, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.1062, - -52.1438 - ] - } - }, - { - "ibge": 4323408, - "name": "Vila Maria", - "capital": 0, - "ibgeState": 43, - "siafi": 7309, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.5359, - -52.1486 - ] - } - }, - { - "ibge": 2211605, - "name": "Vila Nova do Piauí", - "capital": 0, - "ibgeState": 22, - "siafi": 408, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.13272, - -40.9345 - ] - } - }, - { - "ibge": 4323457, - "name": "Vila Nova do Sul", - "capital": 0, - "ibgeState": 43, - "siafi": 5795, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -30.3461, - -53.876 - ] - } - }, - { - "ibge": 2112852, - "name": "Vila Nova dos Martírios", - "capital": 0, - "ibgeState": 21, - "siafi": 264, - "ddd": 99, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -5.18889, - -48.1336 - ] - } - }, - { - "ibge": 3205150, - "name": "Vila Pavão", - "capital": 0, - "ibgeState": 32, - "siafi": 2935, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.6091, - -40.609 - ] - } - }, - { - "ibge": 5222302, - "name": "Vila Propício", - "capital": 0, - "ibgeState": 52, - "siafi": 1068, - "ddd": 62, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -15.4542, - -48.8819 - ] - } - }, - { - "ibge": 5108600, - "name": "Vila Rica", - "capital": 0, - "ibgeState": 51, - "siafi": 9897, - "ddd": 66, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -10.0137, - -51.1186 - ] - } - }, - { - "ibge": 3205176, - "name": "Vila Valério", - "capital": 0, - "ibgeState": 32, - "siafi": 768, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.9958, - -40.3849 - ] - } - }, - { - "ibge": 3205200, - "name": "Vila Velha", - "capital": 0, - "ibgeState": 32, - "siafi": 5703, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3417, - -40.2875 - ] - } - }, - { - "ibge": 1100304, - "name": "Vilhena", - "capital": 0, - "ibgeState": 11, - "siafi": 13, - "ddd": 69, - "timeZone": "America/Porto_Velho", - "location": { - "type": "Point", - "coordinates": [ - -12.7502, - -60.1488 - ] - } - }, - { - "ibge": 3556701, - "name": "Vinhedo", - "capital": 0, - "ibgeState": 35, - "siafi": 7237, - "ddd": 19, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.0302, - -46.9833 - ] - } - }, - { - "ibge": 3556800, - "name": "Viradouro", - "capital": 0, - "ibgeState": 35, - "siafi": 7239, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.8734, - -48.293 - ] - } - }, - { - "ibge": 3171600, - "name": "Virgem da Lapa", - "capital": 0, - "ibgeState": 31, - "siafi": 5433, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -16.807, - -42.3431 - ] - } - }, - { - "ibge": 3171709, - "name": "Virgínia", - "capital": 0, - "ibgeState": 31, - "siafi": 5435, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.3264, - -45.0965 - ] - } - }, - { - "ibge": 3171808, - "name": "Virginópolis", - "capital": 0, - "ibgeState": 31, - "siafi": 5437, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.8154, - -42.7015 - ] - } - }, - { - "ibge": 3171907, - "name": "Virgolândia", - "capital": 0, - "ibgeState": 31, - "siafi": 5439, - "ddd": 33, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -18.4738, - -42.3067 - ] - } - }, - { - "ibge": 4128658, - "name": "Virmond", - "capital": 0, - "ibgeState": 41, - "siafi": 5483, - "ddd": 42, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -25.3829, - -52.1987 - ] - } - }, - { - "ibge": 3172004, - "name": "Visconde do Rio Branco", - "capital": 0, - "ibgeState": 31, - "siafi": 5441, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0127, - -42.8361 - ] - } - }, - { - "ibge": 1508308, - "name": "Viseu", - "capital": 0, - "ibgeState": 15, - "siafi": 565, - "ddd": 91, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -1.19124, - -46.1399 - ] - } - }, - { - "ibge": 4323507, - "name": "Vista Alegre", - "capital": 0, - "ibgeState": 43, - "siafi": 7307, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.3686, - -53.4919 - ] - } - }, - { - "ibge": 3556909, - "name": "Vista Alegre do Alto", - "capital": 0, - "ibgeState": 35, - "siafi": 7241, - "ddd": 16, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.1692, - -48.6284 - ] - } - }, - { - "ibge": 4323606, - "name": "Vista Alegre do Prata", - "capital": 0, - "ibgeState": 43, - "siafi": 7305, - "ddd": 54, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.8052, - -51.7947 - ] - } - }, - { - "ibge": 4323705, - "name": "Vista Gaúcha", - "capital": 0, - "ibgeState": 43, - "siafi": 7303, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.2902, - -53.6974 - ] - } - }, - { - "ibge": 2505501, - "name": "Vista Serrana", - "capital": 0, - "ibgeState": 25, - "siafi": 2011, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.7303, - -37.5704 - ] - } - }, - { - "ibge": 4219358, - "name": "Vitor Meireles", - "capital": 0, - "ibgeState": 42, - "siafi": 9977, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.8782, - -49.8328 - ] - } - }, - { - "ibge": 3205309, - "name": "Vitória", - "capital": 1, - "ibgeState": 32, - "siafi": 5705, - "ddd": 27, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.3155, - -40.3128 - ] - } - }, - { - "ibge": 3556958, - "name": "Vitória Brasil", - "capital": 0, - "ibgeState": 35, - "siafi": 828, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.1956, - -50.4875 - ] - } - }, - { - "ibge": 2933307, - "name": "Vitória da Conquista", - "capital": 0, - "ibgeState": 29, - "siafi": 3965, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -14.8615, - -40.8442 - ] - } - }, - { - "ibge": 4323754, - "name": "Vitória das Missões", - "capital": 0, - "ibgeState": 43, - "siafi": 6053, - "ddd": 55, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -28.3516, - -54.504 - ] - } - }, - { - "ibge": 2616407, - "name": "Vitória de Santo Antão", - "capital": 0, - "ibgeState": 26, - "siafi": 2627, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.12819, - -35.2976 - ] - } - }, - { - "ibge": 1600808, - "name": "Vitória do Jari", - "capital": 0, - "ibgeState": 16, - "siafi": 70, - "ddd": 96, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -0.938, - -52.424 - ] - } - }, - { - "ibge": 2112902, - "name": "Vitória do Mearim", - "capital": 0, - "ibgeState": 21, - "siafi": 951, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.45125, - -44.8643 - ] - } - }, - { - "ibge": 1508357, - "name": "Vitória do Xingu", - "capital": 0, - "ibgeState": 15, - "siafi": 641, - "ddd": 93, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -2.87922, - -52.0088 - ] - } - }, - { - "ibge": 4128708, - "name": "Vitorino", - "capital": 0, - "ibgeState": 41, - "siafi": 7947, - "ddd": 46, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.2683, - -52.7843 - ] - } - }, - { - "ibge": 2113009, - "name": "Vitorino Freire", - "capital": 0, - "ibgeState": 21, - "siafi": 953, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -4.28184, - -45.2505 - ] - } - }, - { - "ibge": 3172103, - "name": "Volta Grande", - "capital": 0, - "ibgeState": 31, - "siafi": 5443, - "ddd": 32, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.7671, - -42.5375 - ] - } - }, - { - "ibge": 3306305, - "name": "Volta Redonda", - "capital": 0, - "ibgeState": 33, - "siafi": 5925, - "ddd": 24, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5202, - -44.0996 - ] - } - }, - { - "ibge": 3557006, - "name": "Votorantim", - "capital": 0, - "ibgeState": 35, - "siafi": 7243, - "ddd": 15, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.5446, - -47.4388 - ] - } - }, - { - "ibge": 3557105, - "name": "Votuporanga", - "capital": 0, - "ibgeState": 35, - "siafi": 7245, - "ddd": 17, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -20.4237, - -49.9781 - ] - } - }, - { - "ibge": 2933406, - "name": "Wagner", - "capital": 0, - "ibgeState": 29, - "siafi": 3967, - "ddd": 75, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.2819, - -41.1715 - ] - } - }, - { - "ibge": 2211704, - "name": "Wall Ferraz", - "capital": 0, - "ibgeState": 22, - "siafi": 410, - "ddd": 89, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.23151, - -41.905 - ] - } - }, - { - "ibge": 1722081, - "name": "Wanderlândia", - "capital": 0, - "ibgeState": 17, - "siafi": 9665, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.85274, - -47.9601 - ] - } - }, - { - "ibge": 2933455, - "name": "Wanderley", - "capital": 0, - "ibgeState": 29, - "siafi": 3999, - "ddd": 77, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -12.1144, - -43.8958 - ] - } - }, - { - "ibge": 3172202, - "name": "Wenceslau Braz", - "capital": 0, - "ibgeState": 31, - "siafi": 5421, - "ddd": 35, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -22.5368, - -45.3626 - ] - } - }, - { - "ibge": 4128500, - "name": "Wenceslau Braz", - "capital": 0, - "ibgeState": 41, - "siafi": 7943, - "ddd": 43, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.8742, - -49.8032 - ] - } - }, - { - "ibge": 2933505, - "name": "Wenceslau Guimarães", - "capital": 0, - "ibgeState": 29, - "siafi": 3969, - "ddd": 73, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -13.6908, - -39.4762 - ] - } - }, - { - "ibge": 4323770, - "name": "Westfália", - "capital": 0, - "ibgeState": 43, - "siafi": 1176, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.4263, - -51.7645 - ] - } - }, - { - "ibge": 4219408, - "name": "Witmarsum", - "capital": 0, - "ibgeState": 42, - "siafi": 8381, - "ddd": 47, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9275, - -49.7947 - ] - } - }, - { - "ibge": 1722107, - "name": "Xambioá", - "capital": 0, - "ibgeState": 17, - "siafi": 9643, - "ddd": 63, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -6.4141, - -48.532 - ] - } - }, - { - "ibge": 4128807, - "name": "Xambrê", - "capital": 0, - "ibgeState": 41, - "siafi": 7949, - "ddd": 44, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -23.7364, - -53.4884 - ] - } - }, - { - "ibge": 4323804, - "name": "Xangri-lá", - "capital": 0, - "ibgeState": 43, - "siafi": 5785, - "ddd": 51, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -29.8065, - -50.0519 - ] - } - }, - { - "ibge": 4219507, - "name": "Xanxerê", - "capital": 0, - "ibgeState": 42, - "siafi": 8383, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.8747, - -52.4036 - ] - } - }, - { - "ibge": 1200708, - "name": "Xapuri", - "capital": 0, - "ibgeState": 12, - "siafi": 149, - "ddd": 68, - "timeZone": "America/Rio_Branco", - "location": { - "type": "Point", - "coordinates": [ - -10.6516, - -68.4969 - ] - } - }, - { - "ibge": 4219606, - "name": "Xavantina", - "capital": 0, - "ibgeState": 42, - "siafi": 8385, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.0667, - -52.343 - ] - } - }, - { - "ibge": 4219705, - "name": "Xaxim", - "capital": 0, - "ibgeState": 42, - "siafi": 8387, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -26.9596, - -52.5374 - ] - } - }, - { - "ibge": 2616506, - "name": "Xexéu", - "capital": 0, - "ibgeState": 26, - "siafi": 2293, - "ddd": 81, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.8046, - -35.6212 - ] - } - }, - { - "ibge": 1508407, - "name": "Xinguara", - "capital": 0, - "ibgeState": 15, - "siafi": 571, - "ddd": 94, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -7.0983, - -49.9437 - ] - } - }, - { - "ibge": 2933604, - "name": "Xique-Xique", - "capital": 0, - "ibgeState": 29, - "siafi": 3971, - "ddd": 74, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -10.823, - -42.7245 - ] - } - }, - { - "ibge": 2517407, - "name": "Zabelê", - "capital": 0, - "ibgeState": 25, - "siafi": 542, - "ddd": 83, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -8.07901, - -37.1057 - ] - } - }, - { - "ibge": 3557154, - "name": "Zacarias", - "capital": 0, - "ibgeState": 35, - "siafi": 2973, - "ddd": 18, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -21.0506, - -50.0552 - ] - } - }, - { - "ibge": 2114007, - "name": "Zé Doca", - "capital": 0, - "ibgeState": 21, - "siafi": 1287, - "ddd": 98, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -3.27014, - -45.6553 - ] - } - }, - { - "ibge": 4219853, - "name": "Zortéa", - "capital": 0, - "ibgeState": 42, - "siafi": 950, - "ddd": 49, - "timeZone": "America/Sao_Paulo", - "location": { - "type": "Point", - "coordinates": [ - -27.4521, - -51.552 - ] - } - } -] diff --git a/assets/data/states.json b/assets/data/states.json deleted file mode 100644 index b23fad5d..00000000 --- a/assets/data/states.json +++ /dev/null @@ -1,137 +0,0 @@ -[ - { - "code": 11, - "acronym": "RO", - "name": "Rondônia" - }, - { - "code": 12, - "acronym": "AC", - "name": "Acre" - }, - { - "code": 13, - "acronym": "AM", - "name": "Amazonas" - }, - { - "code": 14, - "acronym": "RR", - "name": "Roraima" - }, - { - "code": 15, - "acronym": "PA", - "name": "Pará" - }, - { - "code": 16, - "acronym": "AP", - "name": "Amapá" - }, - { - "code": 17, - "acronym": "TO", - "name": "Tocantins" - }, - { - "code": 21, - "acronym": "MA", - "name": "Maranhão" - }, - { - "code": 22, - "acronym": "PI", - "name": "Piauí" - }, - { - "code": 23, - "acronym": "CE", - "name": "Ceará" - }, - { - "code": 24, - "acronym": "RN", - "name": "Rio Grande do Norte" - }, - { - "code": 25, - "acronym": "PB", - "name": "Paraíba" - }, - { - "code": 26, - "acronym": "PE", - "name": "Pernambuco" - }, - { - "code": 27, - "acronym": "AL", - "name": "Alagoas" - }, - { - "code": 28, - "acronym": "SE", - "name": "Sergipe" - }, - { - "code": 29, - "acronym": "BA", - "name": "Bahia" - }, - { - "code": 31, - "acronym": "MG", - "name": "Minas Gerais" - }, - { - "code": 32, - "acronym": "ES", - "name": "Espírito Santo" - }, - { - "code": 33, - "acronym": "RJ", - "name": "Rio de Janeiro" - }, - { - "code": 35, - "acronym": "SP", - "name": "São Paulo" - }, - { - "code": 41, - "acronym": "PR", - "name": "Paraná" - }, - { - "code": 42, - "acronym": "SC", - "name": "Santa Catarina" - }, - { - "code": 43, - "acronym": "RS", - "name": "Rio Grande do Sul" - }, - { - "code": 50, - "acronym": "MS", - "name": "Mato Grosso do Sul" - }, - { - "code": 51, - "acronym": "MT", - "name": "Mato Grosso" - }, - { - "code": 52, - "acronym": "GO", - "name": "Goiás" - }, - { - "code": 53, - "acronym": "DF", - "name": "Distrito Federal" - } -] diff --git a/assets/seeds/account-collection.json b/assets/seeds/account-collection.json new file mode 100644 index 00000000..d713afe9 --- /dev/null +++ b/assets/seeds/account-collection.json @@ -0,0 +1,8 @@ +{"_id":{"$oid":"66fa1598073adabd63af0680"},"name":{"first":"Member","last":"Paraná"},"username":"member","password":"$2b$10$Tm3kJfirm6dbmYgbUuAWmuzMTByp6163nqf8M0.r.GqOHwahHonNy","email":"member@devpr.org","roles":{"member":true,"speaker":false,"neighbor":false,"donor":false,"leader":false,"staff":false,"fellow":false,"manager":false,"director":false},"gender":"female","photo":"","minibio":"","birthday":"2002-10-10T03:00:00.000Z","active":true,"__v":0} +{"_id":{"$oid":"66fa1529073adabd63af0670"},"name":{"first":"Speaker","last":"Paraná"},"username":"speaker","password":"$2b$10$vIGAhmSHgawn2UCp2dvp8eEIg4ZqVN5psF0XltOv5Ok1AvVVVzECC","email":"speaker@devpr.org","roles":{"member":true,"speaker":true,"neighbor":false,"donor":false,"leader":false,"staff":false,"fellow":false,"manager":false,"director":false},"gender":"male","photo":"","minibio":"","birthday":"1986-12-29T02:00:00.000Z","active":true,"__v":0} +{"_id":{"$oid":"66fa15e5073adabd63af0688"},"name":{"first":"Donor","last":"Paraná"},"username":"donor","password":"$2b$10$gVTbLG4cAkRp2B//hI9G5OPKBazWLVpbTNLspomaJRwORrZ0ZbM8W","email":"donor@devpr.org","roles":{"member":true,"speaker":false,"neighbor":false,"donor":false,"leader":false,"staff":false,"fellow":false,"manager":false,"director":false},"gender":"non-binary","photo":"","minibio":"","birthday":"2004-06-16T03:00:00.000Z","active":true,"__v":0} +{"_id":{"$oid":"66fa1686073adabd63af0690"},"name":{"first":"Leader","last":"Paraná"},"username":"leader","password":"$2b$10$gCQcetNAbiWBzp2KnuQ/juo5wch10sNxHgjYy/ht5bEsvDD0LDL.i","email":"leader@devpr.org","roles":{"member":true,"speaker":false,"neighbor":false,"donor":false,"leader":false,"staff":false,"fellow":false,"manager":false,"director":false},"gender":"gender-fluid","photo":"","minibio":"","birthday":"1997-07-03T03:00:00.000Z","active":true,"__v":0} +{"_id":{"$oid":"66fa16b5073adabd63af0698"},"name":{"first":"Staff","last":"Paraná"},"username":"staff","password":"$2b$10$A0D6enykGCeyqDi20sde9epqfxJqAZGHGZjsqh1RU9BzAc5sOn/Pq","email":"staff@devpr.org","roles":{"member":true,"speaker":false,"neighbor":false,"donor":false,"leader":false,"staff":false,"fellow":false,"manager":false,"director":false},"gender":"agender","photo":"","minibio":"","birthday":"2004-02-18T03:00:00.000Z","active":true,"__v":0} +{"_id":{"$oid":"66fa16d8073adabd63af06a0"},"name":{"first":"Fellow","last":"Paraná"},"username":"fellow","password":"$2b$10$CeZ3Yn3n350lEWi8OoQvIeLXqJMcEHeiCmjalWiWN9quf2/hwEDUG","email":"fellow@devpr.org","roles":{"member":true,"speaker":false,"neighbor":false,"donor":false,"leader":false,"staff":false,"fellow":false,"manager":false,"director":false},"gender":"prefer-not-to-say","photo":"","minibio":"","birthday":"1993-02-09T03:00:00.000Z","active":true,"__v":0} +{"_id":{"$oid":"66fa170c073adabd63af06a8"},"name":{"first":"Manager","last":"Paraná"},"username":"manager","password":"$2b$10$X6ElrWZ5MuUE/RKCM0khaeYm5GSyMavBgDKeJ5xxzJa.Rmo07KVxO","email":"manager@devpr.org","roles":{"member":true,"speaker":false,"neighbor":false,"donor":false,"leader":false,"staff":false,"fellow":false,"manager":false,"director":false},"gender":"male","photo":"","minibio":"","birthday":"1990-09-20T03:00:00.000Z","active":true,"__v":0} +{"_id":{"$oid":"66fa172f073adabd63af06b0"},"name":{"first":"Director","last":"Paraná"},"username":"director","password":"$2b$10$3F83Wt12gNu2PwINiimv..0ao5r6L6WHUzor11cWM0I5hgggavCHy","email":"director@devpr.org","roles":{"member":true,"speaker":false,"neighbor":false,"donor":false,"leader":false,"staff":false,"fellow":false,"manager":false,"director":false},"gender":"male","photo":"","minibio":"","birthday":"1986-12-29T02:00:00.000Z","active":true,"__v":0} diff --git a/assets/seeds/city-collection.json b/assets/seeds/city-collection.json new file mode 100644 index 00000000..e9a571a7 --- /dev/null +++ b/assets/seeds/city-collection.json @@ -0,0 +1,5570 @@ +{"_id":{"$oid":"66f9d5ad542d90c0536667e4"},"ibge":5200050,"name":"Abadia de Goiás","capital":0,"ibgeState":52,"siafi":1050,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.7573,-49.4412]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667e5"},"ibge":3100104,"name":"Abadia dos Dourados","capital":0,"ibgeState":31,"siafi":4001,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4831,-47.3916]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667e6"},"ibge":5200100,"name":"Abadiânia","capital":0,"ibgeState":52,"siafi":9201,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.197,-48.7057]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667e7"},"ibge":3100203,"name":"Abaeté","capital":0,"ibgeState":31,"siafi":4003,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.1551,-45.4444]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667e8"},"ibge":1500107,"name":"Abaetetuba","capital":0,"ibgeState":15,"siafi":401,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.72183,-48.8788]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667e9"},"ibge":2300101,"name":"Abaiara","capital":0,"ibgeState":23,"siafi":1301,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.34588,-39.0416]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667ea"},"ibge":2900108,"name":"Abaíra","capital":0,"ibgeState":29,"siafi":3301,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.2488,-41.6619]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667eb"},"ibge":2900207,"name":"Abaré","capital":0,"ibgeState":29,"siafi":3303,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.72073,-39.1162]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667ec"},"ibge":4100103,"name":"Abatiá","capital":0,"ibgeState":41,"siafi":7401,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3049,-50.3133]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667ed"},"ibge":4200051,"name":"Abdon Batista","capital":0,"ibgeState":42,"siafi":9939,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6126,-51.0233]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667ee"},"ibge":1500131,"name":"Abel Figueiredo","capital":0,"ibgeState":15,"siafi":375,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.95333,-48.3933]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667ef"},"ibge":4200101,"name":"Abelardo Luz","capital":0,"ibgeState":42,"siafi":8001,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.5716,-52.3229]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667f0"},"ibge":3100302,"name":"Abre Campo","capital":0,"ibgeState":31,"siafi":4005,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2996,-42.4743]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667f1"},"ibge":2600054,"name":"Abreu e Lima","capital":0,"ibgeState":26,"siafi":2631,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.90072,-34.8984]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667f2"},"ibge":1700251,"name":"Abreulândia","capital":0,"ibgeState":17,"siafi":337,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.62101,-49.1518]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667f3"},"ibge":3100401,"name":"Acaiaca","capital":0,"ibgeState":31,"siafi":4007,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.359,-43.1439]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667f4"},"ibge":2100055,"name":"Açailândia","capital":0,"ibgeState":21,"siafi":961,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.94714,-47.5004]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667f5"},"ibge":2900306,"name":"Acajutiba","capital":0,"ibgeState":29,"siafi":3305,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.6575,-38.0197]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667f6"},"ibge":1500206,"name":"Acará","capital":0,"ibgeState":15,"siafi":403,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.95383,-48.1985]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667f7"},"ibge":2300150,"name":"Acarape","capital":0,"ibgeState":23,"siafi":1231,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.22083,-38.7055]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667f8"},"ibge":2300200,"name":"Acaraú","capital":0,"ibgeState":23,"siafi":1303,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.88769,-40.1183]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667f9"},"ibge":2400109,"name":"Acari","capital":0,"ibgeState":24,"siafi":1601,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.4282,-36.6347]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667fa"},"ibge":2200053,"name":"Acauã","capital":0,"ibgeState":22,"siafi":266,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.21954,-41.0831]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667fb"},"ibge":4300034,"name":"Aceguá","capital":0,"ibgeState":43,"siafi":1118,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.8665,-54.1615]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667fc"},"ibge":2300309,"name":"Acopiara","capital":0,"ibgeState":23,"siafi":1305,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.08911,-39.448]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667fd"},"ibge":5100102,"name":"Acorizal","capital":0,"ibgeState":51,"siafi":9001,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.194,-56.3632]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667fe"},"ibge":1200013,"name":"Acrelândia","capital":0,"ibgeState":12,"siafi":643,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-9.82581,-66.8972]}} +{"_id":{"$oid":"66f9d5ad542d90c0536667ff"},"ibge":5200134,"name":"Acreúna","capital":0,"ibgeState":52,"siafi":9645,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.396,-50.3749]}} +{"_id":{"$oid":"66f9d5ad542d90c053666800"},"ibge":2400208,"name":"Açu","capital":0,"ibgeState":24,"siafi":1603,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.58362,-36.914]}} +{"_id":{"$oid":"66f9d5ad542d90c053666801"},"ibge":3100500,"name":"Açucena","capital":0,"ibgeState":31,"siafi":4009,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.0671,-42.5419]}} +{"_id":{"$oid":"66f9d5ad542d90c053666802"},"ibge":3500105,"name":"Adamantina","capital":0,"ibgeState":35,"siafi":6101,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.682,-51.0737]}} +{"_id":{"$oid":"66f9d5ad542d90c053666803"},"ibge":5200159,"name":"Adelândia","capital":0,"ibgeState":52,"siafi":9769,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.4127,-50.1657]}} +{"_id":{"$oid":"66f9d5ad542d90c053666804"},"ibge":3500204,"name":"Adolfo","capital":0,"ibgeState":35,"siafi":6103,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2325,-49.6451]}} +{"_id":{"$oid":"66f9d5ad542d90c053666805"},"ibge":4100202,"name":"Adrianópolis","capital":0,"ibgeState":41,"siafi":7403,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.6606,-48.9922]}} +{"_id":{"$oid":"66f9d5ad542d90c053666806"},"ibge":2900355,"name":"Adustina","capital":0,"ibgeState":29,"siafi":3253,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.5437,-38.1113]}} +{"_id":{"$oid":"66f9d5ad542d90c053666807"},"ibge":2600104,"name":"Afogados da Ingazeira","capital":0,"ibgeState":26,"siafi":2301,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.74312,-37.631]}} +{"_id":{"$oid":"66f9d5ad542d90c053666808"},"ibge":2400307,"name":"Afonso Bezerra","capital":0,"ibgeState":24,"siafi":1605,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.49229,-36.5075]}} +{"_id":{"$oid":"66f9d5ad542d90c053666809"},"ibge":3200102,"name":"Afonso Cláudio","capital":0,"ibgeState":32,"siafi":5601,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0778,-41.1261]}} +{"_id":{"$oid":"66f9d5ad542d90c05366680a"},"ibge":2100105,"name":"Afonso Cunha","capital":0,"ibgeState":21,"siafi":701,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.13631,-43.3275]}} +{"_id":{"$oid":"66f9d5ad542d90c05366680b"},"ibge":2600203,"name":"Afrânio","capital":0,"ibgeState":26,"siafi":2303,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.51136,-41.0095]}} +{"_id":{"$oid":"66f9d5ad542d90c05366680c"},"ibge":1500305,"name":"Afuá","capital":0,"ibgeState":15,"siafi":405,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.154874,-50.3861]}} +{"_id":{"$oid":"66f9d5ad542d90c05366680d"},"ibge":2600302,"name":"Agrestina","capital":0,"ibgeState":26,"siafi":2305,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.45966,-35.9447]}} +{"_id":{"$oid":"66f9d5ad542d90c05366680e"},"ibge":2200103,"name":"Agricolândia","capital":0,"ibgeState":22,"siafi":1001,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.79676,-42.6664]}} +{"_id":{"$oid":"66f9d5ad542d90c05366680f"},"ibge":4200200,"name":"Agrolândia","capital":0,"ibgeState":42,"siafi":8003,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4087,-49.822]}} +{"_id":{"$oid":"66f9d5ad542d90c053666810"},"ibge":4200309,"name":"Agronômica","capital":0,"ibgeState":42,"siafi":8005,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2662,-49.708]}} +{"_id":{"$oid":"66f9d5ad542d90c053666811"},"ibge":1500347,"name":"Água Azul do Norte","capital":0,"ibgeState":15,"siafi":383,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.79053,-50.4791]}} +{"_id":{"$oid":"66f9d5ad542d90c053666812"},"ibge":3100609,"name":"Água Boa","capital":0,"ibgeState":31,"siafi":4011,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.9914,-42.3806]}} +{"_id":{"$oid":"66f9d5ad542d90c053666813"},"ibge":5100201,"name":"Água Boa","capital":0,"ibgeState":51,"siafi":9191,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.051,-52.1601]}} +{"_id":{"$oid":"66f9d5ad542d90c053666814"},"ibge":2200202,"name":"Água Branca","capital":0,"ibgeState":22,"siafi":1003,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.88856,-42.637]}} +{"_id":{"$oid":"66f9d5ad542d90c053666815"},"ibge":2500106,"name":"Água Branca","capital":0,"ibgeState":25,"siafi":1901,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.51144,-37.6357]}} +{"_id":{"$oid":"66f9d5ad542d90c053666816"},"ibge":2700102,"name":"Água Branca","capital":0,"ibgeState":27,"siafi":2701,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.262,-37.938]}} +{"_id":{"$oid":"66f9d5ad542d90c053666817"},"ibge":5000203,"name":"Água Clara","capital":0,"ibgeState":50,"siafi":9003,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-20.4452,-52.879]}} +{"_id":{"$oid":"66f9d5ad542d90c053666818"},"ibge":3100708,"name":"Água Comprida","capital":0,"ibgeState":31,"siafi":4013,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0576,-48.1069]}} +{"_id":{"$oid":"66f9d5ad542d90c053666819"},"ibge":4200408,"name":"Água Doce","capital":0,"ibgeState":42,"siafi":8007,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9985,-51.5528]}} +{"_id":{"$oid":"66f9d5ad542d90c05366681a"},"ibge":2100154,"name":"Água Doce do Maranhão","capital":0,"ibgeState":21,"siafi":104,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.84048,-42.1189]}} +{"_id":{"$oid":"66f9d5ad542d90c05366681b"},"ibge":3200169,"name":"Água Doce do Norte","capital":0,"ibgeState":32,"siafi":5717,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5482,-40.9854]}} +{"_id":{"$oid":"66f9d5ad542d90c05366681c"},"ibge":2900405,"name":"Água Fria","capital":0,"ibgeState":29,"siafi":3307,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.8618,-38.7639]}} +{"_id":{"$oid":"66f9d5ad542d90c05366681d"},"ibge":5200175,"name":"Água Fria de Goiás","capital":0,"ibgeState":52,"siafi":9771,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.9778,-47.7823]}} +{"_id":{"$oid":"66f9d5ad542d90c05366681e"},"ibge":5200209,"name":"Água Limpa","capital":0,"ibgeState":52,"siafi":9203,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.0771,-48.7603]}} +{"_id":{"$oid":"66f9d5ad542d90c05366681f"},"ibge":2400406,"name":"Água Nova","capital":0,"ibgeState":24,"siafi":1607,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.20351,-38.2941]}} +{"_id":{"$oid":"66f9d5ad542d90c053666820"},"ibge":2600401,"name":"Água Preta","capital":0,"ibgeState":26,"siafi":2307,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.70609,-35.5263]}} +{"_id":{"$oid":"66f9d5ad542d90c053666821"},"ibge":4300059,"name":"Água Santa","capital":0,"ibgeState":43,"siafi":8499,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.1672,-52.031]}} +{"_id":{"$oid":"66f9d5ad542d90c053666822"},"ibge":3500303,"name":"Aguaí","capital":0,"ibgeState":35,"siafi":6105,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0572,-46.9735]}} +{"_id":{"$oid":"66f9d5ad542d90c053666823"},"ibge":3100807,"name":"Aguanil","capital":0,"ibgeState":31,"siafi":4015,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9439,-45.3915]}} +{"_id":{"$oid":"66f9d5ad542d90c053666824"},"ibge":2600500,"name":"Águas Belas","capital":0,"ibgeState":26,"siafi":2309,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.11125,-37.1226]}} +{"_id":{"$oid":"66f9d5ad542d90c053666825"},"ibge":3500402,"name":"Águas da Prata","capital":0,"ibgeState":35,"siafi":6107,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9319,-46.7176]}} +{"_id":{"$oid":"66f9d5ad542d90c053666826"},"ibge":4200507,"name":"Águas de Chapecó","capital":0,"ibgeState":42,"siafi":8009,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0754,-52.9808]}} +{"_id":{"$oid":"66f9d5ad542d90c053666827"},"ibge":3500501,"name":"Águas de Lindóia","capital":0,"ibgeState":35,"siafi":6109,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4733,-46.6314]}} +{"_id":{"$oid":"66f9d5ad542d90c053666828"},"ibge":3500550,"name":"Águas de Santa Bárbara","capital":0,"ibgeState":35,"siafi":7019,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8812,-49.2421]}} +{"_id":{"$oid":"66f9d5ad542d90c053666829"},"ibge":3500600,"name":"Águas de São Pedro","capital":0,"ibgeState":35,"siafi":6111,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5977,-47.8734]}} +{"_id":{"$oid":"66f9d5ad542d90c05366682a"},"ibge":3100906,"name":"Águas Formosas","capital":0,"ibgeState":31,"siafi":4017,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.0802,-40.9384]}} +{"_id":{"$oid":"66f9d5ad542d90c05366682b"},"ibge":4200556,"name":"Águas Frias","capital":0,"ibgeState":42,"siafi":5577,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.8794,-52.8568]}} +{"_id":{"$oid":"66f9d5ad542d90c05366682c"},"ibge":5200258,"name":"Águas Lindas de Goiás","capital":0,"ibgeState":52,"siafi":1052,"ddd":61,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.7617,-48.2816]}} +{"_id":{"$oid":"66f9d5ad542d90c05366682d"},"ibge":4200606,"name":"Águas Mornas","capital":0,"ibgeState":42,"siafi":8011,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6963,-48.8243]}} +{"_id":{"$oid":"66f9d5ad542d90c05366682e"},"ibge":3101003,"name":"Águas Vermelhas","capital":0,"ibgeState":31,"siafi":4019,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.7431,-41.4571]}} +{"_id":{"$oid":"66f9d5ad542d90c05366682f"},"ibge":4300109,"name":"Agudo","capital":0,"ibgeState":43,"siafi":8501,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6447,-53.2515]}} +{"_id":{"$oid":"66f9d5ad542d90c053666830"},"ibge":3500709,"name":"Agudos","capital":0,"ibgeState":35,"siafi":6113,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4694,-48.9863]}} +{"_id":{"$oid":"66f9d5ad542d90c053666831"},"ibge":4100301,"name":"Agudos do Sul","capital":0,"ibgeState":41,"siafi":7405,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.9899,-49.3343]}} +{"_id":{"$oid":"66f9d5ad542d90c053666832"},"ibge":3200136,"name":"Águia Branca","capital":0,"ibgeState":32,"siafi":5733,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.9846,-40.7437]}} +{"_id":{"$oid":"66f9d5ad542d90c053666833"},"ibge":2500205,"name":"Aguiar","capital":0,"ibgeState":25,"siafi":1903,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.0918,-38.1681]}} +{"_id":{"$oid":"66f9d5ad542d90c053666834"},"ibge":1700301,"name":"Aguiarnópolis","capital":0,"ibgeState":17,"siafi":72,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.55409,-47.4702]}} +{"_id":{"$oid":"66f9d5ad542d90c053666835"},"ibge":3101102,"name":"Aimorés","capital":0,"ibgeState":31,"siafi":4021,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5007,-41.0746]}} +{"_id":{"$oid":"66f9d5ad542d90c053666836"},"ibge":2900603,"name":"Aiquara","capital":0,"ibgeState":29,"siafi":3311,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.1269,-39.8937]}} +{"_id":{"$oid":"66f9d5ad542d90c053666837"},"ibge":2300408,"name":"Aiuaba","capital":0,"ibgeState":23,"siafi":1307,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.57122,-40.1178]}} +{"_id":{"$oid":"66f9d5ad542d90c053666838"},"ibge":3101201,"name":"Aiuruoca","capital":0,"ibgeState":31,"siafi":4023,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9736,-44.6042]}} +{"_id":{"$oid":"66f9d5ad542d90c053666839"},"ibge":4300208,"name":"Ajuricaba","capital":0,"ibgeState":43,"siafi":8503,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.2342,-53.7757]}} +{"_id":{"$oid":"66f9d5ad542d90c05366683a"},"ibge":3101300,"name":"Alagoa","capital":0,"ibgeState":31,"siafi":4025,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.171,-44.6413]}} +{"_id":{"$oid":"66f9d5ad542d90c05366683b"},"ibge":2500304,"name":"Alagoa Grande","capital":0,"ibgeState":25,"siafi":1905,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.03943,-35.6206]}} +{"_id":{"$oid":"66f9d5ad542d90c05366683c"},"ibge":2500403,"name":"Alagoa Nova","capital":0,"ibgeState":25,"siafi":1907,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.05377,-35.7591]}} +{"_id":{"$oid":"66f9d5ad542d90c05366683d"},"ibge":2500502,"name":"Alagoinha","capital":0,"ibgeState":25,"siafi":1909,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.94657,-35.5332]}} +{"_id":{"$oid":"66f9d5ad542d90c05366683e"},"ibge":2600609,"name":"Alagoinha","capital":0,"ibgeState":26,"siafi":2311,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.4665,-36.7788]}} +{"_id":{"$oid":"66f9d5ad542d90c05366683f"},"ibge":2200251,"name":"Alagoinha do Piauí","capital":0,"ibgeState":22,"siafi":9767,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.00039,-40.9282]}} +{"_id":{"$oid":"66f9d5ad542d90c053666840"},"ibge":2900702,"name":"Alagoinhas","capital":0,"ibgeState":29,"siafi":3313,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.1335,-38.4208]}} +{"_id":{"$oid":"66f9d5ad542d90c053666841"},"ibge":3500758,"name":"Alambari","capital":0,"ibgeState":35,"siafi":2995,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5503,-47.898]}} +{"_id":{"$oid":"66f9d5ad542d90c053666842"},"ibge":3101409,"name":"Albertina","capital":0,"ibgeState":31,"siafi":4027,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2018,-46.6139]}} +{"_id":{"$oid":"66f9d5ad542d90c053666843"},"ibge":2100204,"name":"Alcântara","capital":0,"ibgeState":21,"siafi":703,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.39574,-44.4062]}} +{"_id":{"$oid":"66f9d5ad542d90c053666844"},"ibge":2300507,"name":"Alcântaras","capital":0,"ibgeState":23,"siafi":1309,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.58537,-40.5479]}} +{"_id":{"$oid":"66f9d5ad542d90c053666845"},"ibge":2500536,"name":"Alcantil","capital":0,"ibgeState":25,"siafi":440,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.73668,-36.0511]}} +{"_id":{"$oid":"66f9d5ad542d90c053666846"},"ibge":5000252,"name":"Alcinópolis","capital":0,"ibgeState":50,"siafi":141,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-18.3255,-53.7042]}} +{"_id":{"$oid":"66f9d5ad542d90c053666847"},"ibge":2900801,"name":"Alcobaça","capital":0,"ibgeState":29,"siafi":3315,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.5195,-39.2036]}} +{"_id":{"$oid":"66f9d5ad542d90c053666848"},"ibge":2100303,"name":"Aldeias Altas","capital":0,"ibgeState":21,"siafi":705,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.62621,-43.4689]}} +{"_id":{"$oid":"66f9d5ad542d90c053666849"},"ibge":4300307,"name":"Alecrim","capital":0,"ibgeState":43,"siafi":8505,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6579,-54.7649]}} +{"_id":{"$oid":"66f9d5ad542d90c05366684a"},"ibge":3200201,"name":"Alegre","capital":0,"ibgeState":32,"siafi":5603,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.758,-41.5382]}} +{"_id":{"$oid":"66f9d5ad542d90c05366684b"},"ibge":4300406,"name":"Alegrete","capital":0,"ibgeState":43,"siafi":8507,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.7902,-55.7949]}} +{"_id":{"$oid":"66f9d5ad542d90c05366684c"},"ibge":2200277,"name":"Alegrete do Piauí","capital":0,"ibgeState":22,"siafi":2269,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.24196,-40.8566]}} +{"_id":{"$oid":"66f9d5ad542d90c05366684d"},"ibge":4300455,"name":"Alegria","capital":0,"ibgeState":43,"siafi":8497,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.8345,-54.0557]}} +{"_id":{"$oid":"66f9d5ad542d90c05366684e"},"ibge":3101508,"name":"Além Paraíba","capital":0,"ibgeState":31,"siafi":4029,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8797,-42.7176]}} +{"_id":{"$oid":"66f9d5ad542d90c05366684f"},"ibge":1500404,"name":"Alenquer","capital":0,"ibgeState":15,"siafi":407,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.94623,-54.7384]}} +{"_id":{"$oid":"66f9d5ad542d90c053666850"},"ibge":2400505,"name":"Alexandria","capital":0,"ibgeState":24,"siafi":1609,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.40533,-38.0142]}} +{"_id":{"$oid":"66f9d5ad542d90c053666851"},"ibge":5200308,"name":"Alexânia","capital":0,"ibgeState":52,"siafi":9205,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0834,-48.5076]}} +{"_id":{"$oid":"66f9d5ad542d90c053666852"},"ibge":3101607,"name":"Alfenas","capital":0,"ibgeState":31,"siafi":4031,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4256,-45.9477]}} +{"_id":{"$oid":"66f9d5ad542d90c053666853"},"ibge":3200300,"name":"Alfredo Chaves","capital":0,"ibgeState":32,"siafi":5605,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6396,-40.7543]}} +{"_id":{"$oid":"66f9d5ad542d90c053666854"},"ibge":3500808,"name":"Alfredo Marcondes","capital":0,"ibgeState":35,"siafi":6115,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9527,-51.414]}} +{"_id":{"$oid":"66f9d5ad542d90c053666855"},"ibge":3101631,"name":"Alfredo Vasconcelos","capital":0,"ibgeState":31,"siafi":2681,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1535,-43.7718]}} +{"_id":{"$oid":"66f9d5ad542d90c053666856"},"ibge":4200705,"name":"Alfredo Wagner","capital":0,"ibgeState":42,"siafi":8013,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7001,-49.3273]}} +{"_id":{"$oid":"66f9d5ad542d90c053666857"},"ibge":2500577,"name":"Algodão de Jandaíra","capital":0,"ibgeState":25,"siafi":442,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.89292,-36.0129]}} +{"_id":{"$oid":"66f9d5ad542d90c053666858"},"ibge":2500601,"name":"Alhandra","capital":0,"ibgeState":25,"siafi":1911,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.42977,-34.9057]}} +{"_id":{"$oid":"66f9d5ad542d90c053666859"},"ibge":2600708,"name":"Aliança","capital":0,"ibgeState":26,"siafi":2313,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.60398,-35.2227]}} +{"_id":{"$oid":"66f9d5ad542d90c05366685a"},"ibge":1700350,"name":"Aliança do Tocantins","capital":0,"ibgeState":17,"siafi":9441,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.3056,-48.9361]}} +{"_id":{"$oid":"66f9d5ad542d90c05366685b"},"ibge":2900900,"name":"Almadina","capital":0,"ibgeState":29,"siafi":3317,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.7089,-39.6415]}} +{"_id":{"$oid":"66f9d5ad542d90c05366685c"},"ibge":1700400,"name":"Almas","capital":0,"ibgeState":17,"siafi":9207,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.5706,-47.1792]}} +{"_id":{"$oid":"66f9d5ad542d90c05366685d"},"ibge":1500503,"name":"Almeirim","capital":0,"ibgeState":15,"siafi":409,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.52904,-52.5788]}} +{"_id":{"$oid":"66f9d5ad542d90c05366685e"},"ibge":3101706,"name":"Almenara","capital":0,"ibgeState":31,"siafi":4033,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.1785,-40.6942]}} +{"_id":{"$oid":"66f9d5ad542d90c05366685f"},"ibge":2400604,"name":"Almino Afonso","capital":0,"ibgeState":24,"siafi":1611,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.1475,-37.7636]}} +{"_id":{"$oid":"66f9d5ad542d90c053666860"},"ibge":4100400,"name":"Almirante Tamandaré","capital":0,"ibgeState":41,"siafi":7407,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.3188,-49.3037]}} +{"_id":{"$oid":"66f9d5ad542d90c053666861"},"ibge":4300471,"name":"Almirante Tamandaré do Sul","capital":0,"ibgeState":43,"siafi":1120,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.1149,-52.9142]}} +{"_id":{"$oid":"66f9d5ad542d90c053666862"},"ibge":5200506,"name":"Aloândia","capital":0,"ibgeState":52,"siafi":9209,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.7292,-49.4769]}} +{"_id":{"$oid":"66f9d5ad542d90c053666863"},"ibge":3101805,"name":"Alpercata","capital":0,"ibgeState":31,"siafi":4035,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.974,-41.97]}} +{"_id":{"$oid":"66f9d5ad542d90c053666864"},"ibge":4300505,"name":"Alpestre","capital":0,"ibgeState":43,"siafi":8509,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2502,-53.0341]}} +{"_id":{"$oid":"66f9d5ad542d90c053666865"},"ibge":3101904,"name":"Alpinópolis","capital":0,"ibgeState":31,"siafi":4037,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8631,-46.3878]}} +{"_id":{"$oid":"66f9d5ad542d90c053666866"},"ibge":5100250,"name":"Alta Floresta","capital":0,"ibgeState":51,"siafi":8987,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-9.86674,-56.0867]}} +{"_id":{"$oid":"66f9d5ad542d90c053666867"},"ibge":1100015,"name":"Alta Floresta D'Oeste","capital":0,"ibgeState":11,"siafi":33,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.9283,-61.9953]}} +{"_id":{"$oid":"66f9d5ad542d90c053666868"},"ibge":3500907,"name":"Altair","capital":0,"ibgeState":35,"siafi":6117,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5242,-49.0571]}} +{"_id":{"$oid":"66f9d5ad542d90c053666869"},"ibge":1500602,"name":"Altamira","capital":0,"ibgeState":15,"siafi":411,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.20407,-52.21]}} +{"_id":{"$oid":"66f9d5ad542d90c05366686a"},"ibge":2100402,"name":"Altamira do Maranhão","capital":0,"ibgeState":21,"siafi":707,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.16598,-45.4706]}} +{"_id":{"$oid":"66f9d5ad542d90c05366686b"},"ibge":4100459,"name":"Altamira do Paraná","capital":0,"ibgeState":41,"siafi":8455,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.7983,-52.7128]}} +{"_id":{"$oid":"66f9d5ad542d90c05366686c"},"ibge":2300606,"name":"Altaneira","capital":0,"ibgeState":23,"siafi":1311,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.99837,-39.7356]}} +{"_id":{"$oid":"66f9d5ad542d90c05366686d"},"ibge":3102001,"name":"Alterosa","capital":0,"ibgeState":31,"siafi":4039,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2488,-46.1387]}} +{"_id":{"$oid":"66f9d5ad542d90c05366686e"},"ibge":2600807,"name":"Altinho","capital":0,"ibgeState":26,"siafi":2315,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.48482,-36.0644]}} +{"_id":{"$oid":"66f9d5ad542d90c05366686f"},"ibge":3501004,"name":"Altinópolis","capital":0,"ibgeState":35,"siafi":6119,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0214,-47.3712]}} +{"_id":{"$oid":"66f9d5ad542d90c053666870"},"ibge":3501103,"name":"Alto Alegre","capital":0,"ibgeState":35,"siafi":6121,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5811,-50.168]}} +{"_id":{"$oid":"66f9d5ad542d90c053666871"},"ibge":1400050,"name":"Alto Alegre","capital":0,"ibgeState":14,"siafi":305,"ddd":95,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[2.98858,-61.3072]}} +{"_id":{"$oid":"66f9d5ad542d90c053666872"},"ibge":4300554,"name":"Alto Alegre","capital":0,"ibgeState":43,"siafi":8495,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.7769,-52.9893]}} +{"_id":{"$oid":"66f9d5ad542d90c053666873"},"ibge":2100436,"name":"Alto Alegre do Maranhão","capital":0,"ibgeState":21,"siafi":106,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.213,-44.446]}} +{"_id":{"$oid":"66f9d5ad542d90c053666874"},"ibge":2100477,"name":"Alto Alegre do Pindaré","capital":0,"ibgeState":21,"siafi":108,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.66689,-45.8421]}} +{"_id":{"$oid":"66f9d5ad542d90c053666875"},"ibge":1100379,"name":"Alto Alegre dos Parecis","capital":0,"ibgeState":11,"siafi":2,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.132,-61.835]}} +{"_id":{"$oid":"66f9d5ad542d90c053666876"},"ibge":5100300,"name":"Alto Araguaia","capital":0,"ibgeState":51,"siafi":9005,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-17.3153,-53.2181]}} +{"_id":{"$oid":"66f9d5ad542d90c053666877"},"ibge":4200754,"name":"Alto Bela Vista","capital":0,"ibgeState":42,"siafi":886,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4333,-51.9044]}} +{"_id":{"$oid":"66f9d5ad542d90c053666878"},"ibge":5100359,"name":"Alto Boa Vista","capital":0,"ibgeState":51,"siafi":127,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.6732,-51.3883]}} +{"_id":{"$oid":"66f9d5ad542d90c053666879"},"ibge":3102050,"name":"Alto Caparaó","capital":0,"ibgeState":31,"siafi":564,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.431,-41.8738]}} +{"_id":{"$oid":"66f9d5ad542d90c05366687a"},"ibge":2400703,"name":"Alto do Rodrigues","capital":0,"ibgeState":24,"siafi":1613,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.28186,-36.75]}} +{"_id":{"$oid":"66f9d5ad542d90c05366687b"},"ibge":4300570,"name":"Alto Feliz","capital":0,"ibgeState":43,"siafi":6045,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3919,-51.3123]}} +{"_id":{"$oid":"66f9d5ad542d90c05366687c"},"ibge":5100409,"name":"Alto Garças","capital":0,"ibgeState":51,"siafi":9007,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-16.9462,-53.5272]}} +{"_id":{"$oid":"66f9d5ad542d90c05366687d"},"ibge":5200555,"name":"Alto Horizonte","capital":0,"ibgeState":52,"siafi":85,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.1978,-49.3378]}} +{"_id":{"$oid":"66f9d5ad542d90c05366687e"},"ibge":3153509,"name":"Alto Jequitibá","capital":0,"ibgeState":31,"siafi":5069,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4208,-41.967]}} +{"_id":{"$oid":"66f9d5ad542d90c05366687f"},"ibge":2200301,"name":"Alto Longá","capital":0,"ibgeState":22,"siafi":1005,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.25634,-42.2096]}} +{"_id":{"$oid":"66f9d5ad542d90c053666880"},"ibge":5100508,"name":"Alto Paraguai","capital":0,"ibgeState":51,"siafi":9009,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.5137,-56.4776]}} +{"_id":{"$oid":"66f9d5ad542d90c053666881"},"ibge":4128625,"name":"Alto Paraíso","capital":0,"ibgeState":41,"siafi":5523,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.1146,-52.7469]}} +{"_id":{"$oid":"66f9d5ad542d90c053666882"},"ibge":1100403,"name":"Alto Paraíso","capital":0,"ibgeState":11,"siafi":675,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-9.71429,-63.3188]}} +{"_id":{"$oid":"66f9d5ad542d90c053666883"},"ibge":5200605,"name":"Alto Paraíso de Goiás","capital":0,"ibgeState":52,"siafi":9211,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.1305,-47.51]}} +{"_id":{"$oid":"66f9d5ad542d90c053666884"},"ibge":4100608,"name":"Alto Paraná","capital":0,"ibgeState":41,"siafi":7409,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1312,-52.3189]}} +{"_id":{"$oid":"66f9d5ad542d90c053666885"},"ibge":2100501,"name":"Alto Parnaíba","capital":0,"ibgeState":21,"siafi":709,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.10273,-45.9303]}} +{"_id":{"$oid":"66f9d5ad542d90c053666886"},"ibge":4100707,"name":"Alto Piquiri","capital":0,"ibgeState":41,"siafi":7411,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.0224,-53.44]}} +{"_id":{"$oid":"66f9d5ad542d90c053666887"},"ibge":3102100,"name":"Alto Rio Doce","capital":0,"ibgeState":31,"siafi":4041,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0281,-43.4067]}} +{"_id":{"$oid":"66f9d5ad542d90c053666888"},"ibge":3200359,"name":"Alto Rio Novo","capital":0,"ibgeState":32,"siafi":5719,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.0618,-41.0209]}} +{"_id":{"$oid":"66f9d5ad542d90c053666889"},"ibge":2300705,"name":"Alto Santo","capital":0,"ibgeState":23,"siafi":1313,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.50894,-38.2743]}} +{"_id":{"$oid":"66f9d5ad542d90c05366688a"},"ibge":5100607,"name":"Alto Taquari","capital":0,"ibgeState":51,"siafi":9911,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-17.8241,-53.2792]}} +{"_id":{"$oid":"66f9d5ad542d90c05366688b"},"ibge":4100509,"name":"Altônia","capital":0,"ibgeState":41,"siafi":7951,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8759,-53.8958]}} +{"_id":{"$oid":"66f9d5ad542d90c05366688c"},"ibge":2200400,"name":"Altos","capital":0,"ibgeState":22,"siafi":1007,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.03888,-42.4612]}} +{"_id":{"$oid":"66f9d5ad542d90c05366688d"},"ibge":3501152,"name":"Alumínio","capital":0,"ibgeState":35,"siafi":3065,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5306,-47.2546]}} +{"_id":{"$oid":"66f9d5ad542d90c05366688e"},"ibge":1300029,"name":"Alvarães","capital":0,"ibgeState":13,"siafi":289,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.22727,-64.8007]}} +{"_id":{"$oid":"66f9d5ad542d90c05366688f"},"ibge":3102209,"name":"Alvarenga","capital":0,"ibgeState":31,"siafi":4043,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.4174,-41.7317]}} +{"_id":{"$oid":"66f9d5ad542d90c053666890"},"ibge":3501202,"name":"Álvares Florence","capital":0,"ibgeState":35,"siafi":6123,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3203,-49.9141]}} +{"_id":{"$oid":"66f9d5ad542d90c053666891"},"ibge":3501301,"name":"Álvares Machado","capital":0,"ibgeState":35,"siafi":6125,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0764,-51.4722]}} +{"_id":{"$oid":"66f9d5ad542d90c053666892"},"ibge":3501400,"name":"Álvaro de Carvalho","capital":0,"ibgeState":35,"siafi":6127,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0841,-49.719]}} +{"_id":{"$oid":"66f9d5ad542d90c053666893"},"ibge":3501509,"name":"Alvinlândia","capital":0,"ibgeState":35,"siafi":6129,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4435,-49.7623]}} +{"_id":{"$oid":"66f9d5ad542d90c053666894"},"ibge":3102308,"name":"Alvinópolis","capital":0,"ibgeState":31,"siafi":4045,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1098,-43.0535]}} +{"_id":{"$oid":"66f9d5ad542d90c053666895"},"ibge":1700707,"name":"Alvorada","capital":0,"ibgeState":17,"siafi":9213,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.4785,-49.1249]}} +{"_id":{"$oid":"66f9d5ad542d90c053666896"},"ibge":4300604,"name":"Alvorada","capital":0,"ibgeState":43,"siafi":8511,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.9914,-51.0809]}} +{"_id":{"$oid":"66f9d5ad542d90c053666897"},"ibge":1100346,"name":"Alvorada D'Oeste","capital":0,"ibgeState":11,"siafi":35,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.3463,-62.2847]}} +{"_id":{"$oid":"66f9d5ad542d90c053666898"},"ibge":3102407,"name":"Alvorada de Minas","capital":0,"ibgeState":31,"siafi":4047,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7334,-43.3638]}} +{"_id":{"$oid":"66f9d5ad542d90c053666899"},"ibge":2200459,"name":"Alvorada do Gurguéia","capital":0,"ibgeState":22,"siafi":268,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.42418,-43.777]}} +{"_id":{"$oid":"66f9d5ad542d90c05366689a"},"ibge":5200803,"name":"Alvorada do Norte","capital":0,"ibgeState":52,"siafi":9215,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.4797,-46.491]}} +{"_id":{"$oid":"66f9d5ad542d90c05366689b"},"ibge":4100806,"name":"Alvorada do Sul","capital":0,"ibgeState":41,"siafi":7413,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7813,-51.2297]}} +{"_id":{"$oid":"66f9d5ad542d90c05366689c"},"ibge":1400027,"name":"Amajari","capital":0,"ibgeState":14,"siafi":26,"ddd":95,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[3.64571,-61.3692]}} +{"_id":{"$oid":"66f9d5ad542d90c05366689d"},"ibge":5000609,"name":"Amambai","capital":0,"ibgeState":50,"siafi":9011,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-23.1058,-55.2253]}} +{"_id":{"$oid":"66f9d5ad542d90c05366689e"},"ibge":1600105,"name":"Amapá","capital":0,"ibgeState":16,"siafi":601,"ddd":96,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[2.05267,-50.7957]}} +{"_id":{"$oid":"66f9d5ad542d90c05366689f"},"ibge":2100550,"name":"Amapá do Maranhão","capital":0,"ibgeState":21,"siafi":110,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.67524,-46.0024]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668a0"},"ibge":4100905,"name":"Amaporã","capital":0,"ibgeState":41,"siafi":7415,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0943,-52.7866]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668a1"},"ibge":2600906,"name":"Amaraji","capital":0,"ibgeState":26,"siafi":2317,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.37691,-35.4501]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668a2"},"ibge":4300638,"name":"Amaral Ferrador","capital":0,"ibgeState":43,"siafi":8493,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.8756,-52.2509]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668a3"},"ibge":5200829,"name":"Amaralina","capital":0,"ibgeState":52,"siafi":1054,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.9236,-49.2962]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668a4"},"ibge":2200509,"name":"Amarante","capital":0,"ibgeState":22,"siafi":1009,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.24304,-42.8433]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668a5"},"ibge":2100600,"name":"Amarante do Maranhão","capital":0,"ibgeState":21,"siafi":711,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.56913,-46.7473]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668a6"},"ibge":2901007,"name":"Amargosa","capital":0,"ibgeState":29,"siafi":3319,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.0215,-39.602]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668a7"},"ibge":1300060,"name":"Amaturá","capital":0,"ibgeState":13,"siafi":291,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.37455,-68.2005]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668a8"},"ibge":2901106,"name":"Amélia Rodrigues","capital":0,"ibgeState":29,"siafi":3321,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.3914,-38.7563]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668a9"},"ibge":2901155,"name":"América Dourada","capital":0,"ibgeState":29,"siafi":3071,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.4429,-41.439]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668aa"},"ibge":3501608,"name":"Americana","capital":0,"ibgeState":35,"siafi":6131,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7374,-47.3331]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668ab"},"ibge":5200852,"name":"Americano do Brasil","capital":0,"ibgeState":52,"siafi":9661,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.2514,-49.9831]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668ac"},"ibge":3501707,"name":"Américo Brasiliense","capital":0,"ibgeState":35,"siafi":6133,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7288,-48.1147]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668ad"},"ibge":3501806,"name":"Américo de Campos","capital":0,"ibgeState":35,"siafi":6135,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2985,-49.7359]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668ae"},"ibge":4300646,"name":"Ametista do Sul","capital":0,"ibgeState":43,"siafi":5969,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3607,-53.183]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668af"},"ibge":2300754,"name":"Amontada","capital":0,"ibgeState":23,"siafi":1587,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.36017,-39.8288]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668b0"},"ibge":5200902,"name":"Amorinópolis","capital":0,"ibgeState":52,"siafi":9217,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.6151,-51.0919]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668b1"},"ibge":2500734,"name":"Amparo","capital":0,"ibgeState":25,"siafi":444,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.55502,-37.0628]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668b2"},"ibge":3501905,"name":"Amparo","capital":0,"ibgeState":35,"siafi":6137,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7088,-46.772]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668b3"},"ibge":2800100,"name":"Amparo de São Francisco","capital":0,"ibgeState":28,"siafi":3101,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.1348,-36.935]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668b4"},"ibge":3102506,"name":"Amparo do Serra","capital":0,"ibgeState":31,"siafi":4049,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5051,-42.8009]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668b5"},"ibge":4101002,"name":"Ampére","capital":0,"ibgeState":41,"siafi":7417,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.9168,-53.4686]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668b6"},"ibge":2700201,"name":"Anadia","capital":0,"ibgeState":27,"siafi":2703,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.68489,-36.3078]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668b7"},"ibge":2901205,"name":"Anagé","capital":0,"ibgeState":29,"siafi":3323,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.6151,-41.1356]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668b8"},"ibge":4101051,"name":"Anahy","capital":0,"ibgeState":41,"siafi":5463,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.6449,-53.1332]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668b9"},"ibge":1500701,"name":"Anajás","capital":0,"ibgeState":15,"siafi":413,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.996811,-49.9354]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668ba"},"ibge":2100709,"name":"Anajatuba","capital":0,"ibgeState":21,"siafi":713,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.26269,-44.6126]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668bb"},"ibge":3502002,"name":"Analândia","capital":0,"ibgeState":35,"siafi":6139,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1289,-47.6619]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668bc"},"ibge":1300086,"name":"Anamã","capital":0,"ibgeState":13,"siafi":293,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.56697,-61.3963]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668bd"},"ibge":1701002,"name":"Ananás","capital":0,"ibgeState":17,"siafi":9219,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.36437,-48.0735]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668be"},"ibge":1500800,"name":"Ananindeua","capital":0,"ibgeState":15,"siafi":415,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.36391,-48.3743]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668bf"},"ibge":5201108,"name":"Anápolis","capital":0,"ibgeState":52,"siafi":9221,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.3281,-48.953]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668c0"},"ibge":1500859,"name":"Anapu","capital":0,"ibgeState":15,"siafi":40,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.46985,-51.2003]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668c1"},"ibge":2100808,"name":"Anapurus","capital":0,"ibgeState":21,"siafi":715,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.67577,-43.1014]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668c2"},"ibge":5000708,"name":"Anastácio","capital":0,"ibgeState":50,"siafi":9013,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-20.4823,-55.8104]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668c3"},"ibge":5000807,"name":"Anaurilândia","capital":0,"ibgeState":50,"siafi":9015,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.1852,-52.7191]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668c4"},"ibge":4200804,"name":"Anchieta","capital":0,"ibgeState":42,"siafi":8015,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.5382,-53.3319]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668c5"},"ibge":3200409,"name":"Anchieta","capital":0,"ibgeState":32,"siafi":5607,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7955,-40.6425]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668c6"},"ibge":2901304,"name":"Andaraí","capital":0,"ibgeState":29,"siafi":3325,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.8049,-41.3297]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668c7"},"ibge":4101101,"name":"Andirá","capital":0,"ibgeState":41,"siafi":7419,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0533,-50.2304]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668c8"},"ibge":2901353,"name":"Andorinha","capital":0,"ibgeState":29,"siafi":3255,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.3482,-39.8391]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668c9"},"ibge":3102605,"name":"Andradas","capital":0,"ibgeState":31,"siafi":4051,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0695,-46.5724]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668ca"},"ibge":3502101,"name":"Andradina","capital":0,"ibgeState":35,"siafi":6141,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8948,-51.3786]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668cb"},"ibge":4300661,"name":"André da Rocha","capital":0,"ibgeState":43,"siafi":8491,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6283,-51.5797]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668cc"},"ibge":3102803,"name":"Andrelândia","capital":0,"ibgeState":31,"siafi":4055,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7411,-44.3117]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668cd"},"ibge":3502200,"name":"Angatuba","capital":0,"ibgeState":35,"siafi":6143,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4917,-48.4139]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668ce"},"ibge":3102852,"name":"Angelândia","capital":0,"ibgeState":31,"siafi":566,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.7279,-42.2641]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668cf"},"ibge":5000856,"name":"Angélica","capital":0,"ibgeState":50,"siafi":9169,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.1527,-53.7708]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668d0"},"ibge":2601003,"name":"Angelim","capital":0,"ibgeState":26,"siafi":2319,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.88429,-36.2902]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668d1"},"ibge":4200903,"name":"Angelina","capital":0,"ibgeState":42,"siafi":8017,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5704,-48.9879]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668d2"},"ibge":2901403,"name":"Angical","capital":0,"ibgeState":29,"siafi":3327,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.0063,-44.7003]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668d3"},"ibge":2200608,"name":"Angical do Piauí","capital":0,"ibgeState":22,"siafi":1011,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.08786,-42.74]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668d4"},"ibge":1701051,"name":"Angico","capital":0,"ibgeState":17,"siafi":165,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.39179,-47.8611]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668d5"},"ibge":2400802,"name":"Angicos","capital":0,"ibgeState":24,"siafi":1615,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.65792,-36.6094]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668d6"},"ibge":3300100,"name":"Angra dos Reis","capital":0,"ibgeState":33,"siafi":5801,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0011,-44.3196]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668d7"},"ibge":2901502,"name":"Anguera","capital":0,"ibgeState":29,"siafi":3329,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.1462,-39.2462]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668d8"},"ibge":4101150,"name":"Ângulo","capital":0,"ibgeState":41,"siafi":5509,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1946,-51.9154]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668d9"},"ibge":5201207,"name":"Anhanguera","capital":0,"ibgeState":52,"siafi":9223,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.3339,-48.2204]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668da"},"ibge":3502309,"name":"Anhembi","capital":0,"ibgeState":35,"siafi":6145,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.793,-48.1336]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668db"},"ibge":3502408,"name":"Anhumas","capital":0,"ibgeState":35,"siafi":6147,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2934,-51.3895]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668dc"},"ibge":5201306,"name":"Anicuns","capital":0,"ibgeState":52,"siafi":9225,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.4642,-49.9617]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668dd"},"ibge":2200707,"name":"Anísio de Abreu","capital":0,"ibgeState":22,"siafi":1013,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.18564,-43.0494]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668de"},"ibge":4201000,"name":"Anita Garibaldi","capital":0,"ibgeState":42,"siafi":8019,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6897,-51.1271]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668df"},"ibge":4201109,"name":"Anitápolis","capital":0,"ibgeState":42,"siafi":8021,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9012,-49.1316]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668e0"},"ibge":1300102,"name":"Anori","capital":0,"ibgeState":13,"siafi":203,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.74603,-61.6575]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668e1"},"ibge":4300703,"name":"Anta Gorda","capital":0,"ibgeState":43,"siafi":8513,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.9698,-52.0102]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668e2"},"ibge":2901601,"name":"Antas","capital":0,"ibgeState":29,"siafi":3331,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.3856,-38.3401]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668e3"},"ibge":4101200,"name":"Antonina","capital":0,"ibgeState":41,"siafi":7421,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4386,-48.7191]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668e4"},"ibge":2300804,"name":"Antonina do Norte","capital":0,"ibgeState":23,"siafi":1315,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.76919,-39.987]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668e5"},"ibge":2200806,"name":"Antônio Almeida","capital":0,"ibgeState":22,"siafi":1015,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.21276,-44.1889]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668e6"},"ibge":2901700,"name":"Antônio Cardoso","capital":0,"ibgeState":29,"siafi":3333,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.4335,-39.1176]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668e7"},"ibge":4201208,"name":"Antônio Carlos","capital":0,"ibgeState":42,"siafi":8023,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5191,-48.766]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668e8"},"ibge":3102902,"name":"Antônio Carlos","capital":0,"ibgeState":31,"siafi":4057,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.321,-43.7451]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668e9"},"ibge":3103009,"name":"Antônio Dias","capital":0,"ibgeState":31,"siafi":4059,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6491,-42.8732]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668ea"},"ibge":2901809,"name":"Antônio Gonçalves","capital":0,"ibgeState":29,"siafi":3335,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.5767,-40.2785]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668eb"},"ibge":5000906,"name":"Antônio João","capital":0,"ibgeState":50,"siafi":9017,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.1927,-55.9517]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668ec"},"ibge":2400901,"name":"Antônio Martins","capital":0,"ibgeState":24,"siafi":1617,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.21367,-37.8834]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668ed"},"ibge":4101309,"name":"Antônio Olinto","capital":0,"ibgeState":41,"siafi":7423,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.9804,-50.1972]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668ee"},"ibge":4300802,"name":"Antônio Prado","capital":0,"ibgeState":43,"siafi":8515,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.8565,-51.2883]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668ef"},"ibge":3103108,"name":"Antônio Prado de Minas","capital":0,"ibgeState":31,"siafi":4061,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0192,-42.1109]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668f0"},"ibge":2500775,"name":"Aparecida","capital":0,"ibgeState":25,"siafi":446,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.78466,-38.0803]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668f1"},"ibge":3502507,"name":"Aparecida","capital":0,"ibgeState":35,"siafi":6149,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8495,-45.2325]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668f2"},"ibge":3502606,"name":"Aparecida d'Oeste","capital":0,"ibgeState":35,"siafi":6151,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4487,-50.8835]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668f3"},"ibge":5201405,"name":"Aparecida de Goiânia","capital":0,"ibgeState":52,"siafi":9227,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.8198,-49.2469]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668f4"},"ibge":5201454,"name":"Aparecida do Rio Doce","capital":0,"ibgeState":52,"siafi":71,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.2941,-51.1516]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668f5"},"ibge":1701101,"name":"Aparecida do Rio Negro","capital":0,"ibgeState":17,"siafi":9713,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.94139,-47.9638]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668f6"},"ibge":5001003,"name":"Aparecida do Taboado","capital":0,"ibgeState":50,"siafi":9019,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-20.0873,-51.0961]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668f7"},"ibge":3300159,"name":"Aperibé","capital":0,"ibgeState":33,"siafi":2919,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6252,-42.1017]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668f8"},"ibge":3200508,"name":"Apiacá","capital":0,"ibgeState":32,"siafi":5609,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1523,-41.5693]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668f9"},"ibge":5100805,"name":"Apiacás","capital":0,"ibgeState":51,"siafi":9773,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-9.53981,-57.4587]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668fa"},"ibge":3502705,"name":"Apiaí","capital":0,"ibgeState":35,"siafi":6153,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.5108,-48.8443]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668fb"},"ibge":2100832,"name":"Apicum-Açu","capital":0,"ibgeState":21,"siafi":112,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.45862,-45.0864]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668fc"},"ibge":4201257,"name":"Apiúna","capital":0,"ibgeState":42,"siafi":9941,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0375,-49.3885]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668fd"},"ibge":2401008,"name":"Apodi","capital":0,"ibgeState":24,"siafi":1619,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.65349,-37.7946]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668fe"},"ibge":2901908,"name":"Aporá","capital":0,"ibgeState":29,"siafi":3337,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.6577,-38.0814]}} +{"_id":{"$oid":"66f9d5ad542d90c0536668ff"},"ibge":5201504,"name":"Aporé","capital":0,"ibgeState":52,"siafi":9229,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.9607,-51.9232]}} +{"_id":{"$oid":"66f9d5ad542d90c053666900"},"ibge":2901957,"name":"Apuarema","capital":0,"ibgeState":29,"siafi":3257,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.8542,-39.7501]}} +{"_id":{"$oid":"66f9d5ad542d90c053666901"},"ibge":4101408,"name":"Apucarana","capital":0,"ibgeState":41,"siafi":7425,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.55,-51.4635]}} +{"_id":{"$oid":"66f9d5ad542d90c053666902"},"ibge":1300144,"name":"Apuí","capital":0,"ibgeState":13,"siafi":969,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-7.19409,-59.896]}} +{"_id":{"$oid":"66f9d5ad542d90c053666903"},"ibge":2300903,"name":"Apuiarés","capital":0,"ibgeState":23,"siafi":1317,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.94506,-39.4359]}} +{"_id":{"$oid":"66f9d5ad542d90c053666904"},"ibge":2800209,"name":"Aquidabã","capital":0,"ibgeState":28,"siafi":3103,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.278,-37.0148]}} +{"_id":{"$oid":"66f9d5ad542d90c053666905"},"ibge":5001102,"name":"Aquidauana","capital":0,"ibgeState":50,"siafi":9021,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-20.4666,-55.7868]}} +{"_id":{"$oid":"66f9d5ad542d90c053666906"},"ibge":2301000,"name":"Aquiraz","capital":0,"ibgeState":23,"siafi":1319,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.89929,-38.3896]}} +{"_id":{"$oid":"66f9d5ad542d90c053666907"},"ibge":4201273,"name":"Arabutã","capital":0,"ibgeState":42,"siafi":5597,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1587,-52.1423]}} +{"_id":{"$oid":"66f9d5ad542d90c053666908"},"ibge":2500809,"name":"Araçagi","capital":0,"ibgeState":25,"siafi":1915,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.84374,-35.3737]}} +{"_id":{"$oid":"66f9d5ad542d90c053666909"},"ibge":3103207,"name":"Araçaí","capital":0,"ibgeState":31,"siafi":4063,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.1955,-44.2493]}} +{"_id":{"$oid":"66f9d5ad542d90c05366690a"},"ibge":2800308,"name":"Aracaju","capital":1,"ibgeState":28,"siafi":3105,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.9091,-37.0677]}} +{"_id":{"$oid":"66f9d5ad542d90c05366690b"},"ibge":3502754,"name":"Araçariguama","capital":0,"ibgeState":35,"siafi":3067,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4366,-47.0608]}} +{"_id":{"$oid":"66f9d5ad542d90c05366690c"},"ibge":2902054,"name":"Araças","capital":0,"ibgeState":29,"siafi":3259,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.22,-38.2027]}} +{"_id":{"$oid":"66f9d5ad542d90c05366690d"},"ibge":2301109,"name":"Aracati","capital":0,"ibgeState":23,"siafi":1321,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.55826,-37.7679]}} +{"_id":{"$oid":"66f9d5ad542d90c05366690e"},"ibge":2902005,"name":"Aracatu","capital":0,"ibgeState":29,"siafi":3339,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.428,-41.4648]}} +{"_id":{"$oid":"66f9d5ad542d90c05366690f"},"ibge":3502804,"name":"Araçatuba","capital":0,"ibgeState":35,"siafi":6155,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2076,-50.4401]}} +{"_id":{"$oid":"66f9d5ad542d90c053666910"},"ibge":2902104,"name":"Araci","capital":0,"ibgeState":29,"siafi":3341,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.3253,-38.9584]}} +{"_id":{"$oid":"66f9d5ad542d90c053666911"},"ibge":3103306,"name":"Aracitaba","capital":0,"ibgeState":31,"siafi":4065,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3446,-43.3736]}} +{"_id":{"$oid":"66f9d5ad542d90c053666912"},"ibge":2601052,"name":"Araçoiaba","capital":0,"ibgeState":26,"siafi":544,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.78391,-35.0809]}} +{"_id":{"$oid":"66f9d5ad542d90c053666913"},"ibge":2301208,"name":"Aracoiaba","capital":0,"ibgeState":23,"siafi":1323,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.36872,-38.8125]}} +{"_id":{"$oid":"66f9d5ad542d90c053666914"},"ibge":3502903,"name":"Araçoiaba da Serra","capital":0,"ibgeState":35,"siafi":6157,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5029,-47.6166]}} +{"_id":{"$oid":"66f9d5ad542d90c053666915"},"ibge":3200607,"name":"Aracruz","capital":0,"ibgeState":32,"siafi":5611,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.82,-40.2764]}} +{"_id":{"$oid":"66f9d5ad542d90c053666916"},"ibge":5201603,"name":"Araçu","capital":0,"ibgeState":52,"siafi":9231,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.3563,-49.6804]}} +{"_id":{"$oid":"66f9d5ad542d90c053666917"},"ibge":3103405,"name":"Araçuaí","capital":0,"ibgeState":31,"siafi":4067,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.8523,-42.0637]}} +{"_id":{"$oid":"66f9d5ad542d90c053666918"},"ibge":5201702,"name":"Aragarças","capital":0,"ibgeState":52,"siafi":9233,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.8955,-52.2372]}} +{"_id":{"$oid":"66f9d5ad542d90c053666919"},"ibge":5201801,"name":"Aragoiânia","capital":0,"ibgeState":52,"siafi":9235,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.9087,-49.4476]}} +{"_id":{"$oid":"66f9d5ad542d90c05366691a"},"ibge":1701309,"name":"Aragominas","capital":0,"ibgeState":17,"siafi":167,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.16005,-48.5291]}} +{"_id":{"$oid":"66f9d5ad542d90c05366691b"},"ibge":1701903,"name":"Araguacema","capital":0,"ibgeState":17,"siafi":9237,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.80755,-49.5569]}} +{"_id":{"$oid":"66f9d5ad542d90c05366691c"},"ibge":1702000,"name":"Araguaçu","capital":0,"ibgeState":17,"siafi":9239,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.9289,-49.8231]}} +{"_id":{"$oid":"66f9d5ad542d90c05366691d"},"ibge":5101001,"name":"Araguaiana","capital":0,"ibgeState":51,"siafi":9869,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.7291,-51.8341]}} +{"_id":{"$oid":"66f9d5ad542d90c05366691e"},"ibge":1702109,"name":"Araguaína","capital":0,"ibgeState":17,"siafi":9241,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.19238,-48.2044]}} +{"_id":{"$oid":"66f9d5ad542d90c05366691f"},"ibge":5101209,"name":"Araguainha","capital":0,"ibgeState":51,"siafi":9023,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-16.857,-53.0318]}} +{"_id":{"$oid":"66f9d5ad542d90c053666920"},"ibge":1702158,"name":"Araguanã","capital":0,"ibgeState":17,"siafi":169,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.58225,-48.6395]}} +{"_id":{"$oid":"66f9d5ad542d90c053666921"},"ibge":2100873,"name":"Araguanã","capital":0,"ibgeState":21,"siafi":114,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.94644,-45.6589]}} +{"_id":{"$oid":"66f9d5ad542d90c053666922"},"ibge":5202155,"name":"Araguapaz","capital":0,"ibgeState":52,"siafi":9669,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.0909,-50.6315]}} +{"_id":{"$oid":"66f9d5ad542d90c053666923"},"ibge":3103504,"name":"Araguari","capital":0,"ibgeState":31,"siafi":4069,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.6456,-48.1934]}} +{"_id":{"$oid":"66f9d5ad542d90c053666924"},"ibge":1702208,"name":"Araguatins","capital":0,"ibgeState":17,"siafi":9243,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.64659,-48.1232]}} +{"_id":{"$oid":"66f9d5ad542d90c053666925"},"ibge":2100907,"name":"Araioses","capital":0,"ibgeState":21,"siafi":717,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.89091,-41.905]}} +{"_id":{"$oid":"66f9d5ad542d90c053666926"},"ibge":5001243,"name":"Aral Moreira","capital":0,"ibgeState":50,"siafi":9171,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.9385,-55.6334]}} +{"_id":{"$oid":"66f9d5ad542d90c053666927"},"ibge":2902203,"name":"Aramari","capital":0,"ibgeState":29,"siafi":3343,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.0884,-38.4969]}} +{"_id":{"$oid":"66f9d5ad542d90c053666928"},"ibge":4300851,"name":"Arambaré","capital":0,"ibgeState":43,"siafi":5779,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.9092,-51.5046]}} +{"_id":{"$oid":"66f9d5ad542d90c053666929"},"ibge":2100956,"name":"Arame","capital":0,"ibgeState":21,"siafi":1281,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.88347,-46.0032]}} +{"_id":{"$oid":"66f9d5ad542d90c05366692a"},"ibge":3503000,"name":"Aramina","capital":0,"ibgeState":35,"siafi":6159,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0882,-47.7873]}} +{"_id":{"$oid":"66f9d5ad542d90c05366692b"},"ibge":3503109,"name":"Arandu","capital":0,"ibgeState":35,"siafi":6161,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1386,-49.0487]}} +{"_id":{"$oid":"66f9d5ad542d90c05366692c"},"ibge":3103603,"name":"Arantina","capital":0,"ibgeState":31,"siafi":4071,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9102,-44.2555]}} +{"_id":{"$oid":"66f9d5ad542d90c05366692d"},"ibge":3503158,"name":"Arapeí","capital":0,"ibgeState":35,"siafi":2991,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6717,-44.4441]}} +{"_id":{"$oid":"66f9d5ad542d90c05366692e"},"ibge":2700300,"name":"Arapiraca","capital":0,"ibgeState":27,"siafi":2705,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.75487,-36.6615]}} +{"_id":{"$oid":"66f9d5ad542d90c05366692f"},"ibge":1702307,"name":"Arapoema","capital":0,"ibgeState":17,"siafi":9245,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.65463,-49.0637]}} +{"_id":{"$oid":"66f9d5ad542d90c053666930"},"ibge":3103702,"name":"Araponga","capital":0,"ibgeState":31,"siafi":4073,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6686,-42.5178]}} +{"_id":{"$oid":"66f9d5ad542d90c053666931"},"ibge":4101507,"name":"Arapongas","capital":0,"ibgeState":41,"siafi":7427,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4153,-51.4259]}} +{"_id":{"$oid":"66f9d5ad542d90c053666932"},"ibge":3103751,"name":"Araporã","capital":0,"ibgeState":31,"siafi":2903,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4357,-49.1847]}} +{"_id":{"$oid":"66f9d5ad542d90c053666933"},"ibge":4101606,"name":"Arapoti","capital":0,"ibgeState":41,"siafi":7429,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.1548,-49.8285]}} +{"_id":{"$oid":"66f9d5ad542d90c053666934"},"ibge":4101655,"name":"Arapuã","capital":0,"ibgeState":41,"siafi":830,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.3132,-51.7856]}} +{"_id":{"$oid":"66f9d5ad542d90c053666935"},"ibge":3103801,"name":"Arapuá","capital":0,"ibgeState":31,"siafi":4075,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.0268,-46.1484]}} +{"_id":{"$oid":"66f9d5ad542d90c053666936"},"ibge":5101258,"name":"Araputanga","capital":0,"ibgeState":51,"siafi":8989,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.4641,-58.3425]}} +{"_id":{"$oid":"66f9d5ad542d90c053666937"},"ibge":4201307,"name":"Araquari","capital":0,"ibgeState":42,"siafi":8025,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.3754,-48.7188]}} +{"_id":{"$oid":"66f9d5ad542d90c053666938"},"ibge":2500908,"name":"Arara","capital":0,"ibgeState":25,"siafi":1917,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.82813,-35.7552]}} +{"_id":{"$oid":"66f9d5ad542d90c053666939"},"ibge":4201406,"name":"Araranguá","capital":0,"ibgeState":42,"siafi":8027,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.9356,-49.4918]}} +{"_id":{"$oid":"66f9d5ad542d90c05366693a"},"ibge":3503208,"name":"Araraquara","capital":0,"ibgeState":35,"siafi":6163,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7845,-48.178]}} +{"_id":{"$oid":"66f9d5ad542d90c05366693b"},"ibge":3503307,"name":"Araras","capital":0,"ibgeState":35,"siafi":6165,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3572,-47.3842]}} +{"_id":{"$oid":"66f9d5ad542d90c05366693c"},"ibge":2301257,"name":"Ararendá","capital":0,"ibgeState":23,"siafi":989,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.74567,-40.831]}} +{"_id":{"$oid":"66f9d5ad542d90c05366693d"},"ibge":2101004,"name":"Arari","capital":0,"ibgeState":21,"siafi":719,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.45214,-44.7665]}} +{"_id":{"$oid":"66f9d5ad542d90c05366693e"},"ibge":4300877,"name":"Araricá","capital":0,"ibgeState":43,"siafi":952,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6168,-50.9291]}} +{"_id":{"$oid":"66f9d5ad542d90c05366693f"},"ibge":2301307,"name":"Araripe","capital":0,"ibgeState":23,"siafi":1325,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.21319,-40.1359]}} +{"_id":{"$oid":"66f9d5ad542d90c053666940"},"ibge":2601102,"name":"Araripina","capital":0,"ibgeState":26,"siafi":2321,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.57073,-40.494]}} +{"_id":{"$oid":"66f9d5ad542d90c053666941"},"ibge":3300209,"name":"Araruama","capital":0,"ibgeState":33,"siafi":5803,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8697,-42.3326]}} +{"_id":{"$oid":"66f9d5ad542d90c053666942"},"ibge":4101705,"name":"Araruna","capital":0,"ibgeState":41,"siafi":7431,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.9315,-52.5021]}} +{"_id":{"$oid":"66f9d5ad542d90c053666943"},"ibge":2501005,"name":"Araruna","capital":0,"ibgeState":25,"siafi":1919,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.54848,-35.7498]}} +{"_id":{"$oid":"66f9d5ad542d90c053666944"},"ibge":2902252,"name":"Arataca","capital":0,"ibgeState":29,"siafi":3073,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.2651,-39.419]}} +{"_id":{"$oid":"66f9d5ad542d90c053666945"},"ibge":4300901,"name":"Aratiba","capital":0,"ibgeState":43,"siafi":8517,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3978,-52.2975]}} +{"_id":{"$oid":"66f9d5ad542d90c053666946"},"ibge":2301406,"name":"Aratuba","capital":0,"ibgeState":23,"siafi":1327,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.41229,-39.0471]}} +{"_id":{"$oid":"66f9d5ad542d90c053666947"},"ibge":2902302,"name":"Aratuípe","capital":0,"ibgeState":29,"siafi":3345,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.0716,-39.0038]}} +{"_id":{"$oid":"66f9d5ad542d90c053666948"},"ibge":2800407,"name":"Arauá","capital":0,"ibgeState":28,"siafi":3107,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.2614,-37.6201]}} +{"_id":{"$oid":"66f9d5ad542d90c053666949"},"ibge":4101804,"name":"Araucária","capital":0,"ibgeState":41,"siafi":7435,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.5859,-49.4047]}} +{"_id":{"$oid":"66f9d5ad542d90c05366694a"},"ibge":3103900,"name":"Araújos","capital":0,"ibgeState":31,"siafi":4077,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9405,-45.1671]}} +{"_id":{"$oid":"66f9d5ad542d90c05366694b"},"ibge":3104007,"name":"Araxá","capital":0,"ibgeState":31,"siafi":4079,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5902,-46.9438]}} +{"_id":{"$oid":"66f9d5ad542d90c05366694c"},"ibge":3104106,"name":"Arceburgo","capital":0,"ibgeState":31,"siafi":4081,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.359,-46.9401]}} +{"_id":{"$oid":"66f9d5ad542d90c05366694d"},"ibge":3503356,"name":"Arco-Íris","capital":0,"ibgeState":35,"siafi":790,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7728,-50.466]}} +{"_id":{"$oid":"66f9d5ad542d90c05366694e"},"ibge":3104205,"name":"Arcos","capital":0,"ibgeState":31,"siafi":4083,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2863,-45.5373]}} +{"_id":{"$oid":"66f9d5ad542d90c05366694f"},"ibge":2601201,"name":"Arcoverde","capital":0,"ibgeState":26,"siafi":2323,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.41519,-37.0577]}} +{"_id":{"$oid":"66f9d5ad542d90c053666950"},"ibge":3104304,"name":"Areado","capital":0,"ibgeState":31,"siafi":4085,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3572,-46.1421]}} +{"_id":{"$oid":"66f9d5ad542d90c053666951"},"ibge":3300225,"name":"Areal","capital":0,"ibgeState":33,"siafi":2925,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2283,-43.1118]}} +{"_id":{"$oid":"66f9d5ad542d90c053666952"},"ibge":3503406,"name":"Arealva","capital":0,"ibgeState":35,"siafi":6167,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.031,-48.9135]}} +{"_id":{"$oid":"66f9d5ad542d90c053666953"},"ibge":2501104,"name":"Areia","capital":0,"ibgeState":25,"siafi":1921,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.96396,-35.6977]}} +{"_id":{"$oid":"66f9d5ad542d90c053666954"},"ibge":2401107,"name":"Areia Branca","capital":0,"ibgeState":24,"siafi":1621,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.95254,-37.1252]}} +{"_id":{"$oid":"66f9d5ad542d90c053666955"},"ibge":2800506,"name":"Areia Branca","capital":0,"ibgeState":28,"siafi":3109,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.758,-37.3251]}} +{"_id":{"$oid":"66f9d5ad542d90c053666956"},"ibge":2501153,"name":"Areia de Baraúnas","capital":0,"ibgeState":25,"siafi":448,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.11702,-36.9404]}} +{"_id":{"$oid":"66f9d5ad542d90c053666957"},"ibge":2501203,"name":"Areial","capital":0,"ibgeState":25,"siafi":1923,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.04789,-35.9313]}} +{"_id":{"$oid":"66f9d5ad542d90c053666958"},"ibge":3503505,"name":"Areias","capital":0,"ibgeState":35,"siafi":6169,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5786,-44.6992]}} +{"_id":{"$oid":"66f9d5ad542d90c053666959"},"ibge":3503604,"name":"Areiópolis","capital":0,"ibgeState":35,"siafi":6171,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6672,-48.6681]}} +{"_id":{"$oid":"66f9d5ad542d90c05366695a"},"ibge":5101308,"name":"Arenápolis","capital":0,"ibgeState":51,"siafi":9025,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.4472,-56.8437]}} +{"_id":{"$oid":"66f9d5ad542d90c05366695b"},"ibge":5202353,"name":"Arenópolis","capital":0,"ibgeState":52,"siafi":9671,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.3837,-51.5563]}} +{"_id":{"$oid":"66f9d5ad542d90c05366695c"},"ibge":2401206,"name":"Arês","capital":0,"ibgeState":24,"siafi":1623,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.18831,-35.1608]}} +{"_id":{"$oid":"66f9d5ad542d90c05366695d"},"ibge":3104403,"name":"Argirita","capital":0,"ibgeState":31,"siafi":4087,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6083,-42.8292]}} +{"_id":{"$oid":"66f9d5ad542d90c05366695e"},"ibge":3104452,"name":"Aricanduva","capital":0,"ibgeState":31,"siafi":568,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.8666,-42.5533]}} +{"_id":{"$oid":"66f9d5ad542d90c05366695f"},"ibge":3104502,"name":"Arinos","capital":0,"ibgeState":31,"siafi":4089,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.9187,-46.1043]}} +{"_id":{"$oid":"66f9d5ad542d90c053666960"},"ibge":5101407,"name":"Aripuanã","capital":0,"ibgeState":51,"siafi":9027,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.1723,-59.4568]}} +{"_id":{"$oid":"66f9d5ad542d90c053666961"},"ibge":1100023,"name":"Ariquemes","capital":0,"ibgeState":11,"siafi":7,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-9.90571,-63.0325]}} +{"_id":{"$oid":"66f9d5ad542d90c053666962"},"ibge":3503703,"name":"Ariranha","capital":0,"ibgeState":35,"siafi":6173,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1872,-48.7904]}} +{"_id":{"$oid":"66f9d5ad542d90c053666963"},"ibge":4101853,"name":"Ariranha do Ivaí","capital":0,"ibgeState":41,"siafi":832,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.3857,-51.5839]}} +{"_id":{"$oid":"66f9d5ad542d90c053666964"},"ibge":3300233,"name":"Armação dos Búzios","capital":0,"ibgeState":33,"siafi":770,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7528,-41.8846]}} +{"_id":{"$oid":"66f9d5ad542d90c053666965"},"ibge":4201505,"name":"Armazém","capital":0,"ibgeState":42,"siafi":8029,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.2448,-49.0215]}} +{"_id":{"$oid":"66f9d5ad542d90c053666966"},"ibge":2301505,"name":"Arneiroz","capital":0,"ibgeState":23,"siafi":1329,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.3165,-40.1653]}} +{"_id":{"$oid":"66f9d5ad542d90c053666967"},"ibge":2200905,"name":"Aroazes","capital":0,"ibgeState":22,"siafi":1017,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.11022,-41.7822]}} +{"_id":{"$oid":"66f9d5ad542d90c053666968"},"ibge":2501302,"name":"Aroeiras","capital":0,"ibgeState":25,"siafi":1925,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.54473,-35.7066]}} +{"_id":{"$oid":"66f9d5ad542d90c053666969"},"ibge":2200954,"name":"Aroeiras do Itaim","capital":0,"ibgeState":22,"siafi":1188,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.24502,-41.5325]}} +{"_id":{"$oid":"66f9d5ad542d90c05366696a"},"ibge":2201002,"name":"Arraial","capital":0,"ibgeState":22,"siafi":1019,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.65075,-42.5418]}} +{"_id":{"$oid":"66f9d5ad542d90c05366696b"},"ibge":3300258,"name":"Arraial do Cabo","capital":0,"ibgeState":33,"siafi":5927,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9774,-42.0267]}} +{"_id":{"$oid":"66f9d5ad542d90c05366696c"},"ibge":1702406,"name":"Arraias","capital":0,"ibgeState":17,"siafi":9247,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.9287,-46.9359]}} +{"_id":{"$oid":"66f9d5ad542d90c05366696d"},"ibge":4301008,"name":"Arroio do Meio","capital":0,"ibgeState":43,"siafi":8519,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4014,-51.9557]}} +{"_id":{"$oid":"66f9d5ad542d90c05366696e"},"ibge":4301073,"name":"Arroio do Padre","capital":0,"ibgeState":43,"siafi":1122,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.4389,-52.4246]}} +{"_id":{"$oid":"66f9d5ad542d90c05366696f"},"ibge":4301057,"name":"Arroio do Sal","capital":0,"ibgeState":43,"siafi":8489,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5439,-49.8895]}} +{"_id":{"$oid":"66f9d5ad542d90c053666970"},"ibge":4301206,"name":"Arroio do Tigre","capital":0,"ibgeState":43,"siafi":8523,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3348,-53.0966]}} +{"_id":{"$oid":"66f9d5ad542d90c053666971"},"ibge":4301107,"name":"Arroio dos Ratos","capital":0,"ibgeState":43,"siafi":8521,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.0875,-51.7275]}} +{"_id":{"$oid":"66f9d5ad542d90c053666972"},"ibge":4301305,"name":"Arroio Grande","capital":0,"ibgeState":43,"siafi":8525,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-32.2327,-53.0862]}} +{"_id":{"$oid":"66f9d5ad542d90c053666973"},"ibge":4201604,"name":"Arroio Trinta","capital":0,"ibgeState":42,"siafi":8031,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9257,-51.3407]}} +{"_id":{"$oid":"66f9d5ad542d90c053666974"},"ibge":3503802,"name":"Artur Nogueira","capital":0,"ibgeState":35,"siafi":6175,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5727,-47.1727]}} +{"_id":{"$oid":"66f9d5ad542d90c053666975"},"ibge":5202502,"name":"Aruanã","capital":0,"ibgeState":52,"siafi":9249,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.9166,-51.075]}} +{"_id":{"$oid":"66f9d5ad542d90c053666976"},"ibge":3503901,"name":"Arujá","capital":0,"ibgeState":35,"siafi":6177,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3965,-46.32]}} +{"_id":{"$oid":"66f9d5ad542d90c053666977"},"ibge":4201653,"name":"Arvoredo","capital":0,"ibgeState":42,"siafi":5599,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0748,-52.4543]}} +{"_id":{"$oid":"66f9d5ad542d90c053666978"},"ibge":4301404,"name":"Arvorezinha","capital":0,"ibgeState":43,"siafi":8527,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.8737,-52.1781]}} +{"_id":{"$oid":"66f9d5ad542d90c053666979"},"ibge":4201703,"name":"Ascurra","capital":0,"ibgeState":42,"siafi":8033,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9548,-49.3783]}} +{"_id":{"$oid":"66f9d5ad542d90c05366697a"},"ibge":3503950,"name":"Aspásia","capital":0,"ibgeState":35,"siafi":2981,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.16,-50.728]}} +{"_id":{"$oid":"66f9d5ad542d90c05366697b"},"ibge":4101903,"name":"Assaí","capital":0,"ibgeState":41,"siafi":7437,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3697,-50.8459]}} +{"_id":{"$oid":"66f9d5ad542d90c05366697c"},"ibge":2301604,"name":"Assaré","capital":0,"ibgeState":23,"siafi":1331,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.8669,-39.8689]}} +{"_id":{"$oid":"66f9d5ad542d90c05366697d"},"ibge":3504008,"name":"Assis","capital":0,"ibgeState":35,"siafi":6179,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.66,-50.4183]}} +{"_id":{"$oid":"66f9d5ad542d90c05366697e"},"ibge":1200054,"name":"Assis Brasil","capital":0,"ibgeState":12,"siafi":157,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-10.9298,-69.5738]}} +{"_id":{"$oid":"66f9d5ad542d90c05366697f"},"ibge":4102000,"name":"Assis Chateaubriand","capital":0,"ibgeState":41,"siafi":7953,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.4168,-53.5213]}} +{"_id":{"$oid":"66f9d5ad542d90c053666980"},"ibge":2501351,"name":"Assunção","capital":0,"ibgeState":25,"siafi":450,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.07231,-36.725]}} +{"_id":{"$oid":"66f9d5ad542d90c053666981"},"ibge":2201051,"name":"Assunção do Piauí","capital":0,"ibgeState":22,"siafi":270,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.865,-41.0389]}} +{"_id":{"$oid":"66f9d5ad542d90c053666982"},"ibge":3104601,"name":"Astolfo Dutra","capital":0,"ibgeState":31,"siafi":4091,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3184,-42.8572]}} +{"_id":{"$oid":"66f9d5ad542d90c053666983"},"ibge":4102109,"name":"Astorga","capital":0,"ibgeState":41,"siafi":7439,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2318,-51.6668]}} +{"_id":{"$oid":"66f9d5ad542d90c053666984"},"ibge":4102208,"name":"Atalaia","capital":0,"ibgeState":41,"siafi":7441,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1517,-52.0551]}} +{"_id":{"$oid":"66f9d5ad542d90c053666985"},"ibge":2700409,"name":"Atalaia","capital":0,"ibgeState":27,"siafi":2707,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.5119,-36.0086]}} +{"_id":{"$oid":"66f9d5ad542d90c053666986"},"ibge":1300201,"name":"Atalaia do Norte","capital":0,"ibgeState":13,"siafi":205,"ddd":97,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-4.37055,-70.1967]}} +{"_id":{"$oid":"66f9d5ad542d90c053666987"},"ibge":4201802,"name":"Atalanta","capital":0,"ibgeState":42,"siafi":8035,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4219,-49.7789]}} +{"_id":{"$oid":"66f9d5ad542d90c053666988"},"ibge":3104700,"name":"Ataléia","capital":0,"ibgeState":31,"siafi":4093,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.0438,-41.1149]}} +{"_id":{"$oid":"66f9d5ad542d90c053666989"},"ibge":3504107,"name":"Atibaia","capital":0,"ibgeState":35,"siafi":6181,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1171,-46.5563]}} +{"_id":{"$oid":"66f9d5ad542d90c05366698a"},"ibge":3200706,"name":"Atilio Vivacqua","capital":0,"ibgeState":32,"siafi":5613,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.913,-41.1986]}} +{"_id":{"$oid":"66f9d5ad542d90c05366698b"},"ibge":1702554,"name":"Augustinópolis","capital":0,"ibgeState":17,"siafi":9685,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.46863,-47.8863]}} +{"_id":{"$oid":"66f9d5ad542d90c05366698c"},"ibge":1500909,"name":"Augusto Corrêa","capital":0,"ibgeState":15,"siafi":417,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.05109,-46.6147]}} +{"_id":{"$oid":"66f9d5ad542d90c05366698d"},"ibge":3104809,"name":"Augusto de Lima","capital":0,"ibgeState":31,"siafi":4095,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.0997,-44.2655]}} +{"_id":{"$oid":"66f9d5ad542d90c05366698e"},"ibge":4301503,"name":"Augusto Pestana","capital":0,"ibgeState":43,"siafi":8529,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5172,-53.9883]}} +{"_id":{"$oid":"66f9d5ad542d90c05366698f"},"ibge":2401305,"name":"Augusto Severo (Campo Grande)","capital":0,"ibgeState":24,"siafi":1625,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.86206,-37.3135]}} +{"_id":{"$oid":"66f9d5ad542d90c053666990"},"ibge":4301552,"name":"Áurea","capital":0,"ibgeState":43,"siafi":8487,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6936,-52.0505]}} +{"_id":{"$oid":"66f9d5ad542d90c053666991"},"ibge":2902401,"name":"Aurelino Leal","capital":0,"ibgeState":29,"siafi":3347,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.321,-39.329]}} +{"_id":{"$oid":"66f9d5ad542d90c053666992"},"ibge":3504206,"name":"Auriflama","capital":0,"ibgeState":35,"siafi":6183,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6836,-50.5572]}} +{"_id":{"$oid":"66f9d5ad542d90c053666993"},"ibge":5202601,"name":"Aurilândia","capital":0,"ibgeState":52,"siafi":9251,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.6773,-50.4641]}} +{"_id":{"$oid":"66f9d5ad542d90c053666994"},"ibge":2301703,"name":"Aurora","capital":0,"ibgeState":23,"siafi":1333,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.93349,-38.9742]}} +{"_id":{"$oid":"66f9d5ad542d90c053666995"},"ibge":4201901,"name":"Aurora","capital":0,"ibgeState":42,"siafi":8037,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3098,-49.6295]}} +{"_id":{"$oid":"66f9d5ad542d90c053666996"},"ibge":1500958,"name":"Aurora do Pará","capital":0,"ibgeState":15,"siafi":389,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.14898,-47.5677]}} +{"_id":{"$oid":"66f9d5ad542d90c053666997"},"ibge":1702703,"name":"Aurora do Tocantins","capital":0,"ibgeState":17,"siafi":9253,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.7105,-46.4076]}} +{"_id":{"$oid":"66f9d5ad542d90c053666998"},"ibge":1300300,"name":"Autazes","capital":0,"ibgeState":13,"siafi":207,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.58574,-59.1256]}} +{"_id":{"$oid":"66f9d5ad542d90c053666999"},"ibge":3504305,"name":"Avaí","capital":0,"ibgeState":35,"siafi":6185,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1514,-49.3356]}} +{"_id":{"$oid":"66f9d5ad542d90c05366699a"},"ibge":3504404,"name":"Avanhandava","capital":0,"ibgeState":35,"siafi":6187,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4584,-49.9509]}} +{"_id":{"$oid":"66f9d5ad542d90c05366699b"},"ibge":3504503,"name":"Avaré","capital":0,"ibgeState":35,"siafi":6189,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1067,-48.9251]}} +{"_id":{"$oid":"66f9d5ad542d90c05366699c"},"ibge":1501006,"name":"Aveiro","capital":0,"ibgeState":15,"siafi":419,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.60841,-55.3199]}} +{"_id":{"$oid":"66f9d5ad542d90c05366699d"},"ibge":2201101,"name":"Avelino Lopes","capital":0,"ibgeState":22,"siafi":1021,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.1345,-43.9563]}} +{"_id":{"$oid":"66f9d5ad542d90c05366699e"},"ibge":5202809,"name":"Avelinópolis","capital":0,"ibgeState":52,"siafi":9255,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.4672,-49.7579]}} +{"_id":{"$oid":"66f9d5ad542d90c05366699f"},"ibge":2101103,"name":"Axixá","capital":0,"ibgeState":21,"siafi":721,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.83939,-44.062]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669a0"},"ibge":1702901,"name":"Axixá do Tocantins","capital":0,"ibgeState":17,"siafi":9257,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.61275,-47.7701]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669a1"},"ibge":1703008,"name":"Babaçulândia","capital":0,"ibgeState":17,"siafi":9259,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.20923,-47.7613]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669a2"},"ibge":2101202,"name":"Bacabal","capital":0,"ibgeState":21,"siafi":723,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.22447,-44.7832]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669a3"},"ibge":2101251,"name":"Bacabeira","capital":0,"ibgeState":21,"siafi":116,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.96452,-44.3164]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669a4"},"ibge":2101301,"name":"Bacuri","capital":0,"ibgeState":21,"siafi":725,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.6965,-45.1328]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669a5"},"ibge":2101350,"name":"Bacurituba","capital":0,"ibgeState":21,"siafi":118,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.71,-44.7329]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669a6"},"ibge":3504602,"name":"Bady Bassitt","capital":0,"ibgeState":35,"siafi":6191,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9197,-49.4385]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669a7"},"ibge":3104908,"name":"Baependi","capital":0,"ibgeState":31,"siafi":4097,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.957,-44.8874]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669a8"},"ibge":4301602,"name":"Bagé","capital":0,"ibgeState":43,"siafi":8531,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.3297,-54.0999]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669a9"},"ibge":1501105,"name":"Bagre","capital":0,"ibgeState":15,"siafi":421,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.90057,-50.1987]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669aa"},"ibge":2501401,"name":"Baía da Traição","capital":0,"ibgeState":25,"siafi":1929,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.69209,-34.9381]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669ab"},"ibge":2401404,"name":"Baía Formosa","capital":0,"ibgeState":24,"siafi":1627,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.37161,-35.0033]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669ac"},"ibge":2902500,"name":"Baianópolis","capital":0,"ibgeState":29,"siafi":3349,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.3016,-44.5388]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669ad"},"ibge":1501204,"name":"Baião","capital":0,"ibgeState":15,"siafi":423,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.79021,-49.6694]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669ae"},"ibge":2902609,"name":"Baixa Grande","capital":0,"ibgeState":29,"siafi":3351,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.9519,-40.169]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669af"},"ibge":2201150,"name":"Baixa Grande do Ribeiro","capital":0,"ibgeState":22,"siafi":2245,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.84903,-45.219]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669b0"},"ibge":2301802,"name":"Baixio","capital":0,"ibgeState":23,"siafi":1335,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.71945,-38.7134]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669b1"},"ibge":3200805,"name":"Baixo Guandu","capital":0,"ibgeState":32,"siafi":5615,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5213,-41.0109]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669b2"},"ibge":3504701,"name":"Balbinos","capital":0,"ibgeState":35,"siafi":6193,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8963,-49.3619]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669b3"},"ibge":3105004,"name":"Baldim","capital":0,"ibgeState":31,"siafi":4099,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2832,-43.9613]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669b4"},"ibge":5203104,"name":"Baliza","capital":0,"ibgeState":52,"siafi":9261,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.1966,-52.5393]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669b5"},"ibge":4201950,"name":"Balneário Arroio do Silva","capital":0,"ibgeState":42,"siafi":888,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.9806,-49.4237]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669b6"},"ibge":4202057,"name":"Balneário Barra do Sul","capital":0,"ibgeState":42,"siafi":5549,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.4597,-48.6123]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669b7"},"ibge":4202008,"name":"Balneário Camboriú","capital":0,"ibgeState":42,"siafi":8039,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9926,-48.6352]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669b8"},"ibge":4202073,"name":"Balneário Gaivota","capital":0,"ibgeState":42,"siafi":890,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.1527,-49.5841]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669b9"},"ibge":4212809,"name":"Balneário Piçarras","capital":0,"ibgeState":42,"siafi":8251,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7639,-48.6717]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669ba"},"ibge":4301636,"name":"Balneário Pinhal","capital":0,"ibgeState":43,"siafi":954,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.2419,-50.2337]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669bb"},"ibge":4220000,"name":"Balneário Rincão","capital":0,"ibgeState":42,"siafi":1192,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.8314,-49.2352]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669bc"},"ibge":4102307,"name":"Balsa Nova","capital":0,"ibgeState":41,"siafi":7443,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.5804,-49.6291]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669bd"},"ibge":3504800,"name":"Bálsamo","capital":0,"ibgeState":35,"siafi":6195,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7348,-49.5865]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669be"},"ibge":2101400,"name":"Balsas","capital":0,"ibgeState":21,"siafi":727,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.53214,-46.0372]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669bf"},"ibge":3105103,"name":"Bambuí","capital":0,"ibgeState":31,"siafi":4101,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0166,-45.9754]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669c0"},"ibge":2301851,"name":"Banabuiú","capital":0,"ibgeState":23,"siafi":1233,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.30454,-38.9132]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669c1"},"ibge":3504909,"name":"Bananal","capital":0,"ibgeState":35,"siafi":6197,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6819,-44.3281]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669c2"},"ibge":2501500,"name":"Bananeiras","capital":0,"ibgeState":25,"siafi":1931,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.74775,-35.6246]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669c3"},"ibge":3105202,"name":"Bandeira","capital":0,"ibgeState":31,"siafi":4103,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.8783,-40.5622]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669c4"},"ibge":3105301,"name":"Bandeira do Sul","capital":0,"ibgeState":31,"siafi":4105,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7308,-46.3833]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669c5"},"ibge":4202081,"name":"Bandeirante","capital":0,"ibgeState":42,"siafi":892,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7705,-53.6413]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669c6"},"ibge":5001508,"name":"Bandeirantes","capital":0,"ibgeState":50,"siafi":9029,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-19.9275,-54.3585]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669c7"},"ibge":4102406,"name":"Bandeirantes","capital":0,"ibgeState":41,"siafi":7445,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1078,-50.3704]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669c8"},"ibge":1703057,"name":"Bandeirantes do Tocantins","capital":0,"ibgeState":17,"siafi":74,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.75612,-48.5836]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669c9"},"ibge":1501253,"name":"Bannach","capital":0,"ibgeState":15,"siafi":42,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.34779,-50.3959]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669ca"},"ibge":2902658,"name":"Banzaê","capital":0,"ibgeState":29,"siafi":3261,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.5788,-38.6212]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669cb"},"ibge":4301651,"name":"Barão","capital":0,"ibgeState":43,"siafi":8485,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3725,-51.4949]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669cc"},"ibge":3505005,"name":"Barão de Antonina","capital":0,"ibgeState":35,"siafi":6201,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6284,-49.5634]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669cd"},"ibge":3105400,"name":"Barão de Cocais","capital":0,"ibgeState":31,"siafi":4107,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9389,-43.4755]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669ce"},"ibge":4301701,"name":"Barão de Cotegipe","capital":0,"ibgeState":43,"siafi":8533,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6208,-52.3798]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669cf"},"ibge":2101509,"name":"Barão de Grajaú","capital":0,"ibgeState":21,"siafi":729,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.74463,-43.0261]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669d0"},"ibge":5101605,"name":"Barão de Melgaço","capital":0,"ibgeState":51,"siafi":9031,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-16.2067,-55.9623]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669d1"},"ibge":3105509,"name":"Barão de Monte Alto","capital":0,"ibgeState":31,"siafi":4109,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2444,-42.2372]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669d2"},"ibge":4301750,"name":"Barão do Triunfo","capital":0,"ibgeState":43,"siafi":5771,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.3891,-51.7384]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669d3"},"ibge":2401453,"name":"Baraúna","capital":0,"ibgeState":24,"siafi":3003,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.06977,-37.6129]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669d4"},"ibge":2501534,"name":"Baraúna","capital":0,"ibgeState":25,"siafi":452,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.63484,-36.2601]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669d5"},"ibge":3105608,"name":"Barbacena","capital":0,"ibgeState":31,"siafi":4111,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2214,-43.7703]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669d6"},"ibge":2301901,"name":"Barbalha","capital":0,"ibgeState":23,"siafi":1337,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.2982,-39.3021]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669d7"},"ibge":3505104,"name":"Barbosa","capital":0,"ibgeState":35,"siafi":6199,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2657,-49.9518]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669d8"},"ibge":4102505,"name":"Barbosa Ferraz","capital":0,"ibgeState":41,"siafi":7447,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.0334,-52.004]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669d9"},"ibge":1501303,"name":"Barcarena","capital":0,"ibgeState":15,"siafi":425,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.51187,-48.6195]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669da"},"ibge":2401503,"name":"Barcelona","capital":0,"ibgeState":24,"siafi":1629,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.94284,-35.9247]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669db"},"ibge":1300409,"name":"Barcelos","capital":0,"ibgeState":13,"siafi":209,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-0.983373,-62.9311]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669dc"},"ibge":3505203,"name":"Bariri","capital":0,"ibgeState":35,"siafi":6203,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.073,-48.7438]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669dd"},"ibge":2902708,"name":"Barra","capital":0,"ibgeState":29,"siafi":3353,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.0859,-43.1459]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669de"},"ibge":4202099,"name":"Barra Bonita","capital":0,"ibgeState":42,"siafi":894,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.654,-53.44]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669df"},"ibge":3505302,"name":"Barra Bonita","capital":0,"ibgeState":35,"siafi":6205,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4909,-48.5583]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669e0"},"ibge":2201176,"name":"Barra D'Alcântara","capital":0,"ibgeState":22,"siafi":272,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.51645,-42.1146]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669e1"},"ibge":2902807,"name":"Barra da Estiva","capital":0,"ibgeState":29,"siafi":3355,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.6237,-41.3347]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669e2"},"ibge":2601300,"name":"Barra de Guabiraba","capital":0,"ibgeState":26,"siafi":2325,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.42075,-35.6585]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669e3"},"ibge":2501609,"name":"Barra de Santa Rosa","capital":0,"ibgeState":25,"siafi":1933,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.71816,-36.0671]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669e4"},"ibge":2501575,"name":"Barra de Santana","capital":0,"ibgeState":25,"siafi":454,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.51809,-35.9913]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669e5"},"ibge":2700508,"name":"Barra de Santo Antônio","capital":0,"ibgeState":27,"siafi":2709,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.4023,-35.5101]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669e6"},"ibge":3200904,"name":"Barra de São Francisco","capital":0,"ibgeState":32,"siafi":5617,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7548,-40.8965]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669e7"},"ibge":2501708,"name":"Barra de São Miguel","capital":0,"ibgeState":25,"siafi":1935,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.74603,-36.3209]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669e8"},"ibge":2700607,"name":"Barra de São Miguel","capital":0,"ibgeState":27,"siafi":2711,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.83842,-35.9057]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669e9"},"ibge":5101704,"name":"Barra do Bugres","capital":0,"ibgeState":51,"siafi":9033,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.0702,-57.1878]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669ea"},"ibge":3505351,"name":"Barra do Chapéu","capital":0,"ibgeState":35,"siafi":2997,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.4722,-49.0238]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669eb"},"ibge":2902906,"name":"Barra do Choça","capital":0,"ibgeState":29,"siafi":3357,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.8654,-40.5791]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669ec"},"ibge":2101608,"name":"Barra do Corda","capital":0,"ibgeState":21,"siafi":731,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.49682,-45.2485]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669ed"},"ibge":5101803,"name":"Barra do Garças","capital":0,"ibgeState":51,"siafi":9035,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.8804,-52.264]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669ee"},"ibge":4301859,"name":"Barra do Guarita","capital":0,"ibgeState":43,"siafi":6069,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1927,-53.7109]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669ef"},"ibge":4102703,"name":"Barra do Jacaré","capital":0,"ibgeState":41,"siafi":7451,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.116,-50.1842]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669f0"},"ibge":2903003,"name":"Barra do Mendes","capital":0,"ibgeState":29,"siafi":3359,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.81,-42.059]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669f1"},"ibge":1703073,"name":"Barra do Ouro","capital":0,"ibgeState":17,"siafi":76,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.69593,-47.6776]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669f2"},"ibge":3300308,"name":"Barra do Piraí","capital":0,"ibgeState":33,"siafi":5805,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4715,-43.8269]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669f3"},"ibge":4301875,"name":"Barra do Quaraí","capital":0,"ibgeState":43,"siafi":956,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.2029,-57.5497]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669f4"},"ibge":4301909,"name":"Barra do Ribeiro","capital":0,"ibgeState":43,"siafi":8537,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.2939,-51.3014]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669f5"},"ibge":4301925,"name":"Barra do Rio Azul","capital":0,"ibgeState":43,"siafi":5959,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4069,-52.4084]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669f6"},"ibge":2903102,"name":"Barra do Rocha","capital":0,"ibgeState":29,"siafi":3361,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.2,-39.5991]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669f7"},"ibge":3505401,"name":"Barra do Turvo","capital":0,"ibgeState":35,"siafi":6207,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.759,-48.5013]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669f8"},"ibge":2800605,"name":"Barra dos Coqueiros","capital":0,"ibgeState":28,"siafi":3111,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.8996,-37.0323]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669f9"},"ibge":4301958,"name":"Barra Funda","capital":0,"ibgeState":43,"siafi":5943,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9205,-53.0391]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669fa"},"ibge":3105707,"name":"Barra Longa","capital":0,"ibgeState":31,"siafi":4113,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2869,-43.0402]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669fb"},"ibge":3300407,"name":"Barra Mansa","capital":0,"ibgeState":33,"siafi":5807,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5481,-44.1752]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669fc"},"ibge":4202107,"name":"Barra Velha","capital":0,"ibgeState":42,"siafi":8041,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.637,-48.6933]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669fd"},"ibge":4301800,"name":"Barracão","capital":0,"ibgeState":43,"siafi":8535,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6739,-51.4585]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669fe"},"ibge":4102604,"name":"Barracão","capital":0,"ibgeState":41,"siafi":7449,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.2502,-53.6324]}} +{"_id":{"$oid":"66f9d5ad542d90c0536669ff"},"ibge":2201200,"name":"Barras","capital":0,"ibgeState":22,"siafi":1023,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.24468,-42.2922]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a00"},"ibge":2301950,"name":"Barreira","capital":0,"ibgeState":23,"siafi":1235,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.28921,-38.6429]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a01"},"ibge":2903201,"name":"Barreiras","capital":0,"ibgeState":29,"siafi":3363,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.1439,-44.9968]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a02"},"ibge":2201309,"name":"Barreiras do Piauí","capital":0,"ibgeState":22,"siafi":1025,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.9296,-45.4702]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a03"},"ibge":1300508,"name":"Barreirinha","capital":0,"ibgeState":13,"siafi":211,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-2.79886,-57.0679]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a04"},"ibge":2101707,"name":"Barreirinhas","capital":0,"ibgeState":21,"siafi":733,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.75863,-42.8232]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a05"},"ibge":2601409,"name":"Barreiros","capital":0,"ibgeState":26,"siafi":2327,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.81605,-35.1832]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a06"},"ibge":3505500,"name":"Barretos","capital":0,"ibgeState":35,"siafi":6209,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5531,-48.5698]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a07"},"ibge":3505609,"name":"Barrinha","capital":0,"ibgeState":35,"siafi":6211,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1864,-48.1636]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a08"},"ibge":2302008,"name":"Barro","capital":0,"ibgeState":23,"siafi":1339,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.17188,-38.7741]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a09"},"ibge":2903235,"name":"Barro Alto","capital":0,"ibgeState":29,"siafi":3075,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.7605,-41.9054]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a0a"},"ibge":5203203,"name":"Barro Alto","capital":0,"ibgeState":52,"siafi":9263,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.9658,-48.9086]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a0b"},"ibge":2201408,"name":"Barro Duro","capital":0,"ibgeState":22,"siafi":1027,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.81673,-42.5147]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a0c"},"ibge":2903300,"name":"Barro Preto","capital":0,"ibgeState":29,"siafi":3365,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.7948,-39.476]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a0d"},"ibge":2903276,"name":"Barrocas","capital":0,"ibgeState":29,"siafi":1110,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.5272,-39.0776]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a0e"},"ibge":1703107,"name":"Barrolândia","capital":0,"ibgeState":17,"siafi":9693,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.83404,-48.7252]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a0f"},"ibge":2302057,"name":"Barroquinha","capital":0,"ibgeState":23,"siafi":1237,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.02051,-41.1358]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a10"},"ibge":4302006,"name":"Barros Cassal","capital":0,"ibgeState":43,"siafi":8539,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.0947,-52.5836]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a11"},"ibge":3105905,"name":"Barroso","capital":0,"ibgeState":31,"siafi":4117,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1907,-43.972]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a12"},"ibge":3505708,"name":"Barueri","capital":0,"ibgeState":35,"siafi":6213,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5057,-46.879]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a13"},"ibge":3505807,"name":"Bastos","capital":0,"ibgeState":35,"siafi":6215,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.921,-50.7357]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a14"},"ibge":5001904,"name":"Bataguassu","capital":0,"ibgeState":50,"siafi":9037,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-21.7159,-52.4221]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a15"},"ibge":2201507,"name":"Batalha","capital":0,"ibgeState":22,"siafi":1029,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.0223,-42.0787]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a16"},"ibge":2700706,"name":"Batalha","capital":0,"ibgeState":27,"siafi":2713,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.6742,-37.133]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a17"},"ibge":3505906,"name":"Batatais","capital":0,"ibgeState":35,"siafi":6217,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8929,-47.5921]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a18"},"ibge":5002001,"name":"Batayporã","capital":0,"ibgeState":50,"siafi":9039,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.2944,-53.2705]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a19"},"ibge":2302107,"name":"Baturité","capital":0,"ibgeState":23,"siafi":1341,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.32598,-38.8812]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a1a"},"ibge":3506003,"name":"Bauru","capital":0,"ibgeState":35,"siafi":6219,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3246,-49.0871]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a1b"},"ibge":2501807,"name":"Bayeux","capital":0,"ibgeState":25,"siafi":1937,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.1238,-34.9293]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a1c"},"ibge":3506102,"name":"Bebedouro","capital":0,"ibgeState":35,"siafi":6221,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9491,-48.4791]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a1d"},"ibge":2302206,"name":"Beberibe","capital":0,"ibgeState":23,"siafi":1343,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.17741,-38.1271]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a1e"},"ibge":2302305,"name":"Bela Cruz","capital":0,"ibgeState":23,"siafi":1345,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.04996,-40.1671]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a1f"},"ibge":5002100,"name":"Bela Vista","capital":0,"ibgeState":50,"siafi":9041,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.1073,-56.5263]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a20"},"ibge":4102752,"name":"Bela Vista da Caroba","capital":0,"ibgeState":41,"siafi":834,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.8842,-53.6725]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a21"},"ibge":5203302,"name":"Bela Vista de Goiás","capital":0,"ibgeState":52,"siafi":9265,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.9693,-48.9513]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a22"},"ibge":3106002,"name":"Bela Vista de Minas","capital":0,"ibgeState":31,"siafi":4119,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8302,-43.0922]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a23"},"ibge":2101772,"name":"Bela Vista do Maranhão","capital":0,"ibgeState":21,"siafi":122,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.72618,-45.3075]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a24"},"ibge":4102802,"name":"Bela Vista do Paraíso","capital":0,"ibgeState":41,"siafi":7453,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9937,-51.1927]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a25"},"ibge":2201556,"name":"Bela Vista do Piauí","capital":0,"ibgeState":22,"siafi":274,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.98809,-41.8675]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a26"},"ibge":4202131,"name":"Bela Vista do Toldo","capital":0,"ibgeState":42,"siafi":896,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.2746,-50.4664]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a27"},"ibge":2101731,"name":"Belágua","capital":0,"ibgeState":21,"siafi":120,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.15485,-43.5122]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a28"},"ibge":1501402,"name":"Belém","capital":1,"ibgeState":15,"siafi":427,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.4554,-48.4898]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a29"},"ibge":2501906,"name":"Belém","capital":0,"ibgeState":25,"siafi":1939,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.74261,-35.5166]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a2a"},"ibge":2700805,"name":"Belém","capital":0,"ibgeState":27,"siafi":2715,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.57047,-36.4904]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a2b"},"ibge":2601508,"name":"Belém de Maria","capital":0,"ibgeState":26,"siafi":2329,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.62504,-35.8335]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a2c"},"ibge":2502003,"name":"Belém do Brejo do Cruz","capital":0,"ibgeState":25,"siafi":1941,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.18515,-37.5348]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a2d"},"ibge":2201572,"name":"Belém do Piauí","capital":0,"ibgeState":22,"siafi":276,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.36652,-40.9688]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a2e"},"ibge":2601607,"name":"Belém do São Francisco","capital":0,"ibgeState":26,"siafi":2331,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.75046,-38.9623]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a2f"},"ibge":3300456,"name":"Belford Roxo","capital":0,"ibgeState":33,"siafi":2909,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.764,-43.3992]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a30"},"ibge":3106101,"name":"Belmiro Braga","capital":0,"ibgeState":31,"siafi":4121,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.944,-43.4084]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a31"},"ibge":4202156,"name":"Belmonte","capital":0,"ibgeState":42,"siafi":5745,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.843,-53.5758]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a32"},"ibge":2903409,"name":"Belmonte","capital":0,"ibgeState":29,"siafi":3367,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.8608,-38.8758]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a33"},"ibge":2903508,"name":"Belo Campo","capital":0,"ibgeState":29,"siafi":3369,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.0334,-41.2652]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a34"},"ibge":3106200,"name":"Belo Horizonte","capital":1,"ibgeState":31,"siafi":4123,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9102,-43.9266]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a35"},"ibge":2601706,"name":"Belo Jardim","capital":0,"ibgeState":26,"siafi":2333,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.3313,-36.4258]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a36"},"ibge":2700904,"name":"Belo Monte","capital":0,"ibgeState":27,"siafi":2717,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.82272,-37.277]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a37"},"ibge":3106309,"name":"Belo Oriente","capital":0,"ibgeState":31,"siafi":4125,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2199,-42.4828]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a38"},"ibge":3106408,"name":"Belo Vale","capital":0,"ibgeState":31,"siafi":4127,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4077,-44.0275]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a39"},"ibge":1501451,"name":"Belterra","capital":0,"ibgeState":15,"siafi":44,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.63609,-54.9374]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a3a"},"ibge":2201606,"name":"Beneditinos","capital":0,"ibgeState":22,"siafi":1031,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.45676,-42.3638]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a3b"},"ibge":2101806,"name":"Benedito Leite","capital":0,"ibgeState":21,"siafi":735,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.21037,-44.5577]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a3c"},"ibge":4202206,"name":"Benedito Novo","capital":0,"ibgeState":42,"siafi":8043,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.781,-49.3593]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a3d"},"ibge":1501501,"name":"Benevides","capital":0,"ibgeState":15,"siafi":429,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.36183,-48.2434]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a3e"},"ibge":1300607,"name":"Benjamin Constant","capital":0,"ibgeState":13,"siafi":213,"ddd":97,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-4.37768,-70.0342]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a3f"},"ibge":4302055,"name":"Benjamin Constant do Sul","capital":0,"ibgeState":43,"siafi":958,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5086,-52.5995]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a40"},"ibge":3506201,"name":"Bento de Abreu","capital":0,"ibgeState":35,"siafi":6223,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2686,-50.814]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a41"},"ibge":2401602,"name":"Bento Fernandes","capital":0,"ibgeState":24,"siafi":1631,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.69906,-35.813]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a42"},"ibge":4302105,"name":"Bento Gonçalves","capital":0,"ibgeState":43,"siafi":8541,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.1662,-51.5165]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a43"},"ibge":2101905,"name":"Bequimão","capital":0,"ibgeState":21,"siafi":737,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.44162,-44.7842]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a44"},"ibge":3106507,"name":"Berilo","capital":0,"ibgeState":31,"siafi":4129,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.9567,-42.4606]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a45"},"ibge":3106655,"name":"Berizal","capital":0,"ibgeState":31,"siafi":570,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.61,-41.7432]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a46"},"ibge":2502052,"name":"Bernardino Batista","capital":0,"ibgeState":25,"siafi":456,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.44572,-38.5521]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a47"},"ibge":3506300,"name":"Bernardino de Campos","capital":0,"ibgeState":35,"siafi":6225,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0164,-49.4679]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a48"},"ibge":2101939,"name":"Bernardo do Mearim","capital":0,"ibgeState":21,"siafi":124,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.62666,-44.7608]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a49"},"ibge":1703206,"name":"Bernardo Sayão","capital":0,"ibgeState":17,"siafi":9695,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.87481,-48.8893]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a4a"},"ibge":3506359,"name":"Bertioga","capital":0,"ibgeState":35,"siafi":2965,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8486,-46.1396]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a4b"},"ibge":2201705,"name":"Bertolínia","capital":0,"ibgeState":22,"siafi":1033,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.63338,-43.9498]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a4c"},"ibge":3106606,"name":"Bertópolis","capital":0,"ibgeState":31,"siafi":4131,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.059,-40.58]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a4d"},"ibge":1300631,"name":"Beruri","capital":0,"ibgeState":13,"siafi":295,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.89874,-61.3616]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a4e"},"ibge":2601805,"name":"Betânia","capital":0,"ibgeState":26,"siafi":2335,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.26787,-38.0345]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a4f"},"ibge":2201739,"name":"Betânia do Piauí","capital":0,"ibgeState":22,"siafi":278,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.14376,-40.7989]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a50"},"ibge":3106705,"name":"Betim","capital":0,"ibgeState":31,"siafi":4133,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9668,-44.2008]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a51"},"ibge":2601904,"name":"Bezerros","capital":0,"ibgeState":26,"siafi":2337,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.2328,-35.796]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a52"},"ibge":3106804,"name":"Bias Fortes","capital":0,"ibgeState":31,"siafi":4135,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.602,-43.7574]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a53"},"ibge":3106903,"name":"Bicas","capital":0,"ibgeState":31,"siafi":4137,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7232,-43.056]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a54"},"ibge":4202305,"name":"Biguaçu","capital":0,"ibgeState":42,"siafi":8045,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.496,-48.6598]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a55"},"ibge":3506409,"name":"Bilac","capital":0,"ibgeState":35,"siafi":6227,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.404,-50.4746]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a56"},"ibge":3107000,"name":"Biquinhas","capital":0,"ibgeState":31,"siafi":4139,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7754,-45.4974]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a57"},"ibge":3506508,"name":"Birigui","capital":0,"ibgeState":35,"siafi":6229,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.291,-50.3432]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a58"},"ibge":3506607,"name":"Biritiba-Mirim","capital":0,"ibgeState":35,"siafi":6231,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5698,-46.0407]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a59"},"ibge":2903607,"name":"Biritinga","capital":0,"ibgeState":29,"siafi":3371,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.6072,-38.8051]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a5a"},"ibge":4102901,"name":"Bituruna","capital":0,"ibgeState":41,"siafi":7455,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.1607,-51.5518]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a5b"},"ibge":4202404,"name":"Blumenau","capital":0,"ibgeState":42,"siafi":8047,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9155,-49.0709]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a5c"},"ibge":4103008,"name":"Boa Esperança","capital":0,"ibgeState":41,"siafi":7457,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.2467,-52.7876]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a5d"},"ibge":3107109,"name":"Boa Esperança","capital":0,"ibgeState":31,"siafi":4141,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0927,-45.5612]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a5e"},"ibge":3201001,"name":"Boa Esperança","capital":0,"ibgeState":32,"siafi":5619,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5395,-40.3025]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a5f"},"ibge":4103024,"name":"Boa Esperança do Iguaçu","capital":0,"ibgeState":41,"siafi":5471,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.6324,-53.2108]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a60"},"ibge":3506706,"name":"Boa Esperança do Sul","capital":0,"ibgeState":35,"siafi":6233,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9918,-48.3906]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a61"},"ibge":2201770,"name":"Boa Hora","capital":0,"ibgeState":22,"siafi":280,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.41404,-42.1357]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a62"},"ibge":2903706,"name":"Boa Nova","capital":0,"ibgeState":29,"siafi":3373,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.3598,-40.2064]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a63"},"ibge":2502102,"name":"Boa Ventura","capital":0,"ibgeState":25,"siafi":1943,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.40982,-38.2113]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a64"},"ibge":4103040,"name":"Boa Ventura de São Roque","capital":0,"ibgeState":41,"siafi":836,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.8688,-51.6276]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a65"},"ibge":2302404,"name":"Boa Viagem","capital":0,"ibgeState":23,"siafi":1347,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.11258,-39.7337]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a66"},"ibge":1400100,"name":"Boa Vista","capital":1,"ibgeState":14,"siafi":301,"ddd":95,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[2.82384,-60.6753]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a67"},"ibge":2502151,"name":"Boa Vista","capital":0,"ibgeState":25,"siafi":458,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.26365,-36.2357]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a68"},"ibge":4103057,"name":"Boa Vista da Aparecida","capital":0,"ibgeState":41,"siafi":7981,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4308,-53.4117]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a69"},"ibge":4302154,"name":"Boa Vista das Missões","capital":0,"ibgeState":43,"siafi":5981,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6671,-53.3102]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a6a"},"ibge":4302204,"name":"Boa Vista do Buricá","capital":0,"ibgeState":43,"siafi":8543,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6693,-54.1082]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a6b"},"ibge":4302220,"name":"Boa Vista do Cadeado","capital":0,"ibgeState":43,"siafi":1124,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5791,-53.8108]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a6c"},"ibge":2101970,"name":"Boa Vista do Gurupi","capital":0,"ibgeState":21,"siafi":126,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.77614,-46.3002]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a6d"},"ibge":4302238,"name":"Boa Vista do Incra","capital":0,"ibgeState":43,"siafi":1126,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.8185,-53.391]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a6e"},"ibge":1300680,"name":"Boa Vista do Ramos","capital":0,"ibgeState":13,"siafi":297,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-2.97409,-57.5873]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a6f"},"ibge":4302253,"name":"Boa Vista do Sul","capital":0,"ibgeState":43,"siafi":960,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3544,-51.6687]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a70"},"ibge":2903805,"name":"Boa Vista do Tupim","capital":0,"ibgeState":29,"siafi":3375,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.6498,-40.6064]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a71"},"ibge":2701001,"name":"Boca da Mata","capital":0,"ibgeState":27,"siafi":2719,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.64308,-36.2125]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a72"},"ibge":1300706,"name":"Boca do Acre","capital":0,"ibgeState":13,"siafi":215,"ddd":97,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-8.74232,-67.3919]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a73"},"ibge":2201804,"name":"Bocaina","capital":0,"ibgeState":22,"siafi":1035,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.94124,-41.3168]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a74"},"ibge":3506805,"name":"Bocaina","capital":0,"ibgeState":35,"siafi":6235,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1365,-48.523]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a75"},"ibge":3107208,"name":"Bocaina de Minas","capital":0,"ibgeState":31,"siafi":4143,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1697,-44.3972]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a76"},"ibge":4202438,"name":"Bocaina do Sul","capital":0,"ibgeState":42,"siafi":898,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7455,-49.9423]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a77"},"ibge":3107307,"name":"Bocaiúva","capital":0,"ibgeState":31,"siafi":4145,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.1135,-43.8104]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a78"},"ibge":4103107,"name":"Bocaiúva do Sul","capital":0,"ibgeState":41,"siafi":7459,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.2066,-49.1141]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a79"},"ibge":2401651,"name":"Bodó","capital":0,"ibgeState":24,"siafi":412,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.98027,-36.4167]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a7a"},"ibge":2602001,"name":"Bodocó","capital":0,"ibgeState":26,"siafi":2339,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.77759,-39.9338]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a7b"},"ibge":5002159,"name":"Bodoquena","capital":0,"ibgeState":50,"siafi":9801,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-20.537,-56.7127]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a7c"},"ibge":3506904,"name":"Bofete","capital":0,"ibgeState":35,"siafi":6237,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1055,-48.2582]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a7d"},"ibge":3507001,"name":"Boituva","capital":0,"ibgeState":35,"siafi":6239,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2855,-47.6786]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a7e"},"ibge":2602100,"name":"Bom Conselho","capital":0,"ibgeState":26,"siafi":2341,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.16919,-36.6857]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a7f"},"ibge":3107406,"name":"Bom Despacho","capital":0,"ibgeState":31,"siafi":4147,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7386,-45.2622]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a80"},"ibge":3300506,"name":"Bom Jardim","capital":0,"ibgeState":33,"siafi":5809,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1545,-42.4251]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a81"},"ibge":2602209,"name":"Bom Jardim","capital":0,"ibgeState":26,"siafi":2343,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.79695,-35.5784]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a82"},"ibge":2102002,"name":"Bom Jardim","capital":0,"ibgeState":21,"siafi":955,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.54129,-45.606]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a83"},"ibge":4202503,"name":"Bom Jardim da Serra","capital":0,"ibgeState":42,"siafi":8389,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3377,-49.6373]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a84"},"ibge":5203401,"name":"Bom Jardim de Goiás","capital":0,"ibgeState":52,"siafi":9267,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.2063,-52.1728]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a85"},"ibge":3107505,"name":"Bom Jardim de Minas","capital":0,"ibgeState":31,"siafi":4149,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9479,-44.1885]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a86"},"ibge":4202537,"name":"Bom Jesus","capital":0,"ibgeState":42,"siafi":900,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7326,-52.3919]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a87"},"ibge":4302303,"name":"Bom Jesus","capital":0,"ibgeState":43,"siafi":8545,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6697,-50.4295]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a88"},"ibge":2201903,"name":"Bom Jesus","capital":0,"ibgeState":22,"siafi":1037,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.07124,-44.359]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a89"},"ibge":2401701,"name":"Bom Jesus","capital":0,"ibgeState":24,"siafi":1633,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.98648,-35.5792]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a8a"},"ibge":2502201,"name":"Bom Jesus","capital":0,"ibgeState":25,"siafi":1945,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.81601,-38.6453]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a8b"},"ibge":2903904,"name":"Bom Jesus da Lapa","capital":0,"ibgeState":29,"siafi":3377,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.2506,-43.4108]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a8c"},"ibge":3107604,"name":"Bom Jesus da Penha","capital":0,"ibgeState":31,"siafi":4151,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0148,-46.5174]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a8d"},"ibge":2903953,"name":"Bom Jesus da Serra","capital":0,"ibgeState":29,"siafi":3263,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.3663,-40.5126]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a8e"},"ibge":2102036,"name":"Bom Jesus das Selvas","capital":0,"ibgeState":21,"siafi":128,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.47638,-46.8641]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a8f"},"ibge":5203500,"name":"Bom Jesus de Goiás","capital":0,"ibgeState":52,"siafi":9269,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.2173,-49.74]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a90"},"ibge":3107703,"name":"Bom Jesus do Amparo","capital":0,"ibgeState":31,"siafi":4153,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7054,-43.4782]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a91"},"ibge":5101852,"name":"Bom Jesus do Araguaia","capital":0,"ibgeState":51,"siafi":1078,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.1706,-51.5032]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a92"},"ibge":3107802,"name":"Bom Jesus do Galho","capital":0,"ibgeState":31,"siafi":4155,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.836,-42.3165]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a93"},"ibge":3300605,"name":"Bom Jesus do Itabapoana","capital":0,"ibgeState":33,"siafi":5811,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1449,-41.6822]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a94"},"ibge":3201100,"name":"Bom Jesus do Norte","capital":0,"ibgeState":32,"siafi":5621,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1173,-41.6731]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a95"},"ibge":4202578,"name":"Bom Jesus do Oeste","capital":0,"ibgeState":42,"siafi":902,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.6927,-53.0967]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a96"},"ibge":4103156,"name":"Bom Jesus do Sul","capital":0,"ibgeState":41,"siafi":838,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.1958,-53.5955]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a97"},"ibge":1501576,"name":"Bom Jesus do Tocantins","capital":0,"ibgeState":15,"siafi":575,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.0424,-48.6047]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a98"},"ibge":1703305,"name":"Bom Jesus do Tocantins","capital":0,"ibgeState":17,"siafi":341,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.96306,-48.165]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a99"},"ibge":3507100,"name":"Bom Jesus dos Perdões","capital":0,"ibgeState":35,"siafi":6241,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1356,-46.4675]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a9a"},"ibge":2102077,"name":"Bom Lugar","capital":0,"ibgeState":21,"siafi":130,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.37311,-45.0326]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a9b"},"ibge":4302352,"name":"Bom Princípio","capital":0,"ibgeState":43,"siafi":9823,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4856,-51.3548]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a9c"},"ibge":2201919,"name":"Bom Princípio do Piauí","capital":0,"ibgeState":22,"siafi":2287,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.19631,-41.6403]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a9d"},"ibge":4302378,"name":"Bom Progresso","capital":0,"ibgeState":43,"siafi":6071,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5399,-53.8716]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a9e"},"ibge":3107901,"name":"Bom Repouso","capital":0,"ibgeState":31,"siafi":4157,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4675,-46.144]}} +{"_id":{"$oid":"66f9d5ad542d90c053666a9f"},"ibge":4202602,"name":"Bom Retiro","capital":0,"ibgeState":42,"siafi":8049,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.799,-49.487]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aa0"},"ibge":4302402,"name":"Bom Retiro do Sul","capital":0,"ibgeState":43,"siafi":8547,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6071,-51.9456]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aa1"},"ibge":3108008,"name":"Bom Sucesso","capital":0,"ibgeState":31,"siafi":4159,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0329,-44.7537]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aa2"},"ibge":4103206,"name":"Bom Sucesso","capital":0,"ibgeState":41,"siafi":7461,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7063,-51.7671]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aa3"},"ibge":2502300,"name":"Bom Sucesso","capital":0,"ibgeState":25,"siafi":1947,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.44176,-37.9234]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aa4"},"ibge":3507159,"name":"Bom Sucesso de Itararé","capital":0,"ibgeState":35,"siafi":3059,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.3155,-49.1451]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aa5"},"ibge":4103222,"name":"Bom Sucesso do Sul","capital":0,"ibgeState":41,"siafi":9979,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.0731,-52.8353]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aa6"},"ibge":4202453,"name":"Bombinhas","capital":0,"ibgeState":42,"siafi":5537,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1382,-48.5146]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aa7"},"ibge":1400159,"name":"Bonfim","capital":0,"ibgeState":14,"siafi":307,"ddd":95,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[3.36161,-59.8333]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aa8"},"ibge":3108107,"name":"Bonfim","capital":0,"ibgeState":31,"siafi":4161,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3302,-44.2366]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aa9"},"ibge":2201929,"name":"Bonfim do Piauí","capital":0,"ibgeState":22,"siafi":2251,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.1605,-42.8865]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aaa"},"ibge":5203559,"name":"Bonfinópolis","capital":0,"ibgeState":52,"siafi":9775,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.6173,-48.9616]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aab"},"ibge":3108206,"name":"Bonfinópolis de Minas","capital":0,"ibgeState":31,"siafi":4163,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.568,-45.9839]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aac"},"ibge":2904001,"name":"Boninal","capital":0,"ibgeState":29,"siafi":3379,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.7069,-41.8286]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aad"},"ibge":2602308,"name":"Bonito","capital":0,"ibgeState":26,"siafi":2345,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.47163,-35.7292]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aae"},"ibge":2904050,"name":"Bonito","capital":0,"ibgeState":29,"siafi":3265,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.9668,-41.2647]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aaf"},"ibge":1501600,"name":"Bonito","capital":0,"ibgeState":15,"siafi":431,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.36745,-47.3066]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ab0"},"ibge":5002209,"name":"Bonito","capital":0,"ibgeState":50,"siafi":9043,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-21.1261,-56.4836]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ab1"},"ibge":3108255,"name":"Bonito de Minas","capital":0,"ibgeState":31,"siafi":572,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.3231,-44.7543]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ab2"},"ibge":2502409,"name":"Bonito de Santa Fé","capital":0,"ibgeState":25,"siafi":1949,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.31341,-38.5133]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ab3"},"ibge":5203575,"name":"Bonópolis","capital":0,"ibgeState":52,"siafi":1056,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.6329,-49.8106]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ab4"},"ibge":2502508,"name":"Boqueirão","capital":0,"ibgeState":25,"siafi":1951,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.487,-36.1309]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ab5"},"ibge":4302451,"name":"Boqueirão do Leão","capital":0,"ibgeState":43,"siafi":8483,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3046,-52.4284]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ab6"},"ibge":2201945,"name":"Boqueirão do Piauí","capital":0,"ibgeState":22,"siafi":282,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.48181,-42.1212]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ab7"},"ibge":2800670,"name":"Boquim","capital":0,"ibgeState":28,"siafi":3115,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.1397,-37.6195]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ab8"},"ibge":2904100,"name":"Boquira","capital":0,"ibgeState":29,"siafi":3381,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.8205,-42.7324]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ab9"},"ibge":3507209,"name":"Borá","capital":0,"ibgeState":35,"siafi":6243,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2696,-50.5409]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aba"},"ibge":3507308,"name":"Boracéia","capital":0,"ibgeState":35,"siafi":6245,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1926,-48.7808]}} +{"_id":{"$oid":"66f9d5ad542d90c053666abb"},"ibge":1300805,"name":"Borba","capital":0,"ibgeState":13,"siafi":217,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-4.39154,-59.5874]}} +{"_id":{"$oid":"66f9d5ad542d90c053666abc"},"ibge":2502706,"name":"Borborema","capital":0,"ibgeState":25,"siafi":1955,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.80199,-35.6187]}} +{"_id":{"$oid":"66f9d5ad542d90c053666abd"},"ibge":3507407,"name":"Borborema","capital":0,"ibgeState":35,"siafi":6247,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6214,-49.0741]}} +{"_id":{"$oid":"66f9d5ad542d90c053666abe"},"ibge":3108305,"name":"Borda da Mata","capital":0,"ibgeState":31,"siafi":4165,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2707,-46.1653]}} +{"_id":{"$oid":"66f9d5ad542d90c053666abf"},"ibge":3507456,"name":"Borebi","capital":0,"ibgeState":35,"siafi":7247,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5728,-48.9707]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ac0"},"ibge":4103305,"name":"Borrazópolis","capital":0,"ibgeState":41,"siafi":7463,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.9366,-51.5875]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ac1"},"ibge":4302501,"name":"Bossoroca","capital":0,"ibgeState":43,"siafi":8549,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.7291,-54.9035]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ac2"},"ibge":3108404,"name":"Botelhos","capital":0,"ibgeState":31,"siafi":4167,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6412,-46.391]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ac3"},"ibge":3507506,"name":"Botucatu","capital":0,"ibgeState":35,"siafi":6249,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8837,-48.4437]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ac4"},"ibge":3108503,"name":"Botumirim","capital":0,"ibgeState":31,"siafi":4169,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.8657,-43.0086]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ac5"},"ibge":2904209,"name":"Botuporã","capital":0,"ibgeState":29,"siafi":3383,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.3772,-42.5163]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ac6"},"ibge":4202701,"name":"Botuverá","capital":0,"ibgeState":42,"siafi":8051,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2007,-49.0689]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ac7"},"ibge":4302584,"name":"Bozano","capital":0,"ibgeState":43,"siafi":1128,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3659,-53.772]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ac8"},"ibge":4202800,"name":"Braço do Norte","capital":0,"ibgeState":42,"siafi":8053,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.2681,-49.1701]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ac9"},"ibge":4202859,"name":"Braço do Trombudo","capital":0,"ibgeState":42,"siafi":5557,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3586,-49.8821]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aca"},"ibge":4302600,"name":"Braga","capital":0,"ibgeState":43,"siafi":8551,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6173,-53.7405]}} +{"_id":{"$oid":"66f9d5ad542d90c053666acb"},"ibge":1501709,"name":"Bragança","capital":0,"ibgeState":15,"siafi":433,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.06126,-46.7826]}} +{"_id":{"$oid":"66f9d5ad542d90c053666acc"},"ibge":3507605,"name":"Bragança Paulista","capital":0,"ibgeState":35,"siafi":6251,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9527,-46.5419]}} +{"_id":{"$oid":"66f9d5ad542d90c053666acd"},"ibge":4103354,"name":"Braganey","capital":0,"ibgeState":41,"siafi":7983,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.8173,-53.1218]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ace"},"ibge":2701100,"name":"Branquinha","capital":0,"ibgeState":27,"siafi":2721,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.23342,-36.0162]}} +{"_id":{"$oid":"66f9d5ad542d90c053666acf"},"ibge":3108701,"name":"Brás Pires","capital":0,"ibgeState":31,"siafi":4173,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8419,-43.2406]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ad0"},"ibge":1501725,"name":"Brasil Novo","capital":0,"ibgeState":15,"siafi":639,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.29792,-52.534]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ad1"},"ibge":5002308,"name":"Brasilândia","capital":0,"ibgeState":50,"siafi":9045,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-21.2544,-52.0365]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ad2"},"ibge":3108552,"name":"Brasilândia de Minas","capital":0,"ibgeState":31,"siafi":574,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.9999,-46.0081]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ad3"},"ibge":4103370,"name":"Brasilândia do Sul","capital":0,"ibgeState":41,"siafi":5521,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.1978,-53.5275]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ad4"},"ibge":1703602,"name":"Brasilândia do Tocantins","capital":0,"ibgeState":17,"siafi":339,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.38918,-48.4822]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ad5"},"ibge":1200104,"name":"Brasiléia","capital":0,"ibgeState":12,"siafi":105,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-10.995,-68.7497]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ad6"},"ibge":2201960,"name":"Brasileira","capital":0,"ibgeState":22,"siafi":2283,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.1337,-41.7859]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ad7"},"ibge":5300108,"name":"Brasília","capital":1,"ibgeState":53,"siafi":9701,"ddd":61,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.7795,-47.9297]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ad8"},"ibge":3108602,"name":"Brasília de Minas","capital":0,"ibgeState":31,"siafi":4171,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.2104,-44.4299]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ad9"},"ibge":5101902,"name":"Brasnorte","capital":0,"ibgeState":51,"siafi":9873,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.1474,-57.9833]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ada"},"ibge":3507704,"name":"Braúna","capital":0,"ibgeState":35,"siafi":6255,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.499,-50.3175]}} +{"_id":{"$oid":"66f9d5ad542d90c053666adb"},"ibge":3108800,"name":"Braúnas","capital":0,"ibgeState":31,"siafi":4175,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.0562,-42.7099]}} +{"_id":{"$oid":"66f9d5ad542d90c053666adc"},"ibge":5203609,"name":"Brazabrantes","capital":0,"ibgeState":52,"siafi":9271,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.4281,-49.3863]}} +{"_id":{"$oid":"66f9d5ad542d90c053666add"},"ibge":3108909,"name":"Brazópolis","capital":0,"ibgeState":31,"siafi":4177,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4743,-45.6166]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ade"},"ibge":2602407,"name":"Brejão","capital":0,"ibgeState":26,"siafi":2347,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.02915,-36.566]}} +{"_id":{"$oid":"66f9d5ad542d90c053666adf"},"ibge":3201159,"name":"Brejetuba","capital":0,"ibgeState":32,"siafi":758,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1395,-41.2954]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ae0"},"ibge":2401800,"name":"Brejinho","capital":0,"ibgeState":24,"siafi":1635,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.18566,-35.3591]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ae1"},"ibge":2602506,"name":"Brejinho","capital":0,"ibgeState":26,"siafi":2349,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.34694,-37.2865]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ae2"},"ibge":1703701,"name":"Brejinho de Nazaré","capital":0,"ibgeState":17,"siafi":9273,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.0058,-48.5683]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ae3"},"ibge":2102101,"name":"Brejo","capital":0,"ibgeState":21,"siafi":739,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.67796,-42.7527]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ae4"},"ibge":3507753,"name":"Brejo Alegre","capital":0,"ibgeState":35,"siafi":792,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1651,-50.1861]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ae5"},"ibge":2602605,"name":"Brejo da Madre de Deus","capital":0,"ibgeState":26,"siafi":2351,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.14933,-36.3741]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ae6"},"ibge":2102150,"name":"Brejo de Areia","capital":0,"ibgeState":21,"siafi":132,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.334,-45.581]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ae7"},"ibge":2502805,"name":"Brejo do Cruz","capital":0,"ibgeState":25,"siafi":1957,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.34185,-37.4943]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ae8"},"ibge":2201988,"name":"Brejo do Piauí","capital":0,"ibgeState":22,"siafi":284,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.20314,-42.8229]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ae9"},"ibge":2502904,"name":"Brejo dos Santos","capital":0,"ibgeState":25,"siafi":1959,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.37065,-37.8253]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aea"},"ibge":2800704,"name":"Brejo Grande","capital":0,"ibgeState":28,"siafi":3113,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.4297,-36.4611]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aeb"},"ibge":1501758,"name":"Brejo Grande do Araguaia","capital":0,"ibgeState":15,"siafi":577,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.69822,-48.4103]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aec"},"ibge":2302503,"name":"Brejo Santo","capital":0,"ibgeState":23,"siafi":1349,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.48469,-38.9799]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aed"},"ibge":2904308,"name":"Brejões","capital":0,"ibgeState":29,"siafi":3385,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.1039,-39.7988]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aee"},"ibge":2904407,"name":"Brejolândia","capital":0,"ibgeState":29,"siafi":3387,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.4815,-43.9679]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aef"},"ibge":1501782,"name":"Breu Branco","capital":0,"ibgeState":15,"siafi":625,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.77191,-49.5735]}} +{"_id":{"$oid":"66f9d5ad542d90c053666af0"},"ibge":1501808,"name":"Breves","capital":0,"ibgeState":15,"siafi":435,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.68036,-50.4791]}} +{"_id":{"$oid":"66f9d5ad542d90c053666af1"},"ibge":5203807,"name":"Britânia","capital":0,"ibgeState":52,"siafi":9275,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.2428,-51.1602]}} +{"_id":{"$oid":"66f9d5ad542d90c053666af2"},"ibge":4302659,"name":"Brochier","capital":0,"ibgeState":43,"siafi":8449,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5501,-51.5945]}} +{"_id":{"$oid":"66f9d5ad542d90c053666af3"},"ibge":3507803,"name":"Brodowski","capital":0,"ibgeState":35,"siafi":6257,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9845,-47.6572]}} +{"_id":{"$oid":"66f9d5ad542d90c053666af4"},"ibge":3507902,"name":"Brotas","capital":0,"ibgeState":35,"siafi":6259,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2795,-48.1251]}} +{"_id":{"$oid":"66f9d5ad542d90c053666af5"},"ibge":2904506,"name":"Brotas de Macaúbas","capital":0,"ibgeState":29,"siafi":3389,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.9915,-42.6326]}} +{"_id":{"$oid":"66f9d5ad542d90c053666af6"},"ibge":3109006,"name":"Brumadinho","capital":0,"ibgeState":31,"siafi":4179,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.151,-44.2007]}} +{"_id":{"$oid":"66f9d5ad542d90c053666af7"},"ibge":2904605,"name":"Brumado","capital":0,"ibgeState":29,"siafi":3391,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.2021,-41.6696]}} +{"_id":{"$oid":"66f9d5ad542d90c053666af8"},"ibge":4202875,"name":"Brunópolis","capital":0,"ibgeState":42,"siafi":904,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3058,-50.8684]}} +{"_id":{"$oid":"66f9d5ad542d90c053666af9"},"ibge":4202909,"name":"Brusque","capital":0,"ibgeState":42,"siafi":8055,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0977,-48.9107]}} +{"_id":{"$oid":"66f9d5ad542d90c053666afa"},"ibge":3109105,"name":"Bueno Brandão","capital":0,"ibgeState":31,"siafi":4181,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4383,-46.3491]}} +{"_id":{"$oid":"66f9d5ad542d90c053666afb"},"ibge":3109204,"name":"Buenópolis","capital":0,"ibgeState":31,"siafi":4183,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.8744,-44.1775]}} +{"_id":{"$oid":"66f9d5ad542d90c053666afc"},"ibge":2602704,"name":"Buenos Aires","capital":0,"ibgeState":26,"siafi":2353,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.72449,-35.3182]}} +{"_id":{"$oid":"66f9d5ad542d90c053666afd"},"ibge":2904704,"name":"Buerarema","capital":0,"ibgeState":29,"siafi":3393,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.9595,-39.3028]}} +{"_id":{"$oid":"66f9d5ad542d90c053666afe"},"ibge":3109253,"name":"Bugre","capital":0,"ibgeState":31,"siafi":576,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.4231,-42.2552]}} +{"_id":{"$oid":"66f9d5ad542d90c053666aff"},"ibge":2602803,"name":"Buíque","capital":0,"ibgeState":26,"siafi":2355,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.61954,-37.1606]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b00"},"ibge":1200138,"name":"Bujari","capital":0,"ibgeState":12,"siafi":645,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-9.81528,-67.955]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b01"},"ibge":1501907,"name":"Bujaru","capital":0,"ibgeState":15,"siafi":437,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.51762,-48.0381]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b02"},"ibge":3508009,"name":"Buri","capital":0,"ibgeState":35,"siafi":6261,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7977,-48.5958]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b03"},"ibge":3508108,"name":"Buritama","capital":0,"ibgeState":35,"siafi":6263,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0661,-50.1475]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b04"},"ibge":2102200,"name":"Buriti","capital":0,"ibgeState":21,"siafi":741,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.94169,-42.9179]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b05"},"ibge":5203906,"name":"Buriti Alegre","capital":0,"ibgeState":52,"siafi":9277,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.1378,-49.0404]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b06"},"ibge":2102309,"name":"Buriti Bravo","capital":0,"ibgeState":21,"siafi":743,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.83239,-43.8353]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b07"},"ibge":5203939,"name":"Buriti de Goiás","capital":0,"ibgeState":52,"siafi":63,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.1792,-50.4302]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b08"},"ibge":1703800,"name":"Buriti do Tocantins","capital":0,"ibgeState":17,"siafi":9715,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.31448,-48.2271]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b09"},"ibge":2202000,"name":"Buriti dos Lopes","capital":0,"ibgeState":22,"siafi":1039,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.18259,-41.8695]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b0a"},"ibge":2202026,"name":"Buriti dos Montes","capital":0,"ibgeState":22,"siafi":1297,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.30584,-41.0933]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b0b"},"ibge":2102325,"name":"Buriticupu","capital":0,"ibgeState":21,"siafi":134,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.32375,-46.4409]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b0c"},"ibge":5203962,"name":"Buritinópolis","capital":0,"ibgeState":52,"siafi":61,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.4772,-46.4076]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b0d"},"ibge":2904753,"name":"Buritirama","capital":0,"ibgeState":29,"siafi":3079,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7171,-43.6302]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b0e"},"ibge":2102358,"name":"Buritirana","capital":0,"ibgeState":21,"siafi":136,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.59823,-47.0131]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b0f"},"ibge":1100452,"name":"Buritis","capital":0,"ibgeState":11,"siafi":4,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.1943,-63.8324]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b10"},"ibge":3109303,"name":"Buritis","capital":0,"ibgeState":31,"siafi":4185,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.6218,-46.4221]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b11"},"ibge":3508207,"name":"Buritizal","capital":0,"ibgeState":35,"siafi":6265,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1911,-47.7096]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b12"},"ibge":3109402,"name":"Buritizeiro","capital":0,"ibgeState":31,"siafi":4187,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.3656,-44.9606]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b13"},"ibge":4302709,"name":"Butiá","capital":0,"ibgeState":43,"siafi":8553,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.1179,-51.9601]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b14"},"ibge":1300839,"name":"Caapiranga","capital":0,"ibgeState":13,"siafi":299,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.31537,-61.2206]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b15"},"ibge":2503001,"name":"Caaporã","capital":0,"ibgeState":25,"siafi":1961,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.51351,-34.9055]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b16"},"ibge":5002407,"name":"Caarapó","capital":0,"ibgeState":50,"siafi":9055,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.6368,-54.8209]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b17"},"ibge":2904803,"name":"Caatiba","capital":0,"ibgeState":29,"siafi":3395,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.9699,-40.4092]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b18"},"ibge":2503100,"name":"Cabaceiras","capital":0,"ibgeState":25,"siafi":1963,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.48899,-36.287]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b19"},"ibge":2904852,"name":"Cabaceiras do Paraguaçu","capital":0,"ibgeState":29,"siafi":3267,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.5317,-39.1902]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b1a"},"ibge":3109451,"name":"Cabeceira Grande","capital":0,"ibgeState":31,"siafi":578,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0335,-47.0862]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b1b"},"ibge":5204003,"name":"Cabeceiras","capital":0,"ibgeState":52,"siafi":9279,"ddd":61,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.7995,-46.9265]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b1c"},"ibge":2202059,"name":"Cabeceiras do Piauí","capital":0,"ibgeState":22,"siafi":1299,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.4773,-42.3069]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b1d"},"ibge":2503209,"name":"Cabedelo","capital":0,"ibgeState":25,"siafi":1965,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.98731,-34.8284]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b1e"},"ibge":1100031,"name":"Cabixi","capital":0,"ibgeState":11,"siafi":37,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-13.4945,-60.552]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b1f"},"ibge":2602902,"name":"Cabo de Santo Agostinho","capital":0,"ibgeState":26,"siafi":2357,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.28218,-35.0253]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b20"},"ibge":3300704,"name":"Cabo Frio","capital":0,"ibgeState":33,"siafi":5813,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8894,-42.0286]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b21"},"ibge":3109501,"name":"Cabo Verde","capital":0,"ibgeState":31,"siafi":4189,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4699,-46.3919]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b22"},"ibge":3508306,"name":"Cabrália Paulista","capital":0,"ibgeState":35,"siafi":6267,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4576,-49.3393]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b23"},"ibge":3508405,"name":"Cabreúva","capital":0,"ibgeState":35,"siafi":6269,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3053,-47.1362]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b24"},"ibge":2603009,"name":"Cabrobó","capital":0,"ibgeState":26,"siafi":2359,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.50548,-39.3094]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b25"},"ibge":4203006,"name":"Caçador","capital":0,"ibgeState":42,"siafi":8057,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7757,-51.012]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b26"},"ibge":3508504,"name":"Caçapava","capital":0,"ibgeState":35,"siafi":6271,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0992,-45.7076]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b27"},"ibge":4302808,"name":"Caçapava do Sul","capital":0,"ibgeState":43,"siafi":8555,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.5144,-53.4827]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b28"},"ibge":1100601,"name":"Cacaulândia","capital":0,"ibgeState":11,"siafi":677,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.349,-62.9043]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b29"},"ibge":4302907,"name":"Cacequi","capital":0,"ibgeState":43,"siafi":8557,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.8883,-54.822]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b2a"},"ibge":5102504,"name":"Cáceres","capital":0,"ibgeState":51,"siafi":9047,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-16.0764,-57.6818]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b2b"},"ibge":2904902,"name":"Cachoeira","capital":0,"ibgeState":29,"siafi":3397,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.5994,-38.9587]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b2c"},"ibge":5204102,"name":"Cachoeira Alta","capital":0,"ibgeState":52,"siafi":9281,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7618,-50.9432]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b2d"},"ibge":3109600,"name":"Cachoeira da Prata","capital":0,"ibgeState":31,"siafi":4191,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.521,-44.4544]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b2e"},"ibge":5204201,"name":"Cachoeira de Goiás","capital":0,"ibgeState":52,"siafi":9283,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.6635,-50.646]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b2f"},"ibge":3109709,"name":"Cachoeira de Minas","capital":0,"ibgeState":31,"siafi":4193,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3511,-45.7809]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b30"},"ibge":3102704,"name":"Cachoeira de Pajeú","capital":0,"ibgeState":31,"siafi":4053,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.9688,-41.4948]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b31"},"ibge":1502004,"name":"Cachoeira do Arari","capital":0,"ibgeState":15,"siafi":439,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.01226,-48.9503]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b32"},"ibge":1501956,"name":"Cachoeira do Piriá","capital":0,"ibgeState":15,"siafi":46,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.75974,-46.5459]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b33"},"ibge":4303004,"name":"Cachoeira do Sul","capital":0,"ibgeState":43,"siafi":8559,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.033,-52.8928]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b34"},"ibge":2503308,"name":"Cachoeira dos Índios","capital":0,"ibgeState":25,"siafi":1967,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.91353,-38.676]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b35"},"ibge":5204250,"name":"Cachoeira Dourada","capital":0,"ibgeState":52,"siafi":9673,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4859,-49.4766]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b36"},"ibge":3109808,"name":"Cachoeira Dourada","capital":0,"ibgeState":31,"siafi":4195,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5161,-49.5039]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b37"},"ibge":2102374,"name":"Cachoeira Grande","capital":0,"ibgeState":21,"siafi":138,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.93074,-44.0528]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b38"},"ibge":3508603,"name":"Cachoeira Paulista","capital":0,"ibgeState":35,"siafi":6273,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6665,-45.0154]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b39"},"ibge":3300803,"name":"Cachoeiras de Macacu","capital":0,"ibgeState":33,"siafi":5815,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4658,-42.6523]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b3a"},"ibge":1703826,"name":"Cachoeirinha","capital":0,"ibgeState":17,"siafi":171,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.1156,-47.9234]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b3b"},"ibge":2603108,"name":"Cachoeirinha","capital":0,"ibgeState":26,"siafi":2361,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.48668,-36.2402]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b3c"},"ibge":4303103,"name":"Cachoeirinha","capital":0,"ibgeState":43,"siafi":8561,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.9472,-51.1016]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b3d"},"ibge":3201209,"name":"Cachoeiro de Itapemirim","capital":0,"ibgeState":32,"siafi":5623,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8462,-41.1198]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b3e"},"ibge":2503407,"name":"Cacimba de Areia","capital":0,"ibgeState":25,"siafi":1969,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.12128,-37.1563]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b3f"},"ibge":2503506,"name":"Cacimba de Dentro","capital":0,"ibgeState":25,"siafi":1971,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.6386,-35.7778]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b40"},"ibge":2503555,"name":"Cacimbas","capital":0,"ibgeState":25,"siafi":460,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.20721,-37.0604]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b41"},"ibge":2701209,"name":"Cacimbinhas","capital":0,"ibgeState":27,"siafi":2723,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.40121,-36.9911]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b42"},"ibge":4303202,"name":"Cacique Doble","capital":0,"ibgeState":43,"siafi":8563,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.767,-51.6597]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b43"},"ibge":1100049,"name":"Cacoal","capital":0,"ibgeState":11,"siafi":9,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.4343,-61.4562]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b44"},"ibge":3508702,"name":"Caconde","capital":0,"ibgeState":35,"siafi":6275,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.528,-46.6437]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b45"},"ibge":5204300,"name":"Caçu","capital":0,"ibgeState":52,"siafi":9285,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5594,-51.1328]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b46"},"ibge":2905008,"name":"Caculé","capital":0,"ibgeState":29,"siafi":3399,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.5003,-42.2229]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b47"},"ibge":2905107,"name":"Caém","capital":0,"ibgeState":29,"siafi":3401,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.0677,-40.432]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b48"},"ibge":3109907,"name":"Caetanópolis","capital":0,"ibgeState":31,"siafi":4197,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2971,-44.4189]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b49"},"ibge":2905156,"name":"Caetanos","capital":0,"ibgeState":29,"siafi":3269,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.3347,-40.9175]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b4a"},"ibge":3110004,"name":"Caeté","capital":0,"ibgeState":31,"siafi":4199,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8826,-43.6704]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b4b"},"ibge":2603207,"name":"Caetés","capital":0,"ibgeState":26,"siafi":2363,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.7803,-36.6268]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b4c"},"ibge":2905206,"name":"Caetité","capital":0,"ibgeState":29,"siafi":3403,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.0684,-42.4861]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b4d"},"ibge":2905305,"name":"Cafarnaum","capital":0,"ibgeState":29,"siafi":3405,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.6914,-41.4688]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b4e"},"ibge":4103404,"name":"Cafeara","capital":0,"ibgeState":41,"siafi":7465,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.789,-51.7142]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b4f"},"ibge":3508801,"name":"Cafelândia","capital":0,"ibgeState":35,"siafi":6277,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8031,-49.6092]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b50"},"ibge":4103453,"name":"Cafelândia","capital":0,"ibgeState":41,"siafi":7985,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.6189,-53.3207]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b51"},"ibge":4103479,"name":"Cafezal do Sul","capital":0,"ibgeState":41,"siafi":5491,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.9005,-53.5124]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b52"},"ibge":3508900,"name":"Caiabu","capital":0,"ibgeState":35,"siafi":6279,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0127,-51.2394]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b53"},"ibge":3110103,"name":"Caiana","capital":0,"ibgeState":31,"siafi":4201,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6956,-41.9292]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b54"},"ibge":5204409,"name":"Caiapônia","capital":0,"ibgeState":52,"siafi":9287,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.9539,-51.8091]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b55"},"ibge":4303301,"name":"Caibaté","capital":0,"ibgeState":43,"siafi":8565,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.2905,-54.6454]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b56"},"ibge":4203105,"name":"Caibi","capital":0,"ibgeState":42,"siafi":8059,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0741,-53.2458]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b57"},"ibge":4303400,"name":"Caiçara","capital":0,"ibgeState":43,"siafi":8567,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2791,-53.4257]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b58"},"ibge":2503605,"name":"Caiçara","capital":0,"ibgeState":25,"siafi":1973,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.62115,-35.4581]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b59"},"ibge":2401859,"name":"Caiçara do Norte","capital":0,"ibgeState":24,"siafi":414,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.07091,-36.0717]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b5a"},"ibge":2401909,"name":"Caiçara do Rio do Vento","capital":0,"ibgeState":24,"siafi":1637,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.76541,-35.9938]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b5b"},"ibge":2402006,"name":"Caicó","capital":0,"ibgeState":24,"siafi":1639,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.45441,-37.1067]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b5c"},"ibge":3509007,"name":"Caieiras","capital":0,"ibgeState":35,"siafi":6281,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3607,-46.7397]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b5d"},"ibge":2905404,"name":"Cairu","capital":0,"ibgeState":29,"siafi":3407,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.4904,-39.0465]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b5e"},"ibge":3509106,"name":"Caiuá","capital":0,"ibgeState":35,"siafi":6283,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8322,-51.9969]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b5f"},"ibge":3509205,"name":"Cajamar","capital":0,"ibgeState":35,"siafi":6285,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.355,-46.8781]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b60"},"ibge":2102408,"name":"Cajapió","capital":0,"ibgeState":21,"siafi":745,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.87326,-44.6741]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b61"},"ibge":2102507,"name":"Cajari","capital":0,"ibgeState":21,"siafi":747,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.32742,-45.0145]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b62"},"ibge":3509254,"name":"Cajati","capital":0,"ibgeState":35,"siafi":2967,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.7324,-48.1223]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b63"},"ibge":2503704,"name":"Cajazeiras","capital":0,"ibgeState":25,"siafi":1975,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.88004,-38.5577]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b64"},"ibge":2202075,"name":"Cajazeiras do Piauí","capital":0,"ibgeState":22,"siafi":286,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.79667,-42.3903]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b65"},"ibge":2503753,"name":"Cajazeirinhas","capital":0,"ibgeState":25,"siafi":462,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.96016,-37.8009]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b66"},"ibge":3509304,"name":"Cajobi","capital":0,"ibgeState":35,"siafi":6287,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8773,-48.8063]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b67"},"ibge":2701308,"name":"Cajueiro","capital":0,"ibgeState":27,"siafi":2725,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.3994,-36.1559]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b68"},"ibge":2202083,"name":"Cajueiro da Praia","capital":0,"ibgeState":22,"siafi":288,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.93111,-41.3408]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b69"},"ibge":3110202,"name":"Cajuri","capital":0,"ibgeState":31,"siafi":4203,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7903,-42.7925]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b6a"},"ibge":3509403,"name":"Cajuru","capital":0,"ibgeState":35,"siafi":6289,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2749,-47.303]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b6b"},"ibge":2603306,"name":"Calçado","capital":0,"ibgeState":26,"siafi":2365,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.73108,-36.3366]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b6c"},"ibge":1600204,"name":"Calçoene","capital":0,"ibgeState":16,"siafi":603,"ddd":96,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[2.50475,-50.9512]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b6d"},"ibge":3110301,"name":"Caldas","capital":0,"ibgeState":31,"siafi":4205,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9183,-46.3843]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b6e"},"ibge":2503803,"name":"Caldas Brandão","capital":0,"ibgeState":25,"siafi":1977,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.1025,-35.3272]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b6f"},"ibge":5204508,"name":"Caldas Novas","capital":0,"ibgeState":52,"siafi":9289,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.7441,-48.6246]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b70"},"ibge":5204557,"name":"Caldazinha","capital":0,"ibgeState":52,"siafi":31,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.7117,-49.0013]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b71"},"ibge":2905503,"name":"Caldeirão Grande","capital":0,"ibgeState":29,"siafi":3409,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.0208,-40.2956]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b72"},"ibge":2202091,"name":"Caldeirão Grande do Piauí","capital":0,"ibgeState":22,"siafi":2271,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.3314,-40.6366]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b73"},"ibge":4103503,"name":"Califórnia","capital":0,"ibgeState":41,"siafi":7467,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6566,-51.3574]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b74"},"ibge":4203154,"name":"Calmon","capital":0,"ibgeState":42,"siafi":5553,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.5942,-51.095]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b75"},"ibge":2603405,"name":"Calumbi","capital":0,"ibgeState":26,"siafi":2367,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.93551,-38.1482]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b76"},"ibge":2905602,"name":"Camacan","capital":0,"ibgeState":29,"siafi":3411,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.4142,-39.4919]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b77"},"ibge":2905701,"name":"Camaçari","capital":0,"ibgeState":29,"siafi":3413,"ddd":71,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.6996,-38.3263]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b78"},"ibge":3110400,"name":"Camacho","capital":0,"ibgeState":31,"siafi":4207,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6294,-45.1593]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b79"},"ibge":2503902,"name":"Camalaú","capital":0,"ibgeState":25,"siafi":1979,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.88503,-36.8242]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b7a"},"ibge":2905800,"name":"Camamu","capital":0,"ibgeState":29,"siafi":3415,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.9398,-39.1071]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b7b"},"ibge":3110509,"name":"Camanducaia","capital":0,"ibgeState":31,"siafi":4209,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7515,-46.1494]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b7c"},"ibge":5002605,"name":"Camapuã","capital":0,"ibgeState":50,"siafi":9049,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-19.5347,-54.0431]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b7d"},"ibge":4303509,"name":"Camaquã","capital":0,"ibgeState":43,"siafi":8569,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.8489,-51.8043]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b7e"},"ibge":2603454,"name":"Camaragibe","capital":0,"ibgeState":26,"siafi":2629,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.02351,-34.9782]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b7f"},"ibge":4303558,"name":"Camargo","capital":0,"ibgeState":43,"siafi":8447,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.588,-52.2003]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b80"},"ibge":4103602,"name":"Cambará","capital":0,"ibgeState":41,"siafi":7469,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0423,-50.0753]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b81"},"ibge":4303608,"name":"Cambará do Sul","capital":0,"ibgeState":43,"siafi":8571,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.0474,-50.1465]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b82"},"ibge":4103701,"name":"Cambé","capital":0,"ibgeState":41,"siafi":7471,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2766,-51.2798]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b83"},"ibge":4103800,"name":"Cambira","capital":0,"ibgeState":41,"siafi":7473,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.589,-51.5792]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b84"},"ibge":4203204,"name":"Camboriú","capital":0,"ibgeState":42,"siafi":8061,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0241,-48.6503]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b85"},"ibge":3300902,"name":"Cambuci","capital":0,"ibgeState":33,"siafi":5817,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5691,-41.9187]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b86"},"ibge":3110608,"name":"Cambuí","capital":0,"ibgeState":31,"siafi":4211,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6115,-46.0572]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b87"},"ibge":3110707,"name":"Cambuquira","capital":0,"ibgeState":31,"siafi":4213,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.854,-45.2896]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b88"},"ibge":1502103,"name":"Cametá","capital":0,"ibgeState":15,"siafi":441,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.24295,-49.4979]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b89"},"ibge":2302602,"name":"Camocim","capital":0,"ibgeState":23,"siafi":1351,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.9005,-40.8544]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b8a"},"ibge":2603504,"name":"Camocim de São Félix","capital":0,"ibgeState":26,"siafi":2369,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.35865,-35.7653]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b8b"},"ibge":3110806,"name":"Campanário","capital":0,"ibgeState":31,"siafi":4215,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.2427,-41.7355]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b8c"},"ibge":3110905,"name":"Campanha","capital":0,"ibgeState":31,"siafi":4217,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.836,-45.4004]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b8d"},"ibge":3111002,"name":"Campestre","capital":0,"ibgeState":31,"siafi":4219,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7079,-46.2381]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b8e"},"ibge":2701357,"name":"Campestre","capital":0,"ibgeState":27,"siafi":560,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.84723,-35.5685]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b8f"},"ibge":4303673,"name":"Campestre da Serra","capital":0,"ibgeState":43,"siafi":6013,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.7926,-51.0941]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b90"},"ibge":5204607,"name":"Campestre de Goiás","capital":0,"ibgeState":52,"siafi":9291,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.7624,-49.695]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b91"},"ibge":2102556,"name":"Campestre do Maranhão","capital":0,"ibgeState":21,"siafi":140,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.17075,-47.3625]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b92"},"ibge":4103909,"name":"Campina da Lagoa","capital":0,"ibgeState":41,"siafi":7475,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.5893,-52.7976]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b93"},"ibge":4303707,"name":"Campina das Missões","capital":0,"ibgeState":43,"siafi":8573,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9888,-54.8416]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b94"},"ibge":3509452,"name":"Campina do Monte Alegre","capital":0,"ibgeState":35,"siafi":2999,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5895,-48.4758]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b95"},"ibge":4103958,"name":"Campina do Simão","capital":0,"ibgeState":41,"siafi":840,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.0802,-51.8237]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b96"},"ibge":2504009,"name":"Campina Grande","capital":0,"ibgeState":25,"siafi":1981,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.22196,-35.8731]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b97"},"ibge":4104006,"name":"Campina Grande do Sul","capital":0,"ibgeState":41,"siafi":7477,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.3044,-49.0551]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b98"},"ibge":3111101,"name":"Campina Verde","capital":0,"ibgeState":31,"siafi":4221,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5382,-49.4862]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b99"},"ibge":5204656,"name":"Campinaçu","capital":0,"ibgeState":52,"siafi":9687,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.787,-48.5704]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b9a"},"ibge":5102603,"name":"Campinápolis","capital":0,"ibgeState":51,"siafi":9863,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.5162,-52.893]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b9b"},"ibge":3509502,"name":"Campinas","capital":0,"ibgeState":35,"siafi":6291,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9053,-47.0659]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b9c"},"ibge":2202109,"name":"Campinas do Piauí","capital":0,"ibgeState":22,"siafi":1041,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.6593,-41.8775]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b9d"},"ibge":4303806,"name":"Campinas do Sul","capital":0,"ibgeState":43,"siafi":8575,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7174,-52.6248]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b9e"},"ibge":5204706,"name":"Campinorte","capital":0,"ibgeState":52,"siafi":9293,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.3137,-49.1511]}} +{"_id":{"$oid":"66f9d5ad542d90c053666b9f"},"ibge":4203303,"name":"Campo Alegre","capital":0,"ibgeState":42,"siafi":8063,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.195,-49.2676]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ba0"},"ibge":2701407,"name":"Campo Alegre","capital":0,"ibgeState":27,"siafi":2727,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.78451,-36.3525]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ba1"},"ibge":5204805,"name":"Campo Alegre de Goiás","capital":0,"ibgeState":52,"siafi":9295,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.6363,-47.7768]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ba2"},"ibge":2905909,"name":"Campo Alegre de Lourdes","capital":0,"ibgeState":29,"siafi":3417,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.52221,-43.0126]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ba3"},"ibge":2202117,"name":"Campo Alegre do Fidalgo","capital":0,"ibgeState":22,"siafi":290,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.38236,-41.8344]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ba4"},"ibge":3111150,"name":"Campo Azul","capital":0,"ibgeState":31,"siafi":580,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.5028,-44.8096]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ba5"},"ibge":3111200,"name":"Campo Belo","capital":0,"ibgeState":31,"siafi":4223,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8932,-45.2699]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ba6"},"ibge":4203402,"name":"Campo Belo do Sul","capital":0,"ibgeState":42,"siafi":8065,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.8975,-50.7595]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ba7"},"ibge":4303905,"name":"Campo Bom","capital":0,"ibgeState":43,"siafi":8577,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6747,-51.0606]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ba8"},"ibge":4104055,"name":"Campo Bonito","capital":0,"ibgeState":41,"siafi":8475,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.0294,-52.9939]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ba9"},"ibge":2801009,"name":"Campo do Brito","capital":0,"ibgeState":28,"siafi":3119,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7392,-37.4954]}} +{"_id":{"$oid":"66f9d5ad542d90c053666baa"},"ibge":3111309,"name":"Campo do Meio","capital":0,"ibgeState":31,"siafi":4225,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1127,-45.8273]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bab"},"ibge":4104105,"name":"Campo do Tenente","capital":0,"ibgeState":41,"siafi":7479,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.98,-49.6844]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bac"},"ibge":4203501,"name":"Campo Erê","capital":0,"ibgeState":42,"siafi":8067,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.3931,-53.0856]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bad"},"ibge":3111408,"name":"Campo Florido","capital":0,"ibgeState":31,"siafi":4227,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7631,-48.5716]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bae"},"ibge":2906006,"name":"Campo Formoso","capital":0,"ibgeState":29,"siafi":3419,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.5105,-40.32]}} +{"_id":{"$oid":"66f9d5ad542d90c053666baf"},"ibge":2701506,"name":"Campo Grande","capital":0,"ibgeState":27,"siafi":2729,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.95542,-36.7926]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bb0"},"ibge":5002704,"name":"Campo Grande","capital":1,"ibgeState":50,"siafi":9051,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-20.4486,-54.6295]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bb1"},"ibge":2202133,"name":"Campo Grande do Piauí","capital":0,"ibgeState":22,"siafi":292,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.12827,-41.0315]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bb2"},"ibge":4104204,"name":"Campo Largo","capital":0,"ibgeState":41,"siafi":7481,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4525,-49.529]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bb3"},"ibge":2202174,"name":"Campo Largo do Piauí","capital":0,"ibgeState":22,"siafi":294,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.80441,-42.64]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bb4"},"ibge":5204854,"name":"Campo Limpo de Goiás","capital":0,"ibgeState":52,"siafi":1070,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.2971,-49.0895]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bb5"},"ibge":3509601,"name":"Campo Limpo Paulista","capital":0,"ibgeState":35,"siafi":6293,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2078,-46.7889]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bb6"},"ibge":4104253,"name":"Campo Magro","capital":0,"ibgeState":41,"siafi":842,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.3687,-49.4501]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bb7"},"ibge":2202208,"name":"Campo Maior","capital":0,"ibgeState":22,"siafi":1043,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.8217,-42.1641]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bb8"},"ibge":4104303,"name":"Campo Mourão","capital":0,"ibgeState":41,"siafi":7483,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.0463,-52.378]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bb9"},"ibge":4304002,"name":"Campo Novo","capital":0,"ibgeState":43,"siafi":8579,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6792,-53.8052]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bba"},"ibge":1100700,"name":"Campo Novo de Rondônia","capital":0,"ibgeState":11,"siafi":679,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.5712,-63.6266]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bbb"},"ibge":5102637,"name":"Campo Novo do Parecis","capital":0,"ibgeState":51,"siafi":9777,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-13.6587,-57.8907]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bbc"},"ibge":2402105,"name":"Campo Redondo","capital":0,"ibgeState":24,"siafi":1641,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.23829,-36.1888]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bbd"},"ibge":5102678,"name":"Campo Verde","capital":0,"ibgeState":51,"siafi":9779,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.545,-55.1626]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bbe"},"ibge":3111507,"name":"Campos Altos","capital":0,"ibgeState":31,"siafi":4229,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6914,-46.1725]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bbf"},"ibge":5204904,"name":"Campos Belos","capital":0,"ibgeState":52,"siafi":9297,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.035,-46.7681]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bc0"},"ibge":4304101,"name":"Campos Borges","capital":0,"ibgeState":43,"siafi":8445,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.8871,-53.0008]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bc1"},"ibge":5102686,"name":"Campos de Júlio","capital":0,"ibgeState":51,"siafi":1032,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-13.7242,-59.2858]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bc2"},"ibge":3509700,"name":"Campos do Jordão","capital":0,"ibgeState":35,"siafi":6295,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7296,-45.5833]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bc3"},"ibge":3301009,"name":"Campos dos Goytacazes","capital":0,"ibgeState":33,"siafi":5819,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7622,-41.3181]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bc4"},"ibge":3111606,"name":"Campos Gerais","capital":0,"ibgeState":31,"siafi":4231,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.237,-45.7569]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bc5"},"ibge":1703842,"name":"Campos Lindos","capital":0,"ibgeState":17,"siafi":173,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.98956,-46.8645]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bc6"},"ibge":4203600,"name":"Campos Novos","capital":0,"ibgeState":42,"siafi":8069,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4002,-51.2276]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bc7"},"ibge":3509809,"name":"Campos Novos Paulista","capital":0,"ibgeState":35,"siafi":6297,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.602,-49.9987]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bc8"},"ibge":2302701,"name":"Campos Sales","capital":0,"ibgeState":23,"siafi":1353,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.06761,-40.3687]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bc9"},"ibge":5204953,"name":"Campos Verdes","capital":0,"ibgeState":52,"siafi":9781,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.2442,-49.6528]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bca"},"ibge":2603603,"name":"Camutanga","capital":0,"ibgeState":26,"siafi":2371,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.40545,-35.2664]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bcb"},"ibge":3111903,"name":"Cana Verde","capital":0,"ibgeState":31,"siafi":4237,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0232,-45.1801]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bcc"},"ibge":3111705,"name":"Canaã","capital":0,"ibgeState":31,"siafi":4233,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6869,-42.6167]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bcd"},"ibge":1502152,"name":"Canaã dos Carajás","capital":0,"ibgeState":15,"siafi":48,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.49659,-49.8776]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bce"},"ibge":5102694,"name":"Canabrava do Norte","capital":0,"ibgeState":51,"siafi":129,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.0556,-51.8209]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bcf"},"ibge":3509908,"name":"Cananéia","capital":0,"ibgeState":35,"siafi":6299,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.0144,-47.9341]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bd0"},"ibge":2701605,"name":"Canapi","capital":0,"ibgeState":27,"siafi":2731,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.11932,-37.5967]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bd1"},"ibge":2906105,"name":"Canápolis","capital":0,"ibgeState":29,"siafi":3421,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.0725,-44.201]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bd2"},"ibge":3111804,"name":"Canápolis","capital":0,"ibgeState":31,"siafi":4235,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7212,-49.2035]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bd3"},"ibge":2906204,"name":"Canarana","capital":0,"ibgeState":29,"siafi":3423,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.6858,-41.7677]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bd4"},"ibge":5102702,"name":"Canarana","capital":0,"ibgeState":51,"siafi":9193,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-13.5515,-52.2705]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bd5"},"ibge":3509957,"name":"Canas","capital":0,"ibgeState":35,"siafi":794,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7003,-45.0521]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bd6"},"ibge":2202251,"name":"Canavieira","capital":0,"ibgeState":22,"siafi":2247,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.68821,-43.7233]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bd7"},"ibge":2906303,"name":"Canavieiras","capital":0,"ibgeState":29,"siafi":3425,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.6722,-38.9536]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bd8"},"ibge":2906402,"name":"Candeal","capital":0,"ibgeState":29,"siafi":3427,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.8049,-39.1203]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bd9"},"ibge":2906501,"name":"Candeias","capital":0,"ibgeState":29,"siafi":3429,"ddd":71,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.6716,-38.5472]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bda"},"ibge":3112000,"name":"Candeias","capital":0,"ibgeState":31,"siafi":4239,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7692,-45.2765]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bdb"},"ibge":1100809,"name":"Candeias do Jamari","capital":0,"ibgeState":11,"siafi":681,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-8.7907,-63.7005]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bdc"},"ibge":4304200,"name":"Candelária","capital":0,"ibgeState":43,"siafi":8581,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6684,-52.7895]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bdd"},"ibge":2906600,"name":"Candiba","capital":0,"ibgeState":29,"siafi":3431,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.4097,-42.8667]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bde"},"ibge":4104402,"name":"Cândido de Abreu","capital":0,"ibgeState":41,"siafi":7485,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.5649,-51.3372]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bdf"},"ibge":4304309,"name":"Cândido Godói","capital":0,"ibgeState":43,"siafi":8583,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9515,-54.7517]}} +{"_id":{"$oid":"66f9d5ad542d90c053666be0"},"ibge":2102606,"name":"Cândido Mendes","capital":0,"ibgeState":21,"siafi":749,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.43265,-45.7161]}} +{"_id":{"$oid":"66f9d5ad542d90c053666be1"},"ibge":3510005,"name":"Cândido Mota","capital":0,"ibgeState":35,"siafi":6301,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7471,-50.3873]}} +{"_id":{"$oid":"66f9d5ad542d90c053666be2"},"ibge":3510104,"name":"Cândido Rodrigues","capital":0,"ibgeState":35,"siafi":6303,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3275,-48.6327]}} +{"_id":{"$oid":"66f9d5ad542d90c053666be3"},"ibge":2906709,"name":"Cândido Sales","capital":0,"ibgeState":29,"siafi":3433,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.4993,-41.2414]}} +{"_id":{"$oid":"66f9d5ad542d90c053666be4"},"ibge":4304358,"name":"Candiota","capital":0,"ibgeState":43,"siafi":6083,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.5516,-53.6773]}} +{"_id":{"$oid":"66f9d5ad542d90c053666be5"},"ibge":4104428,"name":"Candói","capital":0,"ibgeState":41,"siafi":5499,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.5758,-52.0409]}} +{"_id":{"$oid":"66f9d5ad542d90c053666be6"},"ibge":4304408,"name":"Canela","capital":0,"ibgeState":43,"siafi":8585,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.356,-50.8119]}} +{"_id":{"$oid":"66f9d5ad542d90c053666be7"},"ibge":4203709,"name":"Canelinha","capital":0,"ibgeState":42,"siafi":8071,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2616,-48.7658]}} +{"_id":{"$oid":"66f9d5ad542d90c053666be8"},"ibge":2402204,"name":"Canguaretama","capital":0,"ibgeState":24,"siafi":1643,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.37193,-35.1281]}} +{"_id":{"$oid":"66f9d5ad542d90c053666be9"},"ibge":4304507,"name":"Canguçu","capital":0,"ibgeState":43,"siafi":8587,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.396,-52.6783]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bea"},"ibge":2801108,"name":"Canhoba","capital":0,"ibgeState":28,"siafi":3121,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.1365,-36.9806]}} +{"_id":{"$oid":"66f9d5ad542d90c053666beb"},"ibge":2603702,"name":"Canhotinho","capital":0,"ibgeState":26,"siafi":2373,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.87652,-36.1979]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bec"},"ibge":2302800,"name":"Canindé","capital":0,"ibgeState":23,"siafi":1355,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.35162,-39.3155]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bed"},"ibge":2801207,"name":"Canindé de São Francisco","capital":0,"ibgeState":28,"siafi":3123,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.64882,-37.7923]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bee"},"ibge":3510153,"name":"Canitar","capital":0,"ibgeState":35,"siafi":2947,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.004,-49.7839]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bef"},"ibge":4304606,"name":"Canoas","capital":0,"ibgeState":43,"siafi":8589,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.9128,-51.1857]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bf0"},"ibge":4203808,"name":"Canoinhas","capital":0,"ibgeState":42,"siafi":8073,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.1766,-50.395]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bf1"},"ibge":2906808,"name":"Cansanção","capital":0,"ibgeState":29,"siafi":3435,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.6647,-39.4944]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bf2"},"ibge":1400175,"name":"Cantá","capital":0,"ibgeState":14,"siafi":28,"ddd":95,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[2.60994,-60.6058]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bf3"},"ibge":3301108,"name":"Cantagalo","capital":0,"ibgeState":33,"siafi":5821,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9797,-42.3664]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bf4"},"ibge":4104451,"name":"Cantagalo","capital":0,"ibgeState":41,"siafi":8451,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.3734,-52.1198]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bf5"},"ibge":3112059,"name":"Cantagalo","capital":0,"ibgeState":31,"siafi":582,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5248,-42.6223]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bf6"},"ibge":2102705,"name":"Cantanhede","capital":0,"ibgeState":21,"siafi":751,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.63757,-44.383]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bf7"},"ibge":2202307,"name":"Canto do Buriti","capital":0,"ibgeState":22,"siafi":1045,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.1111,-42.9517]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bf8"},"ibge":2906824,"name":"Canudos","capital":0,"ibgeState":29,"siafi":3085,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.90014,-39.1471]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bf9"},"ibge":4304614,"name":"Canudos do Vale","capital":0,"ibgeState":43,"siafi":1130,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3271,-52.2374]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bfa"},"ibge":1300904,"name":"Canutama","capital":0,"ibgeState":13,"siafi":219,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-6.52582,-64.3953]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bfb"},"ibge":1502202,"name":"Capanema","capital":0,"ibgeState":15,"siafi":443,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.20529,-47.1778]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bfc"},"ibge":4104501,"name":"Capanema","capital":0,"ibgeState":41,"siafi":7487,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.6691,-53.8055]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bfd"},"ibge":4203253,"name":"Capão Alto","capital":0,"ibgeState":42,"siafi":906,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9389,-50.5098]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bfe"},"ibge":3510203,"name":"Capão Bonito","capital":0,"ibgeState":35,"siafi":6305,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.0113,-48.3482]}} +{"_id":{"$oid":"66f9d5ad542d90c053666bff"},"ibge":4304622,"name":"Capão Bonito do Sul","capital":0,"ibgeState":43,"siafi":1132,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.1254,-51.3961]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c00"},"ibge":4304630,"name":"Capão da Canoa","capital":0,"ibgeState":43,"siafi":8915,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.7642,-50.0282]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c01"},"ibge":4304655,"name":"Capão do Cipó","capital":0,"ibgeState":43,"siafi":1134,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.9312,-54.5558]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c02"},"ibge":4304663,"name":"Capão do Leão","capital":0,"ibgeState":43,"siafi":8973,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.7565,-52.4889]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c03"},"ibge":3112109,"name":"Caparaó","capital":0,"ibgeState":31,"siafi":4241,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5289,-41.9061]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c04"},"ibge":2701704,"name":"Capela","capital":0,"ibgeState":27,"siafi":2733,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.41504,-36.0826]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c05"},"ibge":2801306,"name":"Capela","capital":0,"ibgeState":28,"siafi":3125,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.5069,-37.0628]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c06"},"ibge":4304689,"name":"Capela de Santana","capital":0,"ibgeState":43,"siafi":8443,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6961,-51.328]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c07"},"ibge":3510302,"name":"Capela do Alto","capital":0,"ibgeState":35,"siafi":6307,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4685,-47.7388]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c08"},"ibge":2906857,"name":"Capela do Alto Alegre","capital":0,"ibgeState":29,"siafi":3081,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.6658,-39.8349]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c09"},"ibge":3112208,"name":"Capela Nova","capital":0,"ibgeState":31,"siafi":4243,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9179,-43.622]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c0a"},"ibge":3112307,"name":"Capelinha","capital":0,"ibgeState":31,"siafi":4245,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.6888,-42.5147]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c0b"},"ibge":3112406,"name":"Capetinga","capital":0,"ibgeState":31,"siafi":4247,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6163,-47.0571]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c0c"},"ibge":2504033,"name":"Capim","capital":0,"ibgeState":25,"siafi":464,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.91624,-35.1673]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c0d"},"ibge":3112505,"name":"Capim Branco","capital":0,"ibgeState":31,"siafi":4249,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5471,-44.1304]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c0e"},"ibge":2906873,"name":"Capim Grosso","capital":0,"ibgeState":29,"siafi":3083,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.3797,-40.0089]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c0f"},"ibge":3112604,"name":"Capinópolis","capital":0,"ibgeState":31,"siafi":4251,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.6862,-49.5706]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c10"},"ibge":4203907,"name":"Capinzal","capital":0,"ibgeState":42,"siafi":8075,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3473,-51.6057]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c11"},"ibge":2102754,"name":"Capinzal do Norte","capital":0,"ibgeState":21,"siafi":142,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.7236,-44.328]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c12"},"ibge":2302909,"name":"Capistrano","capital":0,"ibgeState":23,"siafi":1357,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.45569,-38.9048]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c13"},"ibge":4304697,"name":"Capitão","capital":0,"ibgeState":43,"siafi":6025,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.2674,-51.9853]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c14"},"ibge":3112653,"name":"Capitão Andrade","capital":0,"ibgeState":31,"siafi":2651,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.0748,-41.8614]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c15"},"ibge":2202406,"name":"Capitão de Campos","capital":0,"ibgeState":22,"siafi":1047,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.457,-41.944]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c16"},"ibge":3112703,"name":"Capitão Enéas","capital":0,"ibgeState":31,"siafi":4253,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.3265,-43.7084]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c17"},"ibge":2202455,"name":"Capitão Gervásio Oliveira","capital":0,"ibgeState":22,"siafi":296,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.49655,-41.814]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c18"},"ibge":4104600,"name":"Capitão Leônidas Marques","capital":0,"ibgeState":41,"siafi":7489,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4816,-53.6112]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c19"},"ibge":1502301,"name":"Capitão Poço","capital":0,"ibgeState":15,"siafi":445,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.74785,-47.0629]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c1a"},"ibge":3112802,"name":"Capitólio","capital":0,"ibgeState":31,"siafi":4255,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6164,-46.0493]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c1b"},"ibge":3510401,"name":"Capivari","capital":0,"ibgeState":35,"siafi":6309,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9951,-47.5071]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c1c"},"ibge":4203956,"name":"Capivari de Baixo","capital":0,"ibgeState":42,"siafi":5545,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.4498,-48.9631]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c1d"},"ibge":4304671,"name":"Capivari do Sul","capital":0,"ibgeState":43,"siafi":962,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.1383,-50.5152]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c1e"},"ibge":1200179,"name":"Capixaba","capital":0,"ibgeState":12,"siafi":647,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-10.566,-67.686]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c1f"},"ibge":2603801,"name":"Capoeiras","capital":0,"ibgeState":26,"siafi":2375,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.73423,-36.6306]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c20"},"ibge":3112901,"name":"Caputira","capital":0,"ibgeState":31,"siafi":4257,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1703,-42.2683]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c21"},"ibge":4304713,"name":"Caraá","capital":0,"ibgeState":43,"siafi":964,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.7869,-50.4316]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c22"},"ibge":1400209,"name":"Caracaraí","capital":0,"ibgeState":14,"siafi":303,"ddd":95,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[1.82766,-61.1304]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c23"},"ibge":2202505,"name":"Caracol","capital":0,"ibgeState":22,"siafi":1049,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.27933,-43.329]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c24"},"ibge":5002803,"name":"Caracol","capital":0,"ibgeState":50,"siafi":9053,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.011,-57.0277]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c25"},"ibge":3510500,"name":"Caraguatatuba","capital":0,"ibgeState":35,"siafi":6311,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6125,-45.4125]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c26"},"ibge":3113008,"name":"Caraí","capital":0,"ibgeState":31,"siafi":4259,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.1862,-41.7004]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c27"},"ibge":2906899,"name":"Caraíbas","capital":0,"ibgeState":29,"siafi":3271,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.7177,-41.2603]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c28"},"ibge":4104659,"name":"Carambeí","capital":0,"ibgeState":41,"siafi":844,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.9152,-50.0986]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c29"},"ibge":3113107,"name":"Caranaíba","capital":0,"ibgeState":31,"siafi":4261,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8707,-43.7417]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c2a"},"ibge":3113206,"name":"Carandaí","capital":0,"ibgeState":31,"siafi":4263,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9566,-43.811]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c2b"},"ibge":3113305,"name":"Carangola","capital":0,"ibgeState":31,"siafi":4265,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7343,-42.0313]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c2c"},"ibge":3300936,"name":"Carapebus","capital":0,"ibgeState":33,"siafi":772,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1821,-41.663]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c2d"},"ibge":3510609,"name":"Carapicuíba","capital":0,"ibgeState":35,"siafi":6313,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5235,-46.8407]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c2e"},"ibge":3113404,"name":"Caratinga","capital":0,"ibgeState":31,"siafi":4267,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7868,-42.1292]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c2f"},"ibge":1301001,"name":"Carauari","capital":0,"ibgeState":13,"siafi":221,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-4.88161,-66.9086]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c30"},"ibge":2402303,"name":"Caraúbas","capital":0,"ibgeState":24,"siafi":1645,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.78387,-37.5586]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c31"},"ibge":2504074,"name":"Caraúbas","capital":0,"ibgeState":25,"siafi":466,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.72049,-36.492]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c32"},"ibge":2202539,"name":"Caraúbas do Piauí","capital":0,"ibgeState":22,"siafi":298,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.47525,-41.8425]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c33"},"ibge":2906907,"name":"Caravelas","capital":0,"ibgeState":29,"siafi":3437,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.7268,-39.2597]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c34"},"ibge":4304705,"name":"Carazinho","capital":0,"ibgeState":43,"siafi":8591,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.2958,-52.7933]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c35"},"ibge":3113503,"name":"Carbonita","capital":0,"ibgeState":31,"siafi":4269,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.5255,-43.0137]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c36"},"ibge":2907004,"name":"Cardeal da Silva","capital":0,"ibgeState":29,"siafi":3439,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.9472,-37.9469]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c37"},"ibge":3510708,"name":"Cardoso","capital":0,"ibgeState":35,"siafi":6315,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.08,-49.9183]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c38"},"ibge":3301157,"name":"Cardoso Moreira","capital":0,"ibgeState":33,"siafi":2915,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4846,-41.6165]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c39"},"ibge":3113602,"name":"Careaçu","capital":0,"ibgeState":31,"siafi":4271,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0424,-45.696]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c3a"},"ibge":1301100,"name":"Careiro","capital":0,"ibgeState":13,"siafi":223,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.76803,-60.369]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c3b"},"ibge":1301159,"name":"Careiro da Várzea","capital":0,"ibgeState":13,"siafi":965,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.314,-59.5557]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c3c"},"ibge":3201308,"name":"Cariacica","capital":0,"ibgeState":32,"siafi":5625,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2632,-40.4165]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c3d"},"ibge":2303006,"name":"Caridade","capital":0,"ibgeState":23,"siafi":1359,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.22514,-39.1912]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c3e"},"ibge":2202554,"name":"Caridade do Piauí","capital":0,"ibgeState":22,"siafi":300,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.73435,-40.9848]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c3f"},"ibge":2907103,"name":"Carinhanha","capital":0,"ibgeState":29,"siafi":3441,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.2985,-43.7724]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c40"},"ibge":2801405,"name":"Carira","capital":0,"ibgeState":28,"siafi":3127,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.3524,-37.7002]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c41"},"ibge":2303105,"name":"Cariré","capital":0,"ibgeState":23,"siafi":1361,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.94858,-40.476]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c42"},"ibge":1703867,"name":"Cariri do Tocantins","capital":0,"ibgeState":17,"siafi":327,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.8881,-49.1609]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c43"},"ibge":2303204,"name":"Caririaçu","capital":0,"ibgeState":23,"siafi":1363,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.02808,-39.2828]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c44"},"ibge":2303303,"name":"Cariús","capital":0,"ibgeState":23,"siafi":1365,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.52428,-39.4916]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c45"},"ibge":5102793,"name":"Carlinda","capital":0,"ibgeState":51,"siafi":1034,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-9.94912,-55.8417]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c46"},"ibge":4104709,"name":"Carlópolis","capital":0,"ibgeState":41,"siafi":7491,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4269,-49.7235]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c47"},"ibge":4304804,"name":"Carlos Barbosa","capital":0,"ibgeState":43,"siafi":8593,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.2969,-51.5028]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c48"},"ibge":3113701,"name":"Carlos Chagas","capital":0,"ibgeState":31,"siafi":4273,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.6973,-40.7723]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c49"},"ibge":4304853,"name":"Carlos Gomes","capital":0,"ibgeState":43,"siafi":5961,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7167,-51.9121]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c4a"},"ibge":3113800,"name":"Carmésia","capital":0,"ibgeState":31,"siafi":4275,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.0877,-43.1382]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c4b"},"ibge":3301207,"name":"Carmo","capital":0,"ibgeState":33,"siafi":5823,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.931,-42.6046]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c4c"},"ibge":3113909,"name":"Carmo da Cachoeira","capital":0,"ibgeState":31,"siafi":4277,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4633,-45.2201]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c4d"},"ibge":3114006,"name":"Carmo da Mata","capital":0,"ibgeState":31,"siafi":4279,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5575,-44.8735]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c4e"},"ibge":3114105,"name":"Carmo de Minas","capital":0,"ibgeState":31,"siafi":4281,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1204,-45.1307]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c4f"},"ibge":3114204,"name":"Carmo do Cajuru","capital":0,"ibgeState":31,"siafi":4283,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1912,-44.7664]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c50"},"ibge":3114303,"name":"Carmo do Paranaíba","capital":0,"ibgeState":31,"siafi":4285,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.991,-46.3167]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c51"},"ibge":3114402,"name":"Carmo do Rio Claro","capital":0,"ibgeState":31,"siafi":4287,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9736,-46.1149]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c52"},"ibge":5205000,"name":"Carmo do Rio Verde","capital":0,"ibgeState":52,"siafi":9299,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.3549,-49.708]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c53"},"ibge":1703883,"name":"Carmolândia","capital":0,"ibgeState":17,"siafi":175,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.03262,-48.3978]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c54"},"ibge":2801504,"name":"Carmópolis","capital":0,"ibgeState":28,"siafi":3129,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.6449,-36.9887]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c55"},"ibge":3114501,"name":"Carmópolis de Minas","capital":0,"ibgeState":31,"siafi":4289,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5396,-44.6336]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c56"},"ibge":2603900,"name":"Carnaíba","capital":0,"ibgeState":26,"siafi":2377,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.79342,-37.7946]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c57"},"ibge":2402402,"name":"Carnaúba dos Dantas","capital":0,"ibgeState":24,"siafi":1647,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.55015,-36.5868]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c58"},"ibge":2402501,"name":"Carnaubais","capital":0,"ibgeState":24,"siafi":1649,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.34181,-36.8335]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c59"},"ibge":2303402,"name":"Carnaubal","capital":0,"ibgeState":23,"siafi":1367,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.15985,-40.9413]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c5a"},"ibge":2603926,"name":"Carnaubeira da Penha","capital":0,"ibgeState":26,"siafi":2635,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.31799,-38.7512]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c5b"},"ibge":3114550,"name":"Carneirinho","capital":0,"ibgeState":31,"siafi":2685,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6987,-50.6894]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c5c"},"ibge":2701803,"name":"Carneiros","capital":0,"ibgeState":27,"siafi":2735,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.48476,-37.3773]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c5d"},"ibge":1400233,"name":"Caroebe","capital":0,"ibgeState":14,"siafi":30,"ddd":95,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[0.884203,-59.6959]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c5e"},"ibge":2102804,"name":"Carolina","capital":0,"ibgeState":21,"siafi":753,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.33584,-47.4634]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c5f"},"ibge":2604007,"name":"Carpina","capital":0,"ibgeState":26,"siafi":2379,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.84566,-35.2514]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c60"},"ibge":3114600,"name":"Carrancas","capital":0,"ibgeState":31,"siafi":4291,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4898,-44.6446]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c61"},"ibge":2504108,"name":"Carrapateira","capital":0,"ibgeState":25,"siafi":1983,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.03414,-38.3399]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c62"},"ibge":1703891,"name":"Carrasco Bonito","capital":0,"ibgeState":17,"siafi":177,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.31415,-48.0314]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c63"},"ibge":2604106,"name":"Caruaru","capital":0,"ibgeState":26,"siafi":2381,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.28455,-35.9699]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c64"},"ibge":2102903,"name":"Carutapera","capital":0,"ibgeState":21,"siafi":755,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.19696,-46.0085]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c65"},"ibge":3114709,"name":"Carvalhópolis","capital":0,"ibgeState":31,"siafi":4293,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7735,-45.8421]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c66"},"ibge":3114808,"name":"Carvalhos","capital":0,"ibgeState":31,"siafi":4295,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22,-44.4632]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c67"},"ibge":3510807,"name":"Casa Branca","capital":0,"ibgeState":35,"siafi":6317,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7708,-47.0852]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c68"},"ibge":3114907,"name":"Casa Grande","capital":0,"ibgeState":31,"siafi":4297,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7925,-43.9343]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c69"},"ibge":2907202,"name":"Casa Nova","capital":0,"ibgeState":29,"siafi":3443,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.16408,-40.974]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c6a"},"ibge":4304903,"name":"Casca","capital":0,"ibgeState":43,"siafi":8595,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5605,-51.9815]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c6b"},"ibge":3115003,"name":"Cascalho Rico","capital":0,"ibgeState":31,"siafi":4299,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5772,-47.8716]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c6c"},"ibge":4104808,"name":"Cascavel","capital":0,"ibgeState":41,"siafi":7493,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.9573,-53.459]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c6d"},"ibge":2303501,"name":"Cascavel","capital":0,"ibgeState":23,"siafi":1369,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.12967,-38.2412]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c6e"},"ibge":1703909,"name":"Caseara","capital":0,"ibgeState":17,"siafi":9717,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.27612,-49.9521]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c6f"},"ibge":4304952,"name":"Caseiros","capital":0,"ibgeState":43,"siafi":8441,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.2582,-51.6861]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c70"},"ibge":3301306,"name":"Casimiro de Abreu","capital":0,"ibgeState":33,"siafi":5825,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4812,-42.2066]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c71"},"ibge":2604155,"name":"Casinhas","capital":0,"ibgeState":26,"siafi":546,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.74084,-35.7206]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c72"},"ibge":2504157,"name":"Casserengue","capital":0,"ibgeState":25,"siafi":468,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.77954,-35.8179]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c73"},"ibge":3115102,"name":"Cássia","capital":0,"ibgeState":31,"siafi":4301,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5831,-46.9201]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c74"},"ibge":3510906,"name":"Cássia dos Coqueiros","capital":0,"ibgeState":35,"siafi":6319,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2801,-47.1643]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c75"},"ibge":5002902,"name":"Cassilândia","capital":0,"ibgeState":50,"siafi":9057,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-19.1179,-51.7313]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c76"},"ibge":1502400,"name":"Castanhal","capital":0,"ibgeState":15,"siafi":447,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.29797,-47.9167]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c77"},"ibge":5102850,"name":"Castanheira","capital":0,"ibgeState":51,"siafi":9783,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.1251,-58.6081]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c78"},"ibge":1100908,"name":"Castanheiras","capital":0,"ibgeState":11,"siafi":691,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.4253,-61.9482]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c79"},"ibge":5205059,"name":"Castelândia","capital":0,"ibgeState":52,"siafi":81,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.0921,-50.203]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c7a"},"ibge":3201407,"name":"Castelo","capital":0,"ibgeState":32,"siafi":5627,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6033,-41.2031]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c7b"},"ibge":2202604,"name":"Castelo do Piauí","capital":0,"ibgeState":22,"siafi":1051,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.31869,-41.5499]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c7c"},"ibge":3511003,"name":"Castilho","capital":0,"ibgeState":35,"siafi":6321,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8689,-51.4884]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c7d"},"ibge":4104907,"name":"Castro","capital":0,"ibgeState":41,"siafi":7495,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.7891,-50.0108]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c7e"},"ibge":2907301,"name":"Castro Alves","capital":0,"ibgeState":29,"siafi":3445,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.7579,-39.4248]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c7f"},"ibge":3115300,"name":"Cataguases","capital":0,"ibgeState":31,"siafi":4305,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3924,-42.6896]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c80"},"ibge":5205109,"name":"Catalão","capital":0,"ibgeState":52,"siafi":9301,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.1656,-47.944]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c81"},"ibge":3511102,"name":"Catanduva","capital":0,"ibgeState":35,"siafi":6323,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1314,-48.977]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c82"},"ibge":4105003,"name":"Catanduvas","capital":0,"ibgeState":41,"siafi":7497,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.2044,-53.1548]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c83"},"ibge":4204004,"name":"Catanduvas","capital":0,"ibgeState":42,"siafi":8077,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.069,-51.6602]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c84"},"ibge":2303600,"name":"Catarina","capital":0,"ibgeState":23,"siafi":1371,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.12291,-39.8736]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c85"},"ibge":3115359,"name":"Catas Altas","capital":0,"ibgeState":31,"siafi":584,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0734,-43.4061]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c86"},"ibge":3115409,"name":"Catas Altas da Noruega","capital":0,"ibgeState":31,"siafi":4307,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6901,-43.4939]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c87"},"ibge":2604205,"name":"Catende","capital":0,"ibgeState":26,"siafi":2383,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.67509,-35.7024]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c88"},"ibge":3511201,"name":"Catiguá","capital":0,"ibgeState":35,"siafi":6325,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0519,-49.0616]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c89"},"ibge":2504207,"name":"Catingueira","capital":0,"ibgeState":25,"siafi":1985,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.12008,-37.6064]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c8a"},"ibge":2907400,"name":"Catolândia","capital":0,"ibgeState":29,"siafi":3447,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.31,-44.8648]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c8b"},"ibge":2504306,"name":"Catolé do Rocha","capital":0,"ibgeState":25,"siafi":1987,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.34062,-37.747]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c8c"},"ibge":2907509,"name":"Catu","capital":0,"ibgeState":29,"siafi":3449,"ddd":71,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.3513,-38.3791]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c8d"},"ibge":4305009,"name":"Catuípe","capital":0,"ibgeState":43,"siafi":8597,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.2554,-54.0132]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c8e"},"ibge":3115458,"name":"Catuji","capital":0,"ibgeState":31,"siafi":2653,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.3018,-41.5276]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c8f"},"ibge":2303659,"name":"Catunda","capital":0,"ibgeState":23,"siafi":983,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.64336,-40.2]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c90"},"ibge":5205208,"name":"Caturaí","capital":0,"ibgeState":52,"siafi":9303,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.4447,-49.4936]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c91"},"ibge":2907558,"name":"Caturama","capital":0,"ibgeState":29,"siafi":3273,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.3239,-42.2904]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c92"},"ibge":2504355,"name":"Caturité","capital":0,"ibgeState":25,"siafi":470,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.41659,-36.0306]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c93"},"ibge":3115474,"name":"Catuti","capital":0,"ibgeState":31,"siafi":586,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.3616,-42.9627]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c94"},"ibge":2303709,"name":"Caucaia","capital":0,"ibgeState":23,"siafi":1373,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.72797,-38.6619]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c95"},"ibge":5205307,"name":"Cavalcante","capital":0,"ibgeState":52,"siafi":9305,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.7976,-47.4566]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c96"},"ibge":3115508,"name":"Caxambu","capital":0,"ibgeState":31,"siafi":4309,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9753,-44.9319]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c97"},"ibge":4204103,"name":"Caxambu do Sul","capital":0,"ibgeState":42,"siafi":8079,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1624,-52.8807]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c98"},"ibge":2103000,"name":"Caxias","capital":0,"ibgeState":21,"siafi":757,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.86505,-43.3617]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c99"},"ibge":4305108,"name":"Caxias do Sul","capital":0,"ibgeState":43,"siafi":8599,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.1629,-51.1792]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c9a"},"ibge":2202653,"name":"Caxingó","capital":0,"ibgeState":22,"siafi":302,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.41904,-41.8955]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c9b"},"ibge":2402600,"name":"Ceará-Mirim","capital":0,"ibgeState":24,"siafi":1651,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.64323,-35.4247]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c9c"},"ibge":2103109,"name":"Cedral","capital":0,"ibgeState":21,"siafi":759,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.00027,-44.5281]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c9d"},"ibge":3511300,"name":"Cedral","capital":0,"ibgeState":35,"siafi":6327,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9009,-49.2664]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c9e"},"ibge":2303808,"name":"Cedro","capital":0,"ibgeState":23,"siafi":1375,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.60034,-39.0609]}} +{"_id":{"$oid":"66f9d5ad542d90c053666c9f"},"ibge":2604304,"name":"Cedro","capital":0,"ibgeState":26,"siafi":2385,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.71179,-39.2367]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ca0"},"ibge":2801603,"name":"Cedro de São João","capital":0,"ibgeState":28,"siafi":3131,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.2534,-36.8856]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ca1"},"ibge":3115607,"name":"Cedro do Abaeté","capital":0,"ibgeState":31,"siafi":4311,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.1458,-45.712]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ca2"},"ibge":4204152,"name":"Celso Ramos","capital":0,"ibgeState":42,"siafi":9943,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6327,-51.335]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ca3"},"ibge":4305116,"name":"Centenário","capital":0,"ibgeState":43,"siafi":5963,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7615,-51.9984]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ca4"},"ibge":1704105,"name":"Centenário","capital":0,"ibgeState":17,"siafi":343,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.96103,-47.3304]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ca5"},"ibge":4105102,"name":"Centenário do Sul","capital":0,"ibgeState":41,"siafi":7499,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8188,-51.5973]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ca6"},"ibge":2907608,"name":"Central","capital":0,"ibgeState":29,"siafi":3451,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.1376,-42.1116]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ca7"},"ibge":3115706,"name":"Central de Minas","capital":0,"ibgeState":31,"siafi":4313,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7612,-41.3143]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ca8"},"ibge":2103125,"name":"Central do Maranhão","capital":0,"ibgeState":21,"siafi":144,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.19831,-44.8254]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ca9"},"ibge":3115805,"name":"Centralina","capital":0,"ibgeState":31,"siafi":4315,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5852,-49.2014]}} +{"_id":{"$oid":"66f9d5ad542d90c053666caa"},"ibge":2103158,"name":"Centro do Guilherme","capital":0,"ibgeState":21,"siafi":146,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.44891,-46.0345]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cab"},"ibge":2103174,"name":"Centro Novo do Maranhão","capital":0,"ibgeState":21,"siafi":148,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.12696,-46.1228]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cac"},"ibge":1100056,"name":"Cerejeiras","capital":0,"ibgeState":11,"siafi":27,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-13.187,-60.8168]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cad"},"ibge":5205406,"name":"Ceres","capital":0,"ibgeState":52,"siafi":9307,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.3061,-49.6]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cae"},"ibge":3511409,"name":"Cerqueira César","capital":0,"ibgeState":35,"siafi":6329,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.038,-49.1655]}} +{"_id":{"$oid":"66f9d5ad542d90c053666caf"},"ibge":3511508,"name":"Cerquilho","capital":0,"ibgeState":35,"siafi":6331,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1665,-47.7459]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cb0"},"ibge":4305124,"name":"Cerrito","capital":0,"ibgeState":43,"siafi":966,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.8419,-52.8004]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cb1"},"ibge":4105201,"name":"Cerro Azul","capital":0,"ibgeState":41,"siafi":7501,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.0891,-52.8691]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cb2"},"ibge":4305132,"name":"Cerro Branco","capital":0,"ibgeState":43,"siafi":8439,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.657,-52.9406]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cb3"},"ibge":2402709,"name":"Cerro Corá","capital":0,"ibgeState":24,"siafi":1653,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.03503,-36.3503]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cb4"},"ibge":4305157,"name":"Cerro Grande","capital":0,"ibgeState":43,"siafi":8437,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6106,-53.1672]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cb5"},"ibge":4305173,"name":"Cerro Grande do Sul","capital":0,"ibgeState":43,"siafi":8435,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.5905,-51.7418]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cb6"},"ibge":4305207,"name":"Cerro Largo","capital":0,"ibgeState":43,"siafi":8601,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.1463,-54.7428]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cb7"},"ibge":4204178,"name":"Cerro Negro","capital":0,"ibgeState":42,"siafi":5567,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7942,-50.8673]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cb8"},"ibge":3511607,"name":"Cesário Lange","capital":0,"ibgeState":35,"siafi":6333,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.226,-47.9545]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cb9"},"ibge":4105300,"name":"Céu Azul","capital":0,"ibgeState":41,"siafi":7957,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.1489,-53.8415]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cba"},"ibge":5205455,"name":"Cezarina","capital":0,"ibgeState":52,"siafi":9785,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.9718,-49.7758]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cbb"},"ibge":2604403,"name":"Chã de Alegria","capital":0,"ibgeState":26,"siafi":2387,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.00679,-35.204]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cbc"},"ibge":2604502,"name":"Chã Grande","capital":0,"ibgeState":26,"siafi":2389,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.23827,-35.4571]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cbd"},"ibge":2701902,"name":"Chã Preta","capital":0,"ibgeState":27,"siafi":2737,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.2556,-36.2983]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cbe"},"ibge":3115904,"name":"Chácara","capital":0,"ibgeState":31,"siafi":4317,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6733,-43.215]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cbf"},"ibge":3116001,"name":"Chalé","capital":0,"ibgeState":31,"siafi":4319,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0453,-41.6897]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cc0"},"ibge":4305306,"name":"Chapada","capital":0,"ibgeState":43,"siafi":8603,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.0559,-53.0665]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cc1"},"ibge":1705102,"name":"Chapada da Natividade","capital":0,"ibgeState":17,"siafi":80,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.6175,-47.7486]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cc2"},"ibge":1704600,"name":"Chapada de Areia","capital":0,"ibgeState":17,"siafi":78,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.1419,-49.1403]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cc3"},"ibge":3116100,"name":"Chapada do Norte","capital":0,"ibgeState":31,"siafi":4321,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.0881,-42.5392]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cc4"},"ibge":5103007,"name":"Chapada dos Guimarães","capital":0,"ibgeState":51,"siafi":9059,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.4643,-55.7499]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cc5"},"ibge":3116159,"name":"Chapada Gaúcha","capital":0,"ibgeState":31,"siafi":588,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.3014,-45.6116]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cc6"},"ibge":5205471,"name":"Chapadão do Céu","capital":0,"ibgeState":52,"siafi":73,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4073,-52.549]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cc7"},"ibge":4204194,"name":"Chapadão do Lageado","capital":0,"ibgeState":42,"siafi":908,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5905,-49.5539]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cc8"},"ibge":5002951,"name":"Chapadão do Sul","capital":0,"ibgeState":50,"siafi":9787,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-18.788,-52.6263]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cc9"},"ibge":2103208,"name":"Chapadinha","capital":0,"ibgeState":21,"siafi":761,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.73875,-43.3538]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cca"},"ibge":4204202,"name":"Chapecó","capital":0,"ibgeState":42,"siafi":8081,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1004,-52.6152]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ccb"},"ibge":3511706,"name":"Charqueada","capital":0,"ibgeState":35,"siafi":6335,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5096,-47.7755]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ccc"},"ibge":4305355,"name":"Charqueadas","capital":0,"ibgeState":43,"siafi":8693,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.9625,-51.6289]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ccd"},"ibge":4305371,"name":"Charrua","capital":0,"ibgeState":43,"siafi":5965,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9493,-52.015]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cce"},"ibge":2303907,"name":"Chaval","capital":0,"ibgeState":23,"siafi":1377,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.03571,-41.2435]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ccf"},"ibge":3557204,"name":"Chavantes","capital":0,"ibgeState":35,"siafi":6337,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0366,-49.7096]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cd0"},"ibge":1502509,"name":"Chaves","capital":0,"ibgeState":15,"siafi":449,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.164154,-49.987]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cd1"},"ibge":3116209,"name":"Chiador","capital":0,"ibgeState":31,"siafi":4323,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9996,-43.0617]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cd2"},"ibge":4305405,"name":"Chiapetta","capital":0,"ibgeState":43,"siafi":8605,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.923,-53.9419]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cd3"},"ibge":4105409,"name":"Chopinzinho","capital":0,"ibgeState":41,"siafi":7503,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.8515,-52.5173]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cd4"},"ibge":2303931,"name":"Choró","capital":0,"ibgeState":23,"siafi":993,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.83906,-39.1344]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cd5"},"ibge":2303956,"name":"Chorozinho","capital":0,"ibgeState":23,"siafi":1239,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.28873,-38.4986]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cd6"},"ibge":2907707,"name":"Chorrochó","capital":0,"ibgeState":29,"siafi":3453,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.9695,-39.0979]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cd7"},"ibge":4305439,"name":"Chuí","capital":0,"ibgeState":43,"siafi":968,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-33.6866,-53.4594]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cd8"},"ibge":1100924,"name":"Chupinguaia","capital":0,"ibgeState":11,"siafi":6,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.5611,-60.8877]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cd9"},"ibge":4305447,"name":"Chuvisca","capital":0,"ibgeState":43,"siafi":970,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.7504,-51.9737]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cda"},"ibge":4105508,"name":"Cianorte","capital":0,"ibgeState":41,"siafi":7505,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6599,-52.6054]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cdb"},"ibge":2907806,"name":"Cícero Dantas","capital":0,"ibgeState":29,"siafi":3455,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.5897,-38.3794]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cdc"},"ibge":4105607,"name":"Cidade Gaúcha","capital":0,"ibgeState":41,"siafi":7507,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3772,-52.9436]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cdd"},"ibge":5205497,"name":"Cidade Ocidental","capital":0,"ibgeState":52,"siafi":77,"ddd":61,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0765,-47.9252]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cde"},"ibge":2103257,"name":"Cidelândia","capital":0,"ibgeState":21,"siafi":150,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.17465,-47.7781]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cdf"},"ibge":4305454,"name":"Cidreira","capital":0,"ibgeState":43,"siafi":8433,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.1604,-50.2337]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ce0"},"ibge":2907905,"name":"Cipó","capital":0,"ibgeState":29,"siafi":3457,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.1032,-38.5179]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ce1"},"ibge":3116308,"name":"Cipotânea","capital":0,"ibgeState":31,"siafi":4325,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9026,-43.3629]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ce2"},"ibge":4305504,"name":"Ciríaco","capital":0,"ibgeState":43,"siafi":8607,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3419,-51.8741]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ce3"},"ibge":3116407,"name":"Claraval","capital":0,"ibgeState":31,"siafi":4327,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.397,-47.2768]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ce4"},"ibge":3116506,"name":"Claro dos Poções","capital":0,"ibgeState":31,"siafi":4329,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.082,-44.2061]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ce5"},"ibge":5103056,"name":"Cláudia","capital":0,"ibgeState":51,"siafi":9789,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.5075,-54.8835]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ce6"},"ibge":3116605,"name":"Cláudio","capital":0,"ibgeState":31,"siafi":4331,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4437,-44.7673]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ce7"},"ibge":3511904,"name":"Clementina","capital":0,"ibgeState":35,"siafi":6339,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5604,-50.4525]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ce8"},"ibge":4105706,"name":"Clevelândia","capital":0,"ibgeState":41,"siafi":7509,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.4043,-52.3508]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ce9"},"ibge":2908002,"name":"Coaraci","capital":0,"ibgeState":29,"siafi":3459,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.637,-39.5556]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cea"},"ibge":1301209,"name":"Coari","capital":0,"ibgeState":13,"siafi":225,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-4.09412,-63.1441]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ceb"},"ibge":2202703,"name":"Cocal","capital":0,"ibgeState":22,"siafi":1053,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.47279,-41.5546]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cec"},"ibge":2202711,"name":"Cocal de Telha","capital":0,"ibgeState":22,"siafi":304,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.5571,-41.9587]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ced"},"ibge":4204251,"name":"Cocal do Sul","capital":0,"ibgeState":42,"siafi":5543,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5986,-49.3335]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cee"},"ibge":2202729,"name":"Cocal dos Alves","capital":0,"ibgeState":22,"siafi":306,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.62047,-41.4402]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cef"},"ibge":5103106,"name":"Cocalinho","capital":0,"ibgeState":51,"siafi":9865,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.3903,-51.0001]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cf0"},"ibge":5205513,"name":"Cocalzinho de Goiás","capital":0,"ibgeState":52,"siafi":55,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.7914,-48.7747]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cf1"},"ibge":2908101,"name":"Cocos","capital":0,"ibgeState":29,"siafi":3461,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.1814,-44.5352]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cf2"},"ibge":1301308,"name":"Codajás","capital":0,"ibgeState":13,"siafi":227,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.83053,-62.0658]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cf3"},"ibge":2103307,"name":"Codó","capital":0,"ibgeState":21,"siafi":763,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.45562,-43.8924]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cf4"},"ibge":2103406,"name":"Coelho Neto","capital":0,"ibgeState":21,"siafi":765,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.25245,-43.0108]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cf5"},"ibge":3116704,"name":"Coimbra","capital":0,"ibgeState":31,"siafi":4333,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8535,-42.8008]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cf6"},"ibge":2702009,"name":"Coité do Nóia","capital":0,"ibgeState":27,"siafi":2739,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.63348,-36.5845]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cf7"},"ibge":2202737,"name":"Coivaras","capital":0,"ibgeState":22,"siafi":995,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.09224,-42.208]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cf8"},"ibge":1502608,"name":"Colares","capital":0,"ibgeState":15,"siafi":451,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.936423,-48.2803]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cf9"},"ibge":3201506,"name":"Colatina","capital":0,"ibgeState":32,"siafi":5629,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5493,-40.6269]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cfa"},"ibge":5103205,"name":"Colíder","capital":0,"ibgeState":51,"siafi":8979,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.8135,-55.461]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cfb"},"ibge":3512001,"name":"Colina","capital":0,"ibgeState":35,"siafi":6341,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7114,-48.5387]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cfc"},"ibge":4305587,"name":"Colinas","capital":0,"ibgeState":43,"siafi":6029,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3948,-51.8556]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cfd"},"ibge":2103505,"name":"Colinas","capital":0,"ibgeState":21,"siafi":767,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.03199,-44.2543]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cfe"},"ibge":5205521,"name":"Colinas do Sul","capital":0,"ibgeState":52,"siafi":9791,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.1528,-48.076]}} +{"_id":{"$oid":"66f9d5ad542d90c053666cff"},"ibge":1705508,"name":"Colinas do Tocantins","capital":0,"ibgeState":17,"siafi":9311,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.05764,-48.4757]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d00"},"ibge":1716703,"name":"Colméia","capital":0,"ibgeState":17,"siafi":9529,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.72463,-48.7638]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d01"},"ibge":5103254,"name":"Colniza","capital":0,"ibgeState":51,"siafi":1080,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-9.46121,-59.2252]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d02"},"ibge":3512100,"name":"Colômbia","capital":0,"ibgeState":35,"siafi":6343,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1768,-48.6865]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d03"},"ibge":4105805,"name":"Colombo","capital":0,"ibgeState":41,"siafi":7513,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.2925,-49.2262]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d04"},"ibge":2202752,"name":"Colônia do Gurguéia","capital":0,"ibgeState":22,"siafi":2249,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.1837,-43.794]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d05"},"ibge":2202778,"name":"Colônia do Piauí","capital":0,"ibgeState":22,"siafi":2253,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.22651,-42.1756]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d06"},"ibge":2702108,"name":"Colônia Leopoldina","capital":0,"ibgeState":27,"siafi":2741,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.91806,-35.7214]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d07"},"ibge":4305603,"name":"Colorado","capital":0,"ibgeState":43,"siafi":8609,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5258,-52.9928]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d08"},"ibge":4105904,"name":"Colorado","capital":0,"ibgeState":41,"siafi":7515,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8374,-51.9743]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d09"},"ibge":1100064,"name":"Colorado do Oeste","capital":0,"ibgeState":11,"siafi":23,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-13.1174,-60.5454]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d0a"},"ibge":3116803,"name":"Coluna","capital":0,"ibgeState":31,"siafi":4335,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.2311,-42.8352]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d0b"},"ibge":1705557,"name":"Combinado","capital":0,"ibgeState":17,"siafi":9697,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.7917,-46.5388]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d0c"},"ibge":3116902,"name":"Comendador Gomes","capital":0,"ibgeState":31,"siafi":4337,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6973,-49.0789]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d0d"},"ibge":3300951,"name":"Comendador Levy Gasparian","capital":0,"ibgeState":33,"siafi":2927,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0404,-43.214]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d0e"},"ibge":3117009,"name":"Comercinho","capital":0,"ibgeState":31,"siafi":4339,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.2963,-41.7945]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d0f"},"ibge":5103304,"name":"Comodoro","capital":0,"ibgeState":51,"siafi":9883,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-13.6614,-59.7848]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d10"},"ibge":2504405,"name":"Conceição","capital":0,"ibgeState":25,"siafi":1989,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.55106,-38.5014]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d11"},"ibge":3117108,"name":"Conceição da Aparecida","capital":0,"ibgeState":31,"siafi":4341,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.096,-46.2049]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d12"},"ibge":3201605,"name":"Conceição da Barra","capital":0,"ibgeState":32,"siafi":5631,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5883,-39.7362]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d13"},"ibge":3115201,"name":"Conceição da Barra de Minas","capital":0,"ibgeState":31,"siafi":4303,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1316,-44.4729]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d14"},"ibge":2908200,"name":"Conceição da Feira","capital":0,"ibgeState":29,"siafi":3463,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.5078,-38.9978]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d15"},"ibge":3117306,"name":"Conceição das Alagoas","capital":0,"ibgeState":31,"siafi":4345,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9172,-48.3839]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d16"},"ibge":3117207,"name":"Conceição das Pedras","capital":0,"ibgeState":31,"siafi":4343,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1576,-45.4562]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d17"},"ibge":3117405,"name":"Conceição de Ipanema","capital":0,"ibgeState":31,"siafi":4347,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9326,-41.6908]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d18"},"ibge":3301405,"name":"Conceição de Macabu","capital":0,"ibgeState":33,"siafi":5827,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0834,-41.8719]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d19"},"ibge":2908309,"name":"Conceição do Almeida","capital":0,"ibgeState":29,"siafi":3465,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.7836,-39.1715]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d1a"},"ibge":1502707,"name":"Conceição do Araguaia","capital":0,"ibgeState":15,"siafi":453,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.26136,-49.2689]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d1b"},"ibge":2202802,"name":"Conceição do Canindé","capital":0,"ibgeState":22,"siafi":1055,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.87638,-41.5942]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d1c"},"ibge":3201704,"name":"Conceição do Castelo","capital":0,"ibgeState":32,"siafi":5633,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3639,-41.2417]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d1d"},"ibge":2908408,"name":"Conceição do Coité","capital":0,"ibgeState":29,"siafi":3467,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.56,-39.2808]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d1e"},"ibge":2908507,"name":"Conceição do Jacuípe","capital":0,"ibgeState":29,"siafi":3469,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.3268,-38.7684]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d1f"},"ibge":2103554,"name":"Conceição do Lago-Açu","capital":0,"ibgeState":21,"siafi":152,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.85142,-44.8895]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d20"},"ibge":3117504,"name":"Conceição do Mato Dentro","capital":0,"ibgeState":31,"siafi":4349,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.0344,-43.4221]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d21"},"ibge":3117603,"name":"Conceição do Pará","capital":0,"ibgeState":31,"siafi":4351,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7456,-44.8945]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d22"},"ibge":3117702,"name":"Conceição do Rio Verde","capital":0,"ibgeState":31,"siafi":4353,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8778,-45.087]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d23"},"ibge":1705607,"name":"Conceição do Tocantins","capital":0,"ibgeState":17,"siafi":9313,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.2209,-47.2951]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d24"},"ibge":3117801,"name":"Conceição dos Ouros","capital":0,"ibgeState":31,"siafi":4355,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4078,-45.7996]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d25"},"ibge":3512209,"name":"Conchal","capital":0,"ibgeState":35,"siafi":6345,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3375,-47.1729]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d26"},"ibge":3512308,"name":"Conchas","capital":0,"ibgeState":35,"siafi":6347,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0154,-48.0134]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d27"},"ibge":4204301,"name":"Concórdia","capital":0,"ibgeState":42,"siafi":8083,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2335,-52.026]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d28"},"ibge":1502756,"name":"Concórdia do Pará","capital":0,"ibgeState":15,"siafi":579,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.99238,-47.9422]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d29"},"ibge":2504504,"name":"Condado","capital":0,"ibgeState":25,"siafi":1991,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.89831,-37.606]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d2a"},"ibge":2604601,"name":"Condado","capital":0,"ibgeState":26,"siafi":2391,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.58787,-35.0999]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d2b"},"ibge":2504603,"name":"Conde","capital":0,"ibgeState":25,"siafi":1993,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.25746,-34.8999]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d2c"},"ibge":2908606,"name":"Conde","capital":0,"ibgeState":29,"siafi":3471,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.8179,-37.6131]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d2d"},"ibge":2908705,"name":"Condeúba","capital":0,"ibgeState":29,"siafi":3473,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.9022,-41.9718]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d2e"},"ibge":4305702,"name":"Condor","capital":0,"ibgeState":43,"siafi":8611,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.2075,-53.4905]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d2f"},"ibge":3117836,"name":"Cônego Marinho","capital":0,"ibgeState":31,"siafi":590,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.2892,-44.4181]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d30"},"ibge":3117876,"name":"Confins","capital":0,"ibgeState":31,"siafi":592,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6282,-43.9931]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d31"},"ibge":5103353,"name":"Confresa","capital":0,"ibgeState":51,"siafi":131,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.6437,-51.5699]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d32"},"ibge":2504702,"name":"Congo","capital":0,"ibgeState":25,"siafi":1995,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.79078,-36.6581]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d33"},"ibge":3117900,"name":"Congonhal","capital":0,"ibgeState":31,"siafi":4357,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1488,-46.043]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d34"},"ibge":3118007,"name":"Congonhas","capital":0,"ibgeState":31,"siafi":4359,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4958,-43.851]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d35"},"ibge":3118106,"name":"Congonhas do Norte","capital":0,"ibgeState":31,"siafi":4361,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.8021,-43.6767]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d36"},"ibge":4106001,"name":"Congonhinhas","capital":0,"ibgeState":41,"siafi":7517,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5493,-50.5569]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d37"},"ibge":3118205,"name":"Conquista","capital":0,"ibgeState":31,"siafi":4363,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9312,-47.5492]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d38"},"ibge":5103361,"name":"Conquista D'Oeste","capital":0,"ibgeState":51,"siafi":1082,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.5381,-59.5444]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d39"},"ibge":3118304,"name":"Conselheiro Lafaiete","capital":0,"ibgeState":31,"siafi":4365,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6634,-43.7846]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d3a"},"ibge":4106100,"name":"Conselheiro Mairinck","capital":0,"ibgeState":41,"siafi":7519,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.623,-50.1707]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d3b"},"ibge":3118403,"name":"Conselheiro Pena","capital":0,"ibgeState":31,"siafi":4367,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.1789,-41.4736]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d3c"},"ibge":3118502,"name":"Consolação","capital":0,"ibgeState":31,"siafi":4369,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5493,-45.9255]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d3d"},"ibge":4305801,"name":"Constantina","capital":0,"ibgeState":43,"siafi":8613,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.732,-52.9938]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d3e"},"ibge":3118601,"name":"Contagem","capital":0,"ibgeState":31,"siafi":4371,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9321,-44.0539]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d3f"},"ibge":4106209,"name":"Contenda","capital":0,"ibgeState":41,"siafi":7521,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.6788,-49.535]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d40"},"ibge":2908804,"name":"Contendas do Sincorá","capital":0,"ibgeState":29,"siafi":3475,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.7537,-41.048]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d41"},"ibge":3118700,"name":"Coqueiral","capital":0,"ibgeState":31,"siafi":4373,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1858,-45.4366]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d42"},"ibge":4305835,"name":"Coqueiro Baixo","capital":0,"ibgeState":43,"siafi":1136,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.1802,-52.0942]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d43"},"ibge":2702207,"name":"Coqueiro Seco","capital":0,"ibgeState":27,"siafi":2743,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.63715,-35.7994]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d44"},"ibge":4305850,"name":"Coqueiros do Sul","capital":0,"ibgeState":43,"siafi":5945,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.1194,-52.7842]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d45"},"ibge":3118809,"name":"Coração de Jesus","capital":0,"ibgeState":31,"siafi":4375,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.6841,-44.3635]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d46"},"ibge":2908903,"name":"Coração de Maria","capital":0,"ibgeState":29,"siafi":3477,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.2333,-38.7487]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d47"},"ibge":4106308,"name":"Corbélia","capital":0,"ibgeState":41,"siafi":7523,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.7971,-53.3006]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d48"},"ibge":3301504,"name":"Cordeiro","capital":0,"ibgeState":33,"siafi":5829,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0267,-42.3648]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d49"},"ibge":3512407,"name":"Cordeirópolis","capital":0,"ibgeState":35,"siafi":6349,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4778,-47.4519]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d4a"},"ibge":2909000,"name":"Cordeiros","capital":0,"ibgeState":29,"siafi":3479,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.0356,-41.9308]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d4b"},"ibge":4204350,"name":"Cordilheira Alta","capital":0,"ibgeState":42,"siafi":5579,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9844,-52.6056]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d4c"},"ibge":3118908,"name":"Cordisburgo","capital":0,"ibgeState":31,"siafi":4377,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.1224,-44.3224]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d4d"},"ibge":3119005,"name":"Cordislândia","capital":0,"ibgeState":31,"siafi":4379,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7891,-45.6999]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d4e"},"ibge":2304004,"name":"Coreaú","capital":0,"ibgeState":23,"siafi":1381,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.5415,-40.6587]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d4f"},"ibge":2504801,"name":"Coremas","capital":0,"ibgeState":25,"siafi":1997,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.00712,-37.9346]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d50"},"ibge":5003108,"name":"Corguinho","capital":0,"ibgeState":50,"siafi":9061,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-19.8243,-54.8281]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d51"},"ibge":2909109,"name":"Coribe","capital":0,"ibgeState":29,"siafi":3481,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.8232,-44.4586]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d52"},"ibge":3119104,"name":"Corinto","capital":0,"ibgeState":31,"siafi":4381,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.369,-44.4542]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d53"},"ibge":4106407,"name":"Cornélio Procópio","capital":0,"ibgeState":41,"siafi":7525,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1829,-50.6498]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d54"},"ibge":3119203,"name":"Coroaci","capital":0,"ibgeState":31,"siafi":4383,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.6156,-42.2791]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d55"},"ibge":3512506,"name":"Coroados","capital":0,"ibgeState":35,"siafi":6351,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3521,-50.2859]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d56"},"ibge":2103604,"name":"Coroatá","capital":0,"ibgeState":21,"siafi":769,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.13442,-44.1244]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d57"},"ibge":3119302,"name":"Coromandel","capital":0,"ibgeState":31,"siafi":4385,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4734,-47.1933]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d58"},"ibge":4305871,"name":"Coronel Barros","capital":0,"ibgeState":43,"siafi":6055,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3921,-54.0686]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d59"},"ibge":4305900,"name":"Coronel Bicaco","capital":0,"ibgeState":43,"siafi":8615,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7197,-53.7022]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d5a"},"ibge":4106456,"name":"Coronel Domingos Soares","capital":0,"ibgeState":41,"siafi":846,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.2277,-52.0356]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d5b"},"ibge":2402808,"name":"Coronel Ezequiel","capital":0,"ibgeState":24,"siafi":1655,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.3748,-36.2223]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d5c"},"ibge":3119401,"name":"Coronel Fabriciano","capital":0,"ibgeState":31,"siafi":4387,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5179,-42.6276]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d5d"},"ibge":4204400,"name":"Coronel Freitas","capital":0,"ibgeState":42,"siafi":8085,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9057,-52.7011]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d5e"},"ibge":2402907,"name":"Coronel João Pessoa","capital":0,"ibgeState":24,"siafi":1657,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.24974,-38.4441]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d5f"},"ibge":2909208,"name":"Coronel João Sá","capital":0,"ibgeState":29,"siafi":3483,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.2847,-37.9198]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d60"},"ibge":2202851,"name":"Coronel José Dias","capital":0,"ibgeState":22,"siafi":2255,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.81397,-42.5232]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d61"},"ibge":3512605,"name":"Coronel Macedo","capital":0,"ibgeState":35,"siafi":6353,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6261,-49.31]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d62"},"ibge":4204459,"name":"Coronel Martins","capital":0,"ibgeState":42,"siafi":5735,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.511,-52.6694]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d63"},"ibge":3119500,"name":"Coronel Murta","capital":0,"ibgeState":31,"siafi":4389,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.6148,-42.184]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d64"},"ibge":3119609,"name":"Coronel Pacheco","capital":0,"ibgeState":31,"siafi":4391,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5898,-43.256]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d65"},"ibge":4305934,"name":"Coronel Pilar","capital":0,"ibgeState":43,"siafi":1138,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.2695,-51.6847]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d66"},"ibge":5003157,"name":"Coronel Sapucaia","capital":0,"ibgeState":50,"siafi":9997,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-23.2724,-55.5278]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d67"},"ibge":4106506,"name":"Coronel Vivida","capital":0,"ibgeState":41,"siafi":7527,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.9767,-52.5641]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d68"},"ibge":3119708,"name":"Coronel Xavier Chaves","capital":0,"ibgeState":31,"siafi":4393,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0277,-44.2206]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d69"},"ibge":3119807,"name":"Córrego Danta","capital":0,"ibgeState":31,"siafi":4395,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8198,-45.9032]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d6a"},"ibge":3119906,"name":"Córrego do Bom Jesus","capital":0,"ibgeState":31,"siafi":4397,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6269,-46.0241]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d6b"},"ibge":5205703,"name":"Córrego do Ouro","capital":0,"ibgeState":52,"siafi":9315,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.2918,-50.5503]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d6c"},"ibge":3119955,"name":"Córrego Fundo","capital":0,"ibgeState":31,"siafi":594,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4474,-45.5617]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d6d"},"ibge":3120003,"name":"Córrego Novo","capital":0,"ibgeState":31,"siafi":4399,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8361,-42.3988]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d6e"},"ibge":4204558,"name":"Correia Pinto","capital":0,"ibgeState":42,"siafi":8395,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5877,-50.3614]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d6f"},"ibge":2202901,"name":"Corrente","capital":0,"ibgeState":22,"siafi":1057,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.4333,-45.1633]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d70"},"ibge":2604700,"name":"Correntes","capital":0,"ibgeState":26,"siafi":2393,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.12117,-36.3244]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d71"},"ibge":2909307,"name":"Correntina","capital":0,"ibgeState":29,"siafi":3485,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.3477,-44.6333]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d72"},"ibge":2604809,"name":"Cortês","capital":0,"ibgeState":26,"siafi":2395,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.47443,-35.5468]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d73"},"ibge":5003207,"name":"Corumbá","capital":0,"ibgeState":50,"siafi":9063,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-19.0077,-57.651]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d74"},"ibge":5205802,"name":"Corumbá de Goiás","capital":0,"ibgeState":52,"siafi":9317,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.9245,-48.8117]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d75"},"ibge":5205901,"name":"Corumbaíba","capital":0,"ibgeState":52,"siafi":9319,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.1415,-48.5626]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d76"},"ibge":3512704,"name":"Corumbataí","capital":0,"ibgeState":35,"siafi":6355,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2213,-47.6215]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d77"},"ibge":4106555,"name":"Corumbataí do Sul","capital":0,"ibgeState":41,"siafi":8479,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.101,-52.1177]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d78"},"ibge":1100072,"name":"Corumbiara","capital":0,"ibgeState":11,"siafi":981,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.9551,-60.8947]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d79"},"ibge":4204509,"name":"Corupá","capital":0,"ibgeState":42,"siafi":8087,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.4246,-49.246]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d7a"},"ibge":2702306,"name":"Coruripe","capital":0,"ibgeState":27,"siafi":2745,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.1276,-36.1717]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d7b"},"ibge":3512803,"name":"Cosmópolis","capital":0,"ibgeState":35,"siafi":6357,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6419,-47.1926]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d7c"},"ibge":3512902,"name":"Cosmorama","capital":0,"ibgeState":35,"siafi":6359,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4755,-49.7827]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d7d"},"ibge":1100080,"name":"Costa Marques","capital":0,"ibgeState":11,"siafi":21,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.4367,-64.228]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d7e"},"ibge":5003256,"name":"Costa Rica","capital":0,"ibgeState":50,"siafi":9803,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-18.5432,-53.1287]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d7f"},"ibge":2909406,"name":"Cotegipe","capital":0,"ibgeState":29,"siafi":3487,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.0228,-44.2566]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d80"},"ibge":3513009,"name":"Cotia","capital":0,"ibgeState":35,"siafi":6361,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6022,-46.919]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d81"},"ibge":4305959,"name":"Cotiporã","capital":0,"ibgeState":43,"siafi":8977,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.9891,-51.6971]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d82"},"ibge":5103379,"name":"Cotriguaçu","capital":0,"ibgeState":51,"siafi":89,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-9.85656,-58.4192]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d83"},"ibge":3120102,"name":"Couto de Magalhães de Minas","capital":0,"ibgeState":31,"siafi":4401,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.0727,-43.4648]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d84"},"ibge":1706001,"name":"Couto Magalhães","capital":0,"ibgeState":17,"siafi":9321,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.28411,-49.2473]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d85"},"ibge":4305975,"name":"Coxilha","capital":0,"ibgeState":43,"siafi":5797,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.128,-52.3023]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d86"},"ibge":5003306,"name":"Coxim","capital":0,"ibgeState":50,"siafi":9065,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-18.5013,-54.751]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d87"},"ibge":2504850,"name":"Coxixola","capital":0,"ibgeState":25,"siafi":472,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.62365,-36.6064]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d88"},"ibge":2702355,"name":"Craíbas","capital":0,"ibgeState":27,"siafi":2889,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.6178,-36.7697]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d89"},"ibge":2304103,"name":"Crateús","capital":0,"ibgeState":23,"siafi":1383,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.16768,-40.6536]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d8a"},"ibge":2304202,"name":"Crato","capital":0,"ibgeState":23,"siafi":1385,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.2153,-39.4103]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d8b"},"ibge":3513108,"name":"Cravinhos","capital":0,"ibgeState":35,"siafi":6363,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.338,-47.7324]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d8c"},"ibge":2909505,"name":"Cravolândia","capital":0,"ibgeState":29,"siafi":3489,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.3531,-39.8031]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d8d"},"ibge":4204608,"name":"Criciúma","capital":0,"ibgeState":42,"siafi":8089,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6723,-49.3729]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d8e"},"ibge":3120151,"name":"Crisólita","capital":0,"ibgeState":31,"siafi":596,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.2381,-40.9184]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d8f"},"ibge":2909604,"name":"Crisópolis","capital":0,"ibgeState":29,"siafi":3491,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.5059,-38.1515]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d90"},"ibge":4306007,"name":"Crissiumal","capital":0,"ibgeState":43,"siafi":8617,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4999,-54.0994]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d91"},"ibge":3120201,"name":"Cristais","capital":0,"ibgeState":31,"siafi":4403,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8733,-45.5167]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d92"},"ibge":3513207,"name":"Cristais Paulista","capital":0,"ibgeState":35,"siafi":6365,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4036,-47.4209]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d93"},"ibge":4306056,"name":"Cristal","capital":0,"ibgeState":43,"siafi":8431,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.0046,-52.0436]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d94"},"ibge":4306072,"name":"Cristal do Sul","capital":0,"ibgeState":43,"siafi":972,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.452,-53.2422]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d95"},"ibge":1706100,"name":"Cristalândia","capital":0,"ibgeState":17,"siafi":9323,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.5985,-49.1942]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d96"},"ibge":2203008,"name":"Cristalândia do Piauí","capital":0,"ibgeState":22,"siafi":1059,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.6443,-45.1893]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d97"},"ibge":3120300,"name":"Cristália","capital":0,"ibgeState":31,"siafi":4405,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.716,-42.8571]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d98"},"ibge":5206206,"name":"Cristalina","capital":0,"ibgeState":52,"siafi":9325,"ddd":61,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.7676,-47.6131]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d99"},"ibge":3120409,"name":"Cristiano Otoni","capital":0,"ibgeState":31,"siafi":4407,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8324,-43.8166]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d9a"},"ibge":5206305,"name":"Cristianópolis","capital":0,"ibgeState":52,"siafi":9327,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.1987,-48.7034]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d9b"},"ibge":3120508,"name":"Cristina","capital":0,"ibgeState":31,"siafi":4409,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.208,-45.2673]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d9c"},"ibge":2801702,"name":"Cristinápolis","capital":0,"ibgeState":28,"siafi":3133,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.4668,-37.7585]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d9d"},"ibge":2203107,"name":"Cristino Castro","capital":0,"ibgeState":22,"siafi":1061,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.82273,-44.223]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d9e"},"ibge":2909703,"name":"Cristópolis","capital":0,"ibgeState":29,"siafi":3493,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.2249,-44.4214]}} +{"_id":{"$oid":"66f9d5ad542d90c053666d9f"},"ibge":5206404,"name":"Crixás","capital":0,"ibgeState":52,"siafi":9329,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.5412,-49.974]}} +{"_id":{"$oid":"66f9d5ad542d90c053666da0"},"ibge":1706258,"name":"Crixás do Tocantins","capital":0,"ibgeState":17,"siafi":82,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.0994,-48.9152]}} +{"_id":{"$oid":"66f9d5ad542d90c053666da1"},"ibge":2304236,"name":"Croatá","capital":0,"ibgeState":23,"siafi":1241,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.40481,-40.9022]}} +{"_id":{"$oid":"66f9d5ad542d90c053666da2"},"ibge":5206503,"name":"Cromínia","capital":0,"ibgeState":52,"siafi":9331,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.2883,-49.3798]}} +{"_id":{"$oid":"66f9d5ad542d90c053666da3"},"ibge":3120607,"name":"Crucilândia","capital":0,"ibgeState":31,"siafi":4411,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3923,-44.3334]}} +{"_id":{"$oid":"66f9d5ad542d90c053666da4"},"ibge":2304251,"name":"Cruz","capital":0,"ibgeState":23,"siafi":1589,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.91813,-40.176]}} +{"_id":{"$oid":"66f9d5ad542d90c053666da5"},"ibge":4306106,"name":"Cruz Alta","capital":0,"ibgeState":43,"siafi":8619,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.645,-53.6048]}} +{"_id":{"$oid":"66f9d5ad542d90c053666da6"},"ibge":2909802,"name":"Cruz das Almas","capital":0,"ibgeState":29,"siafi":3495,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.6675,-39.1008]}} +{"_id":{"$oid":"66f9d5ad542d90c053666da7"},"ibge":2504900,"name":"Cruz do Espírito Santo","capital":0,"ibgeState":25,"siafi":1999,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.13902,-35.0857]}} +{"_id":{"$oid":"66f9d5ad542d90c053666da8"},"ibge":4106803,"name":"Cruz Machado","capital":0,"ibgeState":41,"siafi":7533,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.0166,-51.343]}} +{"_id":{"$oid":"66f9d5ad542d90c053666da9"},"ibge":3513306,"name":"Cruzália","capital":0,"ibgeState":35,"siafi":6367,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7373,-50.7909]}} +{"_id":{"$oid":"66f9d5ad542d90c053666daa"},"ibge":4306130,"name":"Cruzaltense","capital":0,"ibgeState":43,"siafi":1140,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6672,-52.6522]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dab"},"ibge":3513405,"name":"Cruzeiro","capital":0,"ibgeState":35,"siafi":6369,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5728,-44.969]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dac"},"ibge":3120706,"name":"Cruzeiro da Fortaleza","capital":0,"ibgeState":31,"siafi":4413,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.944,-46.6669]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dad"},"ibge":4106571,"name":"Cruzeiro do Iguaçu","capital":0,"ibgeState":41,"siafi":5473,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.6192,-53.1285]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dae"},"ibge":4106605,"name":"Cruzeiro do Oeste","capital":0,"ibgeState":41,"siafi":7529,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7799,-53.0774]}} +{"_id":{"$oid":"66f9d5ad542d90c053666daf"},"ibge":4106704,"name":"Cruzeiro do Sul","capital":0,"ibgeState":41,"siafi":7531,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9624,-52.1622]}} +{"_id":{"$oid":"66f9d5ad542d90c053666db0"},"ibge":4306205,"name":"Cruzeiro do Sul","capital":0,"ibgeState":43,"siafi":8621,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5148,-51.9928]}} +{"_id":{"$oid":"66f9d5ad542d90c053666db1"},"ibge":1200203,"name":"Cruzeiro do Sul","capital":0,"ibgeState":12,"siafi":107,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-7.62762,-72.6756]}} +{"_id":{"$oid":"66f9d5ad542d90c053666db2"},"ibge":2403004,"name":"Cruzeta","capital":0,"ibgeState":24,"siafi":1659,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.40894,-36.7782]}} +{"_id":{"$oid":"66f9d5ad542d90c053666db3"},"ibge":3120805,"name":"Cruzília","capital":0,"ibgeState":31,"siafi":4415,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.84,-44.8067]}} +{"_id":{"$oid":"66f9d5ad542d90c053666db4"},"ibge":4106852,"name":"Cruzmaltina","capital":0,"ibgeState":41,"siafi":848,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.0132,-51.4563]}} +{"_id":{"$oid":"66f9d5ad542d90c053666db5"},"ibge":3513504,"name":"Cubatão","capital":0,"ibgeState":35,"siafi":6371,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8911,-46.424]}} +{"_id":{"$oid":"66f9d5ad542d90c053666db6"},"ibge":2505006,"name":"Cubati","capital":0,"ibgeState":25,"siafi":2001,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.86686,-36.3619]}} +{"_id":{"$oid":"66f9d5ad542d90c053666db7"},"ibge":5103403,"name":"Cuiabá","capital":1,"ibgeState":51,"siafi":9067,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.601,-56.0974]}} +{"_id":{"$oid":"66f9d5ad542d90c053666db8"},"ibge":2505105,"name":"Cuité","capital":0,"ibgeState":25,"siafi":2003,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.47647,-36.1515]}} +{"_id":{"$oid":"66f9d5ad542d90c053666db9"},"ibge":2505238,"name":"Cuité de Mamanguape","capital":0,"ibgeState":25,"siafi":474,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.91292,-35.2502]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dba"},"ibge":2505204,"name":"Cuitegi","capital":0,"ibgeState":25,"siafi":2005,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.89058,-35.5215]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dbb"},"ibge":1100940,"name":"Cujubim","capital":0,"ibgeState":11,"siafi":8,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-9.36065,-62.5846]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dbc"},"ibge":5206602,"name":"Cumari","capital":0,"ibgeState":52,"siafi":9333,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.2644,-48.1511]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dbd"},"ibge":2604908,"name":"Cumaru","capital":0,"ibgeState":26,"siafi":2397,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.00827,-35.6957]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dbe"},"ibge":1502764,"name":"Cumaru do Norte","capital":0,"ibgeState":15,"siafi":385,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.81097,-50.7698]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dbf"},"ibge":2801900,"name":"Cumbe","capital":0,"ibgeState":28,"siafi":3137,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.352,-37.1846]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dc0"},"ibge":3513603,"name":"Cunha","capital":0,"ibgeState":35,"siafi":6373,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0731,-44.9576]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dc1"},"ibge":4204707,"name":"Cunha Porã","capital":0,"ibgeState":42,"siafi":8091,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.895,-53.1662]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dc2"},"ibge":4204756,"name":"Cunhataí","capital":0,"ibgeState":42,"siafi":910,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9709,-53.0895]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dc3"},"ibge":3120839,"name":"Cuparaque","capital":0,"ibgeState":31,"siafi":598,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.9648,-41.0986]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dc4"},"ibge":2605004,"name":"Cupira","capital":0,"ibgeState":26,"siafi":2399,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.62432,-35.9518]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dc5"},"ibge":2909901,"name":"Curaçá","capital":0,"ibgeState":29,"siafi":3497,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.98458,-39.8997]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dc6"},"ibge":2203206,"name":"Curimatá","capital":0,"ibgeState":22,"siafi":1063,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.0326,-44.3002]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dc7"},"ibge":1502772,"name":"Curionópolis","capital":0,"ibgeState":15,"siafi":581,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.09965,-49.6068]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dc8"},"ibge":4106902,"name":"Curitiba","capital":1,"ibgeState":41,"siafi":7535,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4195,-49.2646]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dc9"},"ibge":4204806,"name":"Curitibanos","capital":0,"ibgeState":42,"siafi":8093,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2824,-50.5816]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dca"},"ibge":4107009,"name":"Curiúva","capital":0,"ibgeState":41,"siafi":7537,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.0362,-50.4576]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dcb"},"ibge":2203230,"name":"Currais","capital":0,"ibgeState":22,"siafi":308,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.01175,-44.4062]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dcc"},"ibge":2403103,"name":"Currais Novos","capital":0,"ibgeState":24,"siafi":1661,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.25484,-36.5146]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dcd"},"ibge":2505279,"name":"Curral de Cima","capital":0,"ibgeState":25,"siafi":476,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.72325,-35.2639]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dce"},"ibge":3120870,"name":"Curral de Dentro","capital":0,"ibgeState":31,"siafi":600,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.9327,-41.8557]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dcf"},"ibge":2203271,"name":"Curral Novo do Piauí","capital":0,"ibgeState":22,"siafi":312,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.8313,-40.8957]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dd0"},"ibge":2505303,"name":"Curral Velho","capital":0,"ibgeState":25,"siafi":2007,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.53075,-38.1962]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dd1"},"ibge":1502806,"name":"Curralinho","capital":0,"ibgeState":15,"siafi":455,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.81179,-49.7952]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dd2"},"ibge":2203255,"name":"Curralinhos","capital":0,"ibgeState":22,"siafi":310,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.60825,-42.8376]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dd3"},"ibge":1502855,"name":"Curuá","capital":0,"ibgeState":15,"siafi":50,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.88775,-55.1168]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dd4"},"ibge":1502905,"name":"Curuçá","capital":0,"ibgeState":15,"siafi":457,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.733214,-47.8515]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dd5"},"ibge":2103703,"name":"Cururupu","capital":0,"ibgeState":21,"siafi":771,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.81475,-44.8644]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dd6"},"ibge":5103437,"name":"Curvelândia","capital":0,"ibgeState":51,"siafi":1084,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.6084,-57.9133]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dd7"},"ibge":3120904,"name":"Curvelo","capital":0,"ibgeState":31,"siafi":4417,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7527,-44.4303]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dd8"},"ibge":2605103,"name":"Custódia","capital":0,"ibgeState":26,"siafi":2401,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.08546,-37.6443]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dd9"},"ibge":1600212,"name":"Cutias","capital":0,"ibgeState":16,"siafi":667,"ddd":96,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[0.970761,-50.8005]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dda"},"ibge":5206701,"name":"Damianópolis","capital":0,"ibgeState":52,"siafi":9335,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.5604,-46.178]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ddb"},"ibge":2505352,"name":"Damião","capital":0,"ibgeState":25,"siafi":478,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.63161,-35.9101]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ddc"},"ibge":5206800,"name":"Damolândia","capital":0,"ibgeState":52,"siafi":9337,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.2544,-49.3631]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ddd"},"ibge":1706506,"name":"Darcinópolis","capital":0,"ibgeState":17,"siafi":179,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.71591,-47.7597]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dde"},"ibge":2910008,"name":"Dário Meira","capital":0,"ibgeState":29,"siafi":3499,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.4229,-39.9031]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ddf"},"ibge":3121001,"name":"Datas","capital":0,"ibgeState":31,"siafi":4419,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4478,-43.6591]}} +{"_id":{"$oid":"66f9d5ad542d90c053666de0"},"ibge":4306304,"name":"David Canabarro","capital":0,"ibgeState":43,"siafi":8623,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3849,-51.8482]}} +{"_id":{"$oid":"66f9d5ad542d90c053666de1"},"ibge":2103752,"name":"Davinópolis","capital":0,"ibgeState":21,"siafi":154,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.54637,-47.4217]}} +{"_id":{"$oid":"66f9d5ad542d90c053666de2"},"ibge":5206909,"name":"Davinópolis","capital":0,"ibgeState":52,"siafi":9339,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.1501,-47.5568]}} +{"_id":{"$oid":"66f9d5ad542d90c053666de3"},"ibge":3121100,"name":"Delfim Moreira","capital":0,"ibgeState":31,"siafi":4421,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5036,-45.2792]}} +{"_id":{"$oid":"66f9d5ad542d90c053666de4"},"ibge":3121209,"name":"Delfinópolis","capital":0,"ibgeState":31,"siafi":4423,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3468,-46.8456]}} +{"_id":{"$oid":"66f9d5ad542d90c053666de5"},"ibge":2702405,"name":"Delmiro Gouveia","capital":0,"ibgeState":27,"siafi":2747,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.38534,-37.9987]}} +{"_id":{"$oid":"66f9d5ad542d90c053666de6"},"ibge":3121258,"name":"Delta","capital":0,"ibgeState":31,"siafi":602,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9721,-47.7841]}} +{"_id":{"$oid":"66f9d5ad542d90c053666de7"},"ibge":2203305,"name":"Demerval Lobão","capital":0,"ibgeState":22,"siafi":1065,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.35875,-42.6776]}} +{"_id":{"$oid":"66f9d5ad542d90c053666de8"},"ibge":5103452,"name":"Denise","capital":0,"ibgeState":51,"siafi":9833,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.7324,-57.0583]}} +{"_id":{"$oid":"66f9d5ad542d90c053666de9"},"ibge":5003454,"name":"Deodápolis","capital":0,"ibgeState":50,"siafi":9175,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.2763,-54.1682]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dea"},"ibge":2304269,"name":"Deputado Irapuan Pinheiro","capital":0,"ibgeState":23,"siafi":1243,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.91485,-39.257]}} +{"_id":{"$oid":"66f9d5ad542d90c053666deb"},"ibge":4306320,"name":"Derrubadas","capital":0,"ibgeState":43,"siafi":6073,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2642,-53.8645]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dec"},"ibge":3513702,"name":"Descalvado","capital":0,"ibgeState":35,"siafi":6375,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9002,-47.6181]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ded"},"ibge":4204905,"name":"Descanso","capital":0,"ibgeState":42,"siafi":8095,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.827,-53.5034]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dee"},"ibge":3121308,"name":"Descoberto","capital":0,"ibgeState":31,"siafi":4425,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.46,-42.9618]}} +{"_id":{"$oid":"66f9d5ad542d90c053666def"},"ibge":2505402,"name":"Desterro","capital":0,"ibgeState":25,"siafi":2009,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.287,-37.0925]}} +{"_id":{"$oid":"66f9d5ad542d90c053666df0"},"ibge":3121407,"name":"Desterro de Entre Rios","capital":0,"ibgeState":31,"siafi":4427,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.665,-44.3334]}} +{"_id":{"$oid":"66f9d5ad542d90c053666df1"},"ibge":3121506,"name":"Desterro do Melo","capital":0,"ibgeState":31,"siafi":4429,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.143,-43.5178]}} +{"_id":{"$oid":"66f9d5ad542d90c053666df2"},"ibge":4306353,"name":"Dezesseis de Novembro","capital":0,"ibgeState":43,"siafi":8429,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.219,-55.0617]}} +{"_id":{"$oid":"66f9d5ad542d90c053666df3"},"ibge":3513801,"name":"Diadema","capital":0,"ibgeState":35,"siafi":6377,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6813,-46.6205]}} +{"_id":{"$oid":"66f9d5ad542d90c053666df4"},"ibge":2505600,"name":"Diamante","capital":0,"ibgeState":25,"siafi":2013,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.41738,-38.2615]}} +{"_id":{"$oid":"66f9d5ad542d90c053666df5"},"ibge":4107157,"name":"Diamante D'Oeste","capital":0,"ibgeState":41,"siafi":9915,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.9419,-54.1052]}} +{"_id":{"$oid":"66f9d5ad542d90c053666df6"},"ibge":4107108,"name":"Diamante do Norte","capital":0,"ibgeState":41,"siafi":7539,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.655,-52.8617]}} +{"_id":{"$oid":"66f9d5ad542d90c053666df7"},"ibge":4107124,"name":"Diamante do Sul","capital":0,"ibgeState":41,"siafi":5465,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.035,-52.6768]}} +{"_id":{"$oid":"66f9d5ad542d90c053666df8"},"ibge":3121605,"name":"Diamantina","capital":0,"ibgeState":31,"siafi":4431,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.2413,-43.6031]}} +{"_id":{"$oid":"66f9d5ad542d90c053666df9"},"ibge":5103502,"name":"Diamantino","capital":0,"ibgeState":51,"siafi":9069,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.4037,-56.4366]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dfa"},"ibge":1707009,"name":"Dianópolis","capital":0,"ibgeState":17,"siafi":9341,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.624,-46.8198]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dfb"},"ibge":2910057,"name":"Dias d'Ávila","capital":0,"ibgeState":29,"siafi":3087,"ddd":71,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.6187,-38.2926]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dfc"},"ibge":4306379,"name":"Dilermando de Aguiar","capital":0,"ibgeState":43,"siafi":974,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.7054,-54.2122]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dfd"},"ibge":3121704,"name":"Diogo de Vasconcelos","capital":0,"ibgeState":31,"siafi":4433,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4879,-43.1953]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dfe"},"ibge":3121803,"name":"Dionísio","capital":0,"ibgeState":31,"siafi":4435,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8433,-42.7701]}} +{"_id":{"$oid":"66f9d5ad542d90c053666dff"},"ibge":4205001,"name":"Dionísio Cerqueira","capital":0,"ibgeState":42,"siafi":8097,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.2648,-53.6351]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e00"},"ibge":5207105,"name":"Diorama","capital":0,"ibgeState":52,"siafi":9343,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.2329,-51.2543]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e01"},"ibge":3513850,"name":"Dirce Reis","capital":0,"ibgeState":35,"siafi":7249,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4642,-50.6073]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e02"},"ibge":2203354,"name":"Dirceu Arcoverde","capital":0,"ibgeState":22,"siafi":1229,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.33939,-42.4348]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e03"},"ibge":2802007,"name":"Divina Pastora","capital":0,"ibgeState":28,"siafi":3139,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.6782,-37.1506]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e04"},"ibge":3121902,"name":"Divinésia","capital":0,"ibgeState":31,"siafi":4437,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9917,-43.0003]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e05"},"ibge":3122009,"name":"Divino","capital":0,"ibgeState":31,"siafi":4439,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6134,-42.1438]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e06"},"ibge":3122108,"name":"Divino das Laranjeiras","capital":0,"ibgeState":31,"siafi":4441,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7755,-41.4781]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e07"},"ibge":3201803,"name":"Divino de São Lourenço","capital":0,"ibgeState":32,"siafi":5635,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6229,-41.6937]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e08"},"ibge":3513900,"name":"Divinolândia","capital":0,"ibgeState":35,"siafi":6379,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6637,-46.7361]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e09"},"ibge":3122207,"name":"Divinolândia de Minas","capital":0,"ibgeState":31,"siafi":4443,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.8004,-42.6103]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e0a"},"ibge":3122306,"name":"Divinópolis","capital":0,"ibgeState":31,"siafi":4445,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1446,-44.8912]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e0b"},"ibge":5208301,"name":"Divinópolis de Goiás","capital":0,"ibgeState":52,"siafi":9309,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.2853,-46.3999]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e0c"},"ibge":1707108,"name":"Divinópolis do Tocantins","capital":0,"ibgeState":17,"siafi":9719,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.80018,-49.2169]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e0d"},"ibge":3122355,"name":"Divisa Alegre","capital":0,"ibgeState":31,"siafi":604,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.7221,-41.3463]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e0e"},"ibge":3122405,"name":"Divisa Nova","capital":0,"ibgeState":31,"siafi":4447,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5092,-46.1904]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e0f"},"ibge":3122454,"name":"Divisópolis","capital":0,"ibgeState":31,"siafi":2657,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.7254,-40.9997]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e10"},"ibge":3514007,"name":"Dobrada","capital":0,"ibgeState":35,"siafi":6381,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5155,-48.3935]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e11"},"ibge":3514106,"name":"Dois Córregos","capital":0,"ibgeState":35,"siafi":6383,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3673,-48.3819]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e12"},"ibge":4306403,"name":"Dois Irmãos","capital":0,"ibgeState":43,"siafi":8625,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5836,-51.0898]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e13"},"ibge":4306429,"name":"Dois Irmãos das Missões","capital":0,"ibgeState":43,"siafi":5971,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6621,-53.5304]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e14"},"ibge":5003488,"name":"Dois Irmãos do Buriti","capital":0,"ibgeState":50,"siafi":9793,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-20.6848,-55.2915]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e15"},"ibge":1707207,"name":"Dois Irmãos do Tocantins","capital":0,"ibgeState":17,"siafi":9345,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.25534,-49.0638]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e16"},"ibge":4306452,"name":"Dois Lajeados","capital":0,"ibgeState":43,"siafi":8427,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.983,-51.8396]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e17"},"ibge":2702504,"name":"Dois Riachos","capital":0,"ibgeState":27,"siafi":2749,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.38465,-37.0965]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e18"},"ibge":4107207,"name":"Dois Vizinhos","capital":0,"ibgeState":41,"siafi":7541,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.7407,-53.057]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e19"},"ibge":3514205,"name":"Dolcinópolis","capital":0,"ibgeState":35,"siafi":6385,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.124,-50.5149]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e1a"},"ibge":5103601,"name":"Dom Aquino","capital":0,"ibgeState":51,"siafi":9071,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.8099,-54.9223]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e1b"},"ibge":2910107,"name":"Dom Basílio","capital":0,"ibgeState":29,"siafi":3501,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.7565,-41.7677]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e1c"},"ibge":3122470,"name":"Dom Bosco","capital":0,"ibgeState":31,"siafi":606,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.652,-46.2597]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e1d"},"ibge":3122504,"name":"Dom Cavati","capital":0,"ibgeState":31,"siafi":4449,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.3735,-42.1121]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e1e"},"ibge":1502939,"name":"Dom Eliseu","capital":0,"ibgeState":15,"siafi":583,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.19944,-47.8245]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e1f"},"ibge":2203404,"name":"Dom Expedito Lopes","capital":0,"ibgeState":22,"siafi":1067,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.95332,-41.6396]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e20"},"ibge":4306502,"name":"Dom Feliciano","capital":0,"ibgeState":43,"siafi":8627,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.7004,-52.1026]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e21"},"ibge":2203453,"name":"Dom Inocêncio","capital":0,"ibgeState":22,"siafi":1289,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.00516,-41.9697]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e22"},"ibge":3122603,"name":"Dom Joaquim","capital":0,"ibgeState":31,"siafi":4451,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.961,-43.2544]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e23"},"ibge":2910206,"name":"Dom Macedo Costa","capital":0,"ibgeState":29,"siafi":3503,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.9016,-39.1923]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e24"},"ibge":4306601,"name":"Dom Pedrito","capital":0,"ibgeState":43,"siafi":8629,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.9756,-54.6694]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e25"},"ibge":2103802,"name":"Dom Pedro","capital":0,"ibgeState":21,"siafi":773,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.03518,-44.4409]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e26"},"ibge":4306551,"name":"Dom Pedro de Alcântara","capital":0,"ibgeState":43,"siafi":976,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3639,-49.853]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e27"},"ibge":3122702,"name":"Dom Silvério","capital":0,"ibgeState":31,"siafi":4453,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1627,-42.9627]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e28"},"ibge":3122801,"name":"Dom Viçoso","capital":0,"ibgeState":31,"siafi":4455,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2511,-45.1643]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e29"},"ibge":3201902,"name":"Domingos Martins","capital":0,"ibgeState":32,"siafi":5637,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3603,-40.6594]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e2a"},"ibge":2203420,"name":"Domingos Mourão","capital":0,"ibgeState":22,"siafi":1141,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.2495,-41.2683]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e2b"},"ibge":4205100,"name":"Dona Emma","capital":0,"ibgeState":42,"siafi":8099,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.981,-49.7261]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e2c"},"ibge":3122900,"name":"Dona Eusébia","capital":0,"ibgeState":31,"siafi":4457,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.319,-42.807]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e2d"},"ibge":4306700,"name":"Dona Francisca","capital":0,"ibgeState":43,"siafi":8631,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6195,-53.3617]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e2e"},"ibge":2505709,"name":"Dona Inês","capital":0,"ibgeState":25,"siafi":2015,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.61566,-35.6205]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e2f"},"ibge":3123007,"name":"Dores de Campos","capital":0,"ibgeState":31,"siafi":4459,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1139,-44.0207]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e30"},"ibge":3123106,"name":"Dores de Guanhães","capital":0,"ibgeState":31,"siafi":4461,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.0516,-42.9254]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e31"},"ibge":3123205,"name":"Dores do Indaiá","capital":0,"ibgeState":31,"siafi":4463,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.4628,-45.5927]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e32"},"ibge":3202009,"name":"Dores do Rio Preto","capital":0,"ibgeState":32,"siafi":5639,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6931,-41.8405]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e33"},"ibge":3123304,"name":"Dores do Turvo","capital":0,"ibgeState":31,"siafi":4465,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9785,-43.1834]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e34"},"ibge":3123403,"name":"Doresópolis","capital":0,"ibgeState":31,"siafi":4467,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2868,-45.9007]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e35"},"ibge":2605152,"name":"Dormentes","capital":0,"ibgeState":26,"siafi":2299,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.44116,-40.7662]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e36"},"ibge":5003504,"name":"Douradina","capital":0,"ibgeState":50,"siafi":9805,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.0405,-54.6158]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e37"},"ibge":4107256,"name":"Douradina","capital":0,"ibgeState":41,"siafi":8465,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3807,-53.2918]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e38"},"ibge":3514304,"name":"Dourado","capital":0,"ibgeState":35,"siafi":6387,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1044,-48.3178]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e39"},"ibge":3123502,"name":"Douradoquara","capital":0,"ibgeState":31,"siafi":4469,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4338,-47.5993]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e3a"},"ibge":5003702,"name":"Dourados","capital":0,"ibgeState":50,"siafi":9073,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.2231,-54.812]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e3b"},"ibge":4107306,"name":"Doutor Camargo","capital":0,"ibgeState":41,"siafi":7543,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5582,-52.2178]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e3c"},"ibge":4306734,"name":"Doutor Maurício Cardoso","capital":0,"ibgeState":43,"siafi":8425,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5103,-54.3577]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e3d"},"ibge":4205159,"name":"Doutor Pedrinho","capital":0,"ibgeState":42,"siafi":9945,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7174,-49.4795]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e3e"},"ibge":4306759,"name":"Doutor Ricardo","capital":0,"ibgeState":43,"siafi":978,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.084,-51.9972]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e3f"},"ibge":2403202,"name":"Doutor Severiano","capital":0,"ibgeState":24,"siafi":1663,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.08082,-38.3794]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e40"},"ibge":4128633,"name":"Doutor Ulysses","capital":0,"ibgeState":41,"siafi":5449,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.5665,-49.4219]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e41"},"ibge":5207253,"name":"Doverlândia","capital":0,"ibgeState":52,"siafi":9675,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.7188,-52.3189]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e42"},"ibge":3514403,"name":"Dracena","capital":0,"ibgeState":35,"siafi":6389,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4843,-51.535]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e43"},"ibge":3514502,"name":"Duartina","capital":0,"ibgeState":35,"siafi":6391,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4146,-49.4084]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e44"},"ibge":3301603,"name":"Duas Barras","capital":0,"ibgeState":33,"siafi":5831,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0536,-42.5232]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e45"},"ibge":2505808,"name":"Duas Estradas","capital":0,"ibgeState":25,"siafi":2017,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.68499,-35.418]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e46"},"ibge":1707306,"name":"Dueré","capital":0,"ibgeState":17,"siafi":9347,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.3416,-49.2716]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e47"},"ibge":3514601,"name":"Dumont","capital":0,"ibgeState":35,"siafi":6393,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2324,-47.9756]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e48"},"ibge":2103901,"name":"Duque Bacelar","capital":0,"ibgeState":21,"siafi":775,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.15002,-42.9477]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e49"},"ibge":3301702,"name":"Duque de Caxias","capital":0,"ibgeState":33,"siafi":5833,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7858,-43.3049]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e4a"},"ibge":3123528,"name":"Durandé","capital":0,"ibgeState":31,"siafi":2675,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2058,-41.7977]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e4b"},"ibge":3514700,"name":"Echaporã","capital":0,"ibgeState":35,"siafi":6395,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4326,-50.2038]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e4c"},"ibge":3202108,"name":"Ecoporanga","capital":0,"ibgeState":32,"siafi":5641,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.3702,-40.836]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e4d"},"ibge":5207352,"name":"Edealina","capital":0,"ibgeState":52,"siafi":9795,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.4239,-49.6644]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e4e"},"ibge":5207402,"name":"Edéia","capital":0,"ibgeState":52,"siafi":9349,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.3406,-49.9295]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e4f"},"ibge":1301407,"name":"Eirunepé","capital":0,"ibgeState":13,"siafi":229,"ddd":97,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-6.65677,-69.8662]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e50"},"ibge":5003751,"name":"Eldorado","capital":0,"ibgeState":50,"siafi":9173,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-23.7868,-54.2838]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e51"},"ibge":3514809,"name":"Eldorado","capital":0,"ibgeState":35,"siafi":6397,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.5281,-48.1141]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e52"},"ibge":1502954,"name":"Eldorado do Carajás","capital":0,"ibgeState":15,"siafi":377,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.10389,-49.3553]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e53"},"ibge":4306767,"name":"Eldorado do Sul","capital":0,"ibgeState":43,"siafi":8423,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.0847,-51.6187]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e54"},"ibge":2203503,"name":"Elesbão Veloso","capital":0,"ibgeState":22,"siafi":1069,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.19947,-42.1355]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e55"},"ibge":3514908,"name":"Elias Fausto","capital":0,"ibgeState":35,"siafi":6399,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0428,-47.3682]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e56"},"ibge":2203602,"name":"Eliseu Martins","capital":0,"ibgeState":22,"siafi":1071,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.09629,-43.6705]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e57"},"ibge":3514924,"name":"Elisiário","capital":0,"ibgeState":35,"siafi":2975,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1678,-49.1146]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e58"},"ibge":2910305,"name":"Elísio Medrado","capital":0,"ibgeState":29,"siafi":3505,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.9417,-39.5191]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e59"},"ibge":3123601,"name":"Elói Mendes","capital":0,"ibgeState":31,"siafi":4471,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6088,-45.5691]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e5a"},"ibge":2505907,"name":"Emas","capital":0,"ibgeState":25,"siafi":2019,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.09964,-37.7163]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e5b"},"ibge":3514957,"name":"Embaúba","capital":0,"ibgeState":35,"siafi":7251,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9796,-48.8325]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e5c"},"ibge":3515004,"name":"Embu das Artes","capital":0,"ibgeState":35,"siafi":6401,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6437,-46.8579]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e5d"},"ibge":3515103,"name":"Embu-Guaçu","capital":0,"ibgeState":35,"siafi":6403,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8297,-46.8136]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e5e"},"ibge":3515129,"name":"Emilianópolis","capital":0,"ibgeState":35,"siafi":2961,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8314,-51.4832]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e5f"},"ibge":4306809,"name":"Encantado","capital":0,"ibgeState":43,"siafi":8633,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.2351,-51.8703]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e60"},"ibge":2403301,"name":"Encanto","capital":0,"ibgeState":24,"siafi":1665,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.10691,-38.3033]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e61"},"ibge":2910404,"name":"Encruzilhada","capital":0,"ibgeState":29,"siafi":3507,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.5302,-40.9124]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e62"},"ibge":4306908,"name":"Encruzilhada do Sul","capital":0,"ibgeState":43,"siafi":8635,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.543,-52.5204]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e63"},"ibge":4107405,"name":"Enéas Marques","capital":0,"ibgeState":41,"siafi":7545,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.9445,-53.1659]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e64"},"ibge":4107504,"name":"Engenheiro Beltrão","capital":0,"ibgeState":41,"siafi":7547,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.797,-52.2659]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e65"},"ibge":3123700,"name":"Engenheiro Caldas","capital":0,"ibgeState":31,"siafi":4473,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2065,-42.0503]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e66"},"ibge":3515152,"name":"Engenheiro Coelho","capital":0,"ibgeState":35,"siafi":2949,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4836,-47.211]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e67"},"ibge":3123809,"name":"Engenheiro Navarro","capital":0,"ibgeState":31,"siafi":4475,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.2831,-43.947]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e68"},"ibge":3301801,"name":"Engenheiro Paulo de Frontin","capital":0,"ibgeState":33,"siafi":5835,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5498,-43.6827]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e69"},"ibge":4306924,"name":"Engenho Velho","capital":0,"ibgeState":43,"siafi":5947,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.706,-52.9145]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e6a"},"ibge":3123858,"name":"Entre Folhas","capital":0,"ibgeState":31,"siafi":2663,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6218,-42.2306]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e6b"},"ibge":2910503,"name":"Entre Rios","capital":0,"ibgeState":29,"siafi":3509,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.9392,-38.0871]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e6c"},"ibge":4205175,"name":"Entre Rios","capital":0,"ibgeState":42,"siafi":912,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7225,-52.5585]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e6d"},"ibge":3123908,"name":"Entre Rios de Minas","capital":0,"ibgeState":31,"siafi":4477,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6706,-44.0654]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e6e"},"ibge":4107538,"name":"Entre Rios do Oeste","capital":0,"ibgeState":41,"siafi":5529,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.7042,-54.2385]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e6f"},"ibge":4306957,"name":"Entre Rios do Sul","capital":0,"ibgeState":43,"siafi":8421,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5298,-52.7347]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e70"},"ibge":4306932,"name":"Entre-Ijuís","capital":0,"ibgeState":43,"siafi":8419,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3686,-54.2686]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e71"},"ibge":1301506,"name":"Envira","capital":0,"ibgeState":13,"siafi":231,"ddd":97,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-7.43789,-70.0281]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e72"},"ibge":1200252,"name":"Epitaciolândia","capital":0,"ibgeState":12,"siafi":651,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-11.0188,-68.7341]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e73"},"ibge":2403400,"name":"Equador","capital":0,"ibgeState":24,"siafi":1667,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.93835,-36.717]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e74"},"ibge":4306973,"name":"Erebango","capital":0,"ibgeState":43,"siafi":8417,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.8544,-52.3005]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e75"},"ibge":4307005,"name":"Erechim","capital":0,"ibgeState":43,"siafi":8637,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6364,-52.2697]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e76"},"ibge":2304277,"name":"Ererê","capital":0,"ibgeState":23,"siafi":1245,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.02751,-38.3461]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e77"},"ibge":2900504,"name":"Érico Cardoso","capital":0,"ibgeState":29,"siafi":3309,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.4215,-42.1352]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e78"},"ibge":4205191,"name":"Ermo","capital":0,"ibgeState":42,"siafi":914,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.9869,-49.643]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e79"},"ibge":4307054,"name":"Ernestina","capital":0,"ibgeState":43,"siafi":8415,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.4977,-52.5836]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e7a"},"ibge":4307203,"name":"Erval Grande","capital":0,"ibgeState":43,"siafi":8641,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3926,-52.574]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e7b"},"ibge":4307302,"name":"Erval Seco","capital":0,"ibgeState":43,"siafi":8643,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5443,-53.5005]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e7c"},"ibge":4205209,"name":"Erval Velho","capital":0,"ibgeState":42,"siafi":8101,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2743,-51.443]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e7d"},"ibge":3124005,"name":"Ervália","capital":0,"ibgeState":31,"siafi":4479,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8403,-42.6544]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e7e"},"ibge":2605202,"name":"Escada","capital":0,"ibgeState":26,"siafi":2403,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.35672,-35.2241]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e7f"},"ibge":4307401,"name":"Esmeralda","capital":0,"ibgeState":43,"siafi":8645,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.0518,-51.1933]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e80"},"ibge":3124104,"name":"Esmeraldas","capital":0,"ibgeState":31,"siafi":4481,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.764,-44.3065]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e81"},"ibge":3124203,"name":"Espera Feliz","capital":0,"ibgeState":31,"siafi":4483,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6508,-41.9119]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e82"},"ibge":2506004,"name":"Esperança","capital":0,"ibgeState":25,"siafi":2021,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.02278,-35.8597]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e83"},"ibge":4307450,"name":"Esperança do Sul","capital":0,"ibgeState":43,"siafi":980,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3603,-53.9891]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e84"},"ibge":4107520,"name":"Esperança Nova","capital":0,"ibgeState":41,"siafi":850,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7238,-53.811]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e85"},"ibge":1707405,"name":"Esperantina","capital":0,"ibgeState":17,"siafi":181,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.36593,-48.5378]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e86"},"ibge":2203701,"name":"Esperantina","capital":0,"ibgeState":22,"siafi":1073,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.88863,-42.2324]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e87"},"ibge":2104008,"name":"Esperantinópolis","capital":0,"ibgeState":21,"siafi":777,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.87938,-44.6926]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e88"},"ibge":4107546,"name":"Espigão Alto do Iguaçu","capital":0,"ibgeState":41,"siafi":852,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4216,-52.8348]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e89"},"ibge":1100098,"name":"Espigão D'Oeste","capital":0,"ibgeState":11,"siafi":25,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.5266,-61.0252]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e8a"},"ibge":3124302,"name":"Espinosa","capital":0,"ibgeState":31,"siafi":4485,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.9249,-42.809]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e8b"},"ibge":2403509,"name":"Espírito Santo","capital":0,"ibgeState":24,"siafi":1669,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.33563,-35.3052]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e8c"},"ibge":3124401,"name":"Espírito Santo do Dourado","capital":0,"ibgeState":31,"siafi":4487,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0454,-45.9548]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e8d"},"ibge":3515186,"name":"Espírito Santo do Pinhal","capital":0,"ibgeState":35,"siafi":6865,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1909,-46.7477]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e8e"},"ibge":3515194,"name":"Espírito Santo do Turvo","capital":0,"ibgeState":35,"siafi":7253,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6925,-49.4341]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e8f"},"ibge":2910602,"name":"Esplanada","capital":0,"ibgeState":29,"siafi":3511,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.7942,-37.9432]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e90"},"ibge":4307500,"name":"Espumoso","capital":0,"ibgeState":43,"siafi":8647,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.7286,-52.8461]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e91"},"ibge":4307559,"name":"Estação","capital":0,"ibgeState":43,"siafi":7301,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9135,-52.2635]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e92"},"ibge":2802106,"name":"Estância","capital":0,"ibgeState":28,"siafi":3141,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.2659,-37.4484]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e93"},"ibge":4307609,"name":"Estância Velha","capital":0,"ibgeState":43,"siafi":8649,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6535,-51.1843]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e94"},"ibge":4307708,"name":"Esteio","capital":0,"ibgeState":43,"siafi":8651,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.852,-51.1841]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e95"},"ibge":3124500,"name":"Estiva","capital":0,"ibgeState":31,"siafi":4489,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4577,-46.0191]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e96"},"ibge":3557303,"name":"Estiva Gerbi","capital":0,"ibgeState":35,"siafi":2959,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2713,-46.9481]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e97"},"ibge":2104057,"name":"Estreito","capital":0,"ibgeState":21,"siafi":963,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.56077,-47.4431]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e98"},"ibge":4307807,"name":"Estrela","capital":0,"ibgeState":43,"siafi":8653,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5002,-51.9495]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e99"},"ibge":3515202,"name":"Estrela d'Oeste","capital":0,"ibgeState":35,"siafi":6405,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2875,-50.4049]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e9a"},"ibge":3124609,"name":"Estrela Dalva","capital":0,"ibgeState":31,"siafi":4491,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7412,-42.4574]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e9b"},"ibge":2702553,"name":"Estrela de Alagoas","capital":0,"ibgeState":27,"siafi":2643,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.39089,-36.7644]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e9c"},"ibge":3124708,"name":"Estrela do Indaiá","capital":0,"ibgeState":31,"siafi":4493,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5169,-45.7859]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e9d"},"ibge":5207501,"name":"Estrela do Norte","capital":0,"ibgeState":52,"siafi":9351,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.8665,-49.0716]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e9e"},"ibge":3515301,"name":"Estrela do Norte","capital":0,"ibgeState":35,"siafi":6407,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4859,-51.6632]}} +{"_id":{"$oid":"66f9d5ad542d90c053666e9f"},"ibge":3124807,"name":"Estrela do Sul","capital":0,"ibgeState":31,"siafi":4495,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7399,-47.6956]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ea0"},"ibge":4307815,"name":"Estrela Velha","capital":0,"ibgeState":43,"siafi":982,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.1713,-53.1639]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ea1"},"ibge":2910701,"name":"Euclides da Cunha","capital":0,"ibgeState":29,"siafi":3513,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.5078,-39.0153]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ea2"},"ibge":3515350,"name":"Euclides da Cunha Paulista","capital":0,"ibgeState":35,"siafi":7255,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5545,-52.5928]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ea3"},"ibge":4307831,"name":"Eugênio de Castro","capital":0,"ibgeState":43,"siafi":8413,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5315,-54.1506]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ea4"},"ibge":3124906,"name":"Eugenópolis","capital":0,"ibgeState":31,"siafi":4497,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1002,-42.1878]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ea5"},"ibge":2910727,"name":"Eunápolis","capital":0,"ibgeState":29,"siafi":3117,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.3715,-39.5821]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ea6"},"ibge":2304285,"name":"Eusébio","capital":0,"ibgeState":23,"siafi":1247,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.8925,-38.4559]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ea7"},"ibge":3125002,"name":"Ewbank da Câmara","capital":0,"ibgeState":31,"siafi":4499,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5498,-43.5068]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ea8"},"ibge":3125101,"name":"Extrema","capital":0,"ibgeState":31,"siafi":4501,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.854,-46.3178]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ea9"},"ibge":2403608,"name":"Extremoz","capital":0,"ibgeState":24,"siafi":1671,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.70143,-35.3048]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eaa"},"ibge":2605301,"name":"Exu","capital":0,"ibgeState":26,"siafi":2405,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.50364,-39.7238]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eab"},"ibge":2506103,"name":"Fagundes","capital":0,"ibgeState":25,"siafi":2023,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.34454,-35.7931]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eac"},"ibge":4307864,"name":"Fagundes Varela","capital":0,"ibgeState":43,"siafi":8411,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.8794,-51.7014]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ead"},"ibge":5207535,"name":"Faina","capital":0,"ibgeState":52,"siafi":9797,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.4473,-50.3622]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eae"},"ibge":3125200,"name":"Fama","capital":0,"ibgeState":31,"siafi":4503,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4089,-45.8286]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eaf"},"ibge":3125309,"name":"Faria Lemos","capital":0,"ibgeState":31,"siafi":4505,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8097,-42.0213]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eb0"},"ibge":2304301,"name":"Farias Brito","capital":0,"ibgeState":23,"siafi":1387,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.92146,-39.5651]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eb1"},"ibge":1503002,"name":"Faro","capital":0,"ibgeState":15,"siafi":459,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.16805,-56.7405]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eb2"},"ibge":4107553,"name":"Farol","capital":0,"ibgeState":41,"siafi":5511,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.0958,-52.6217]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eb3"},"ibge":4307906,"name":"Farroupilha","capital":0,"ibgeState":43,"siafi":8655,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.2227,-51.3419]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eb4"},"ibge":3515400,"name":"Fartura","capital":0,"ibgeState":35,"siafi":6409,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3916,-49.5124]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eb5"},"ibge":2203750,"name":"Fartura do Piauí","capital":0,"ibgeState":22,"siafi":2257,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.48342,-42.7912]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eb6"},"ibge":1707553,"name":"Fátima","capital":0,"ibgeState":17,"siafi":9683,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7603,-48.9076]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eb7"},"ibge":2910750,"name":"Fátima","capital":0,"ibgeState":29,"siafi":3089,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.616,-38.2239]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eb8"},"ibge":5003801,"name":"Fátima do Sul","capital":0,"ibgeState":50,"siafi":9075,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.3789,-54.5131]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eb9"},"ibge":4107603,"name":"Faxinal","capital":0,"ibgeState":41,"siafi":7549,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.0077,-51.3227]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eba"},"ibge":4308003,"name":"Faxinal do Soturno","capital":0,"ibgeState":43,"siafi":8657,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5788,-53.4484]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ebb"},"ibge":4205308,"name":"Faxinal dos Guedes","capital":0,"ibgeState":42,"siafi":8103,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.8451,-52.2596]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ebc"},"ibge":4308052,"name":"Faxinalzinho","capital":0,"ibgeState":43,"siafi":8409,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4238,-52.6789]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ebd"},"ibge":5207600,"name":"Fazenda Nova","capital":0,"ibgeState":52,"siafi":9353,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.1834,-50.7781]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ebe"},"ibge":4107652,"name":"Fazenda Rio Grande","capital":0,"ibgeState":41,"siafi":9983,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.6624,-49.3073]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ebf"},"ibge":4308078,"name":"Fazenda Vilanova","capital":0,"ibgeState":43,"siafi":984,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5885,-51.8217]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ec0"},"ibge":1200302,"name":"Feijó","capital":0,"ibgeState":12,"siafi":113,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-8.17054,-70.351]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ec1"},"ibge":2910776,"name":"Feira da Mata","capital":0,"ibgeState":29,"siafi":3275,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.2044,-44.2744]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ec2"},"ibge":2910800,"name":"Feira de Santana","capital":0,"ibgeState":29,"siafi":3515,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.2664,-38.9663]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ec3"},"ibge":2702603,"name":"Feira Grande","capital":0,"ibgeState":27,"siafi":2751,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.89859,-36.6815]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ec4"},"ibge":2605400,"name":"Feira Nova","capital":0,"ibgeState":26,"siafi":2407,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.94704,-35.3801]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ec5"},"ibge":2802205,"name":"Feira Nova","capital":0,"ibgeState":28,"siafi":3143,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.2616,-37.3147]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ec6"},"ibge":2104073,"name":"Feira Nova do Maranhão","capital":0,"ibgeState":21,"siafi":156,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.96508,-46.6786]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ec7"},"ibge":3125408,"name":"Felício dos Santos","capital":0,"ibgeState":31,"siafi":4507,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.0755,-43.2422]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ec8"},"ibge":2403707,"name":"Felipe Guerra","capital":0,"ibgeState":24,"siafi":1673,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.59274,-37.6875]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ec9"},"ibge":3125606,"name":"Felisburgo","capital":0,"ibgeState":31,"siafi":4511,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.6348,-40.7605]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eca"},"ibge":3125705,"name":"Felixlândia","capital":0,"ibgeState":31,"siafi":4513,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7507,-44.9004]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ecb"},"ibge":4308102,"name":"Feliz","capital":0,"ibgeState":43,"siafi":8659,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4527,-51.3032]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ecc"},"ibge":2702702,"name":"Feliz Deserto","capital":0,"ibgeState":27,"siafi":2753,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.2935,-36.3028]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ecd"},"ibge":5103700,"name":"Feliz Natal","capital":0,"ibgeState":51,"siafi":1036,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.385,-54.9227]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ece"},"ibge":4107702,"name":"Fênix","capital":0,"ibgeState":41,"siafi":7551,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.9135,-51.9805]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ecf"},"ibge":4107736,"name":"Fernandes Pinheiro","capital":0,"ibgeState":41,"siafi":854,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4107,-50.5456]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ed0"},"ibge":3125804,"name":"Fernandes Tourinho","capital":0,"ibgeState":31,"siafi":4515,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.1541,-42.0803]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ed1"},"ibge":2605459,"name":"Fernando de Noronha","capital":0,"ibgeState":26,"siafi":3001,"ddd":81,"timeZone":"America/Noronha","location":{"type":"Point","coordinates":[-3.8396,-32.4107]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ed2"},"ibge":2104081,"name":"Fernando Falcão","capital":0,"ibgeState":21,"siafi":158,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.16207,-44.8979]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ed3"},"ibge":2403756,"name":"Fernando Pedroza","capital":0,"ibgeState":24,"siafi":416,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.69096,-36.5282]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ed4"},"ibge":3515608,"name":"Fernando Prestes","capital":0,"ibgeState":35,"siafi":6413,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2661,-48.6874]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ed5"},"ibge":3515509,"name":"Fernandópolis","capital":0,"ibgeState":35,"siafi":6411,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2806,-50.2471]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ed6"},"ibge":3515657,"name":"Fernão","capital":0,"ibgeState":35,"siafi":796,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3607,-49.5187]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ed7"},"ibge":3515707,"name":"Ferraz de Vasconcelos","capital":0,"ibgeState":35,"siafi":6415,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5411,-46.371]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ed8"},"ibge":1600238,"name":"Ferreira Gomes","capital":0,"ibgeState":16,"siafi":611,"ddd":96,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[0.857256,-51.1795]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ed9"},"ibge":2605509,"name":"Ferreiros","capital":0,"ibgeState":26,"siafi":2409,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.44666,-35.2373]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eda"},"ibge":3125903,"name":"Ferros","capital":0,"ibgeState":31,"siafi":4517,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2343,-43.0192]}} +{"_id":{"$oid":"66f9d5ad542d90c053666edb"},"ibge":3125952,"name":"Fervedouro","capital":0,"ibgeState":31,"siafi":2683,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.726,-42.279]}} +{"_id":{"$oid":"66f9d5ad542d90c053666edc"},"ibge":4107751,"name":"Figueira","capital":0,"ibgeState":41,"siafi":8457,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8455,-50.4031]}} +{"_id":{"$oid":"66f9d5ad542d90c053666edd"},"ibge":5003900,"name":"Figueirão","capital":0,"ibgeState":50,"siafi":1178,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-18.6782,-53.638]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ede"},"ibge":1707652,"name":"Figueirópolis","capital":0,"ibgeState":17,"siafi":9667,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.1312,-49.1748]}} +{"_id":{"$oid":"66f9d5ad542d90c053666edf"},"ibge":5103809,"name":"Figueirópolis D'Oeste","capital":0,"ibgeState":51,"siafi":9881,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.4439,-58.7391]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ee0"},"ibge":1707702,"name":"Filadélfia","capital":0,"ibgeState":17,"siafi":9355,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.33501,-47.4954]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ee1"},"ibge":2910859,"name":"Filadélfia","capital":0,"ibgeState":29,"siafi":3091,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7405,-40.1437]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ee2"},"ibge":2910909,"name":"Firmino Alves","capital":0,"ibgeState":29,"siafi":3517,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.9823,-39.9269]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ee3"},"ibge":5207808,"name":"Firminópolis","capital":0,"ibgeState":52,"siafi":9357,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.5778,-50.304]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ee4"},"ibge":2702801,"name":"Flexeiras","capital":0,"ibgeState":27,"siafi":2755,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.27281,-35.7139]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ee5"},"ibge":4107850,"name":"Flor da Serra do Sul","capital":0,"ibgeState":41,"siafi":5475,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.2523,-53.3092]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ee6"},"ibge":4205357,"name":"Flor do Sertão","capital":0,"ibgeState":42,"siafi":916,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7811,-53.3505]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ee7"},"ibge":3515806,"name":"Flora Rica","capital":0,"ibgeState":35,"siafi":6417,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6727,-51.3821]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ee8"},"ibge":4107801,"name":"Floraí","capital":0,"ibgeState":41,"siafi":7553,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3178,-52.3029]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ee9"},"ibge":2403806,"name":"Florânia","capital":0,"ibgeState":24,"siafi":1675,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.12264,-36.8226]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eea"},"ibge":3515905,"name":"Floreal","capital":0,"ibgeState":35,"siafi":6419,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6752,-50.1513]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eeb"},"ibge":2605608,"name":"Flores","capital":0,"ibgeState":26,"siafi":2411,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.85842,-37.9715]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eec"},"ibge":4308201,"name":"Flores da Cunha","capital":0,"ibgeState":43,"siafi":8661,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.0261,-51.1875]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eed"},"ibge":5207907,"name":"Flores de Goiás","capital":0,"ibgeState":52,"siafi":9359,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.4451,-47.0417]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eee"},"ibge":2203800,"name":"Flores do Piauí","capital":0,"ibgeState":22,"siafi":1075,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.78793,-42.918]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eef"},"ibge":4107900,"name":"Floresta","capital":0,"ibgeState":41,"siafi":7555,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6031,-52.0807]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ef0"},"ibge":2605707,"name":"Floresta","capital":0,"ibgeState":26,"siafi":2413,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.60307,-38.5687]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ef1"},"ibge":2911006,"name":"Floresta Azul","capital":0,"ibgeState":29,"siafi":3519,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.8629,-39.6579]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ef2"},"ibge":1503044,"name":"Floresta do Araguaia","capital":0,"ibgeState":15,"siafi":52,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.55335,-49.7125]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ef3"},"ibge":2203859,"name":"Floresta do Piauí","capital":0,"ibgeState":22,"siafi":314,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.46682,-41.7883]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ef4"},"ibge":3126000,"name":"Florestal","capital":0,"ibgeState":31,"siafi":4519,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.888,-44.4318]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ef5"},"ibge":4108007,"name":"Florestópolis","capital":0,"ibgeState":41,"siafi":7557,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8623,-51.3882]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ef6"},"ibge":2203909,"name":"Floriano","capital":0,"ibgeState":22,"siafi":1077,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.77182,-43.0241]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ef7"},"ibge":4308250,"name":"Floriano Peixoto","capital":0,"ibgeState":43,"siafi":986,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.8614,-52.0838]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ef8"},"ibge":4205407,"name":"Florianópolis","capital":1,"ibgeState":42,"siafi":8105,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5945,-48.5477]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ef9"},"ibge":4108106,"name":"Flórida","capital":0,"ibgeState":41,"siafi":7559,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0847,-51.9546]}} +{"_id":{"$oid":"66f9d5ad542d90c053666efa"},"ibge":3516002,"name":"Flórida Paulista","capital":0,"ibgeState":35,"siafi":6421,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6127,-51.1724]}} +{"_id":{"$oid":"66f9d5ad542d90c053666efb"},"ibge":3516101,"name":"Florínia","capital":0,"ibgeState":35,"siafi":6423,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.868,-50.6814]}} +{"_id":{"$oid":"66f9d5ad542d90c053666efc"},"ibge":1301605,"name":"Fonte Boa","capital":0,"ibgeState":13,"siafi":233,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-2.52342,-66.0942]}} +{"_id":{"$oid":"66f9d5ad542d90c053666efd"},"ibge":4308300,"name":"Fontoura Xavier","capital":0,"ibgeState":43,"siafi":8663,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.9817,-52.3445]}} +{"_id":{"$oid":"66f9d5ad542d90c053666efe"},"ibge":3126109,"name":"Formiga","capital":0,"ibgeState":31,"siafi":4521,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4618,-45.4268]}} +{"_id":{"$oid":"66f9d5ad542d90c053666eff"},"ibge":4308409,"name":"Formigueiro","capital":0,"ibgeState":43,"siafi":8665,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.0035,-53.4959]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f00"},"ibge":5208004,"name":"Formosa","capital":0,"ibgeState":52,"siafi":9361,"ddd":61,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.54,-47.337]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f01"},"ibge":2104099,"name":"Formosa da Serra Negra","capital":0,"ibgeState":21,"siafi":160,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.44017,-46.1916]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f02"},"ibge":4108205,"name":"Formosa do Oeste","capital":0,"ibgeState":41,"siafi":7561,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.2951,-53.3114]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f03"},"ibge":2911105,"name":"Formosa do Rio Preto","capital":0,"ibgeState":29,"siafi":3521,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.0328,-45.193]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f04"},"ibge":4205431,"name":"Formosa do Sul","capital":0,"ibgeState":42,"siafi":5581,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.6453,-52.7946]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f05"},"ibge":5208103,"name":"Formoso","capital":0,"ibgeState":52,"siafi":9363,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.6499,-48.8775]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f06"},"ibge":3126208,"name":"Formoso","capital":0,"ibgeState":31,"siafi":4523,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.9446,-46.2371]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f07"},"ibge":1708205,"name":"Formoso do Araguaia","capital":0,"ibgeState":17,"siafi":9365,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.7976,-49.5316]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f08"},"ibge":4308433,"name":"Forquetinha","capital":0,"ibgeState":43,"siafi":1142,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3828,-52.0981]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f09"},"ibge":2304350,"name":"Forquilha","capital":0,"ibgeState":23,"siafi":1591,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.79945,-40.2634]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f0a"},"ibge":4205456,"name":"Forquilhinha","capital":0,"ibgeState":42,"siafi":973,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.7454,-49.4785]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f0b"},"ibge":2304400,"name":"Fortaleza","capital":1,"ibgeState":23,"siafi":1389,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.71664,-38.5423]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f0c"},"ibge":3126307,"name":"Fortaleza de Minas","capital":0,"ibgeState":31,"siafi":4525,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8508,-46.712]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f0d"},"ibge":1708254,"name":"Fortaleza do Tabocão","capital":0,"ibgeState":17,"siafi":345,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.05611,-48.5206]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f0e"},"ibge":2104107,"name":"Fortaleza dos Nogueiras","capital":0,"ibgeState":21,"siafi":779,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.95983,-46.1749]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f0f"},"ibge":4308458,"name":"Fortaleza dos Valos","capital":0,"ibgeState":43,"siafi":9827,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.7986,-53.2249]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f10"},"ibge":2304459,"name":"Fortim","capital":0,"ibgeState":23,"siafi":987,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.45126,-37.7981]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f11"},"ibge":2104206,"name":"Fortuna","capital":0,"ibgeState":21,"siafi":781,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.72792,-44.1565]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f12"},"ibge":3126406,"name":"Fortuna de Minas","capital":0,"ibgeState":31,"siafi":4527,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5578,-44.4472]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f13"},"ibge":4108304,"name":"Foz do Iguaçu","capital":0,"ibgeState":41,"siafi":7563,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.5427,-54.5827]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f14"},"ibge":4108452,"name":"Foz do Jordão","capital":0,"ibgeState":41,"siafi":856,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.7371,-52.1188]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f15"},"ibge":4205506,"name":"Fraiburgo","capital":0,"ibgeState":42,"siafi":8107,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0233,-50.92]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f16"},"ibge":3516200,"name":"Franca","capital":0,"ibgeState":35,"siafi":6425,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5352,-47.4039]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f17"},"ibge":2204006,"name":"Francinópolis","capital":0,"ibgeState":22,"siafi":1079,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.39334,-42.2591]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f18"},"ibge":4108320,"name":"Francisco Alves","capital":0,"ibgeState":41,"siafi":7977,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.0667,-53.8461]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f19"},"ibge":2204105,"name":"Francisco Ayres","capital":0,"ibgeState":22,"siafi":1081,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.62606,-42.6881]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f1a"},"ibge":3126505,"name":"Francisco Badaró","capital":0,"ibgeState":31,"siafi":4529,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.9883,-42.3568]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f1b"},"ibge":4108403,"name":"Francisco Beltrão","capital":0,"ibgeState":41,"siafi":7565,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.0817,-53.0535]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f1c"},"ibge":2403905,"name":"Francisco Dantas","capital":0,"ibgeState":24,"siafi":1677,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.07234,-38.1212]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f1d"},"ibge":3126604,"name":"Francisco Dumont","capital":0,"ibgeState":31,"siafi":4531,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.3107,-44.2317]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f1e"},"ibge":2204154,"name":"Francisco Macedo","capital":0,"ibgeState":22,"siafi":316,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.331,-40.788]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f1f"},"ibge":3516309,"name":"Francisco Morato","capital":0,"ibgeState":35,"siafi":6427,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2792,-46.7448]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f20"},"ibge":3126703,"name":"Francisco Sá","capital":0,"ibgeState":31,"siafi":4533,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.4827,-43.4896]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f21"},"ibge":2204204,"name":"Francisco Santos","capital":0,"ibgeState":22,"siafi":1083,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.99491,-41.1288]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f22"},"ibge":3126752,"name":"Franciscópolis","capital":0,"ibgeState":31,"siafi":608,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.9578,-42.0094]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f23"},"ibge":3516408,"name":"Franco da Rocha","capital":0,"ibgeState":35,"siafi":6429,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3229,-46.729]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f24"},"ibge":2304509,"name":"Frecheirinha","capital":0,"ibgeState":23,"siafi":1391,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.75557,-40.818]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f25"},"ibge":4308508,"name":"Frederico Westphalen","capital":0,"ibgeState":43,"siafi":8667,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3586,-53.3958]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f26"},"ibge":3126802,"name":"Frei Gaspar","capital":0,"ibgeState":31,"siafi":4535,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.0709,-41.4325]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f27"},"ibge":3126901,"name":"Frei Inocêncio","capital":0,"ibgeState":31,"siafi":4537,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5556,-41.9121]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f28"},"ibge":3126950,"name":"Frei Lagonegro","capital":0,"ibgeState":31,"siafi":610,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.1751,-42.7617]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f29"},"ibge":2506202,"name":"Frei Martinho","capital":0,"ibgeState":25,"siafi":2025,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.39759,-36.4526]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f2a"},"ibge":2605806,"name":"Frei Miguelinho","capital":0,"ibgeState":26,"siafi":2415,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.93918,-35.9113]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f2b"},"ibge":2802304,"name":"Frei Paulo","capital":0,"ibgeState":28,"siafi":3145,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.5513,-37.5279]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f2c"},"ibge":4205555,"name":"Frei Rogério","capital":0,"ibgeState":42,"siafi":918,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.175,-50.8076]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f2d"},"ibge":3127008,"name":"Fronteira","capital":0,"ibgeState":31,"siafi":4539,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2748,-49.1984]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f2e"},"ibge":3127057,"name":"Fronteira dos Vales","capital":0,"ibgeState":31,"siafi":4935,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.8898,-40.923]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f2f"},"ibge":2204303,"name":"Fronteiras","capital":0,"ibgeState":22,"siafi":1085,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.08173,-40.6146]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f30"},"ibge":3127073,"name":"Fruta de Leite","capital":0,"ibgeState":31,"siafi":612,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.1225,-42.5288]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f31"},"ibge":3127107,"name":"Frutal","capital":0,"ibgeState":31,"siafi":4541,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0259,-48.9355]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f32"},"ibge":2404002,"name":"Frutuoso Gomes","capital":0,"ibgeState":24,"siafi":1751,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.15669,-37.8375]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f33"},"ibge":3202207,"name":"Fundão","capital":0,"ibgeState":32,"siafi":5643,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.937,-40.4078]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f34"},"ibge":3127206,"name":"Funilândia","capital":0,"ibgeState":31,"siafi":4543,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.3661,-44.061]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f35"},"ibge":3516507,"name":"Gabriel Monteiro","capital":0,"ibgeState":35,"siafi":6431,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5294,-50.5573]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f36"},"ibge":2506251,"name":"Gado Bravo","capital":0,"ibgeState":25,"siafi":480,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.58279,-35.7899]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f37"},"ibge":3516606,"name":"Gália","capital":0,"ibgeState":35,"siafi":6433,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2918,-49.5504]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f38"},"ibge":3127305,"name":"Galiléia","capital":0,"ibgeState":31,"siafi":4545,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.0005,-41.5387]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f39"},"ibge":2404101,"name":"Galinhos","capital":0,"ibgeState":24,"siafi":1679,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.0909,-36.2754]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f3a"},"ibge":4205605,"name":"Galvão","capital":0,"ibgeState":42,"siafi":8109,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.4549,-52.6875]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f3b"},"ibge":2605905,"name":"Gameleira","capital":0,"ibgeState":26,"siafi":2417,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.5798,-35.3846]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f3c"},"ibge":5208152,"name":"Gameleira de Goiás","capital":0,"ibgeState":52,"siafi":1072,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.4854,-48.6454]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f3d"},"ibge":3127339,"name":"Gameleiras","capital":0,"ibgeState":31,"siafi":614,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.0829,-43.125]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f3e"},"ibge":2911204,"name":"Gandu","capital":0,"ibgeState":29,"siafi":3523,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.7441,-39.4747]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f3f"},"ibge":2606002,"name":"Garanhuns","capital":0,"ibgeState":26,"siafi":2419,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.88243,-36.4966]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f40"},"ibge":2802403,"name":"Gararu","capital":0,"ibgeState":28,"siafi":3149,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.9722,-37.0869]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f41"},"ibge":3516705,"name":"Garça","capital":0,"ibgeState":35,"siafi":6435,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2125,-49.6546]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f42"},"ibge":4308607,"name":"Garibaldi","capital":0,"ibgeState":43,"siafi":8669,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.259,-51.5352]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f43"},"ibge":4205704,"name":"Garopaba","capital":0,"ibgeState":42,"siafi":8113,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.0275,-48.6192]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f44"},"ibge":1503077,"name":"Garrafão do Norte","capital":0,"ibgeState":15,"siafi":585,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.92986,-47.0505]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f45"},"ibge":4308656,"name":"Garruchos","capital":0,"ibgeState":43,"siafi":6081,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.1944,-55.6383]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f46"},"ibge":4205803,"name":"Garuva","capital":0,"ibgeState":42,"siafi":8115,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.0292,-48.852]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f47"},"ibge":4205902,"name":"Gaspar","capital":0,"ibgeState":42,"siafi":8117,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9336,-48.9534]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f48"},"ibge":3516804,"name":"Gastão Vidigal","capital":0,"ibgeState":35,"siafi":6437,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7948,-50.1912]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f49"},"ibge":5103858,"name":"Gaúcha do Norte","capital":0,"ibgeState":51,"siafi":1038,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-13.2443,-53.0809]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f4a"},"ibge":4308706,"name":"Gaurama","capital":0,"ibgeState":43,"siafi":8671,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5856,-52.0915]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f4b"},"ibge":2911253,"name":"Gavião","capital":0,"ibgeState":29,"siafi":3093,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.4688,-39.7757]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f4c"},"ibge":3516853,"name":"Gavião Peixoto","capital":0,"ibgeState":35,"siafi":798,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8367,-48.4957]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f4d"},"ibge":2204352,"name":"Geminiano","capital":0,"ibgeState":22,"siafi":318,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.15476,-41.3409]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f4e"},"ibge":4308805,"name":"General Câmara","capital":0,"ibgeState":43,"siafi":8673,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.9032,-51.7612]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f4f"},"ibge":5103908,"name":"General Carneiro","capital":0,"ibgeState":51,"siafi":9077,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.7094,-52.7574]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f50"},"ibge":4108502,"name":"General Carneiro","capital":0,"ibgeState":41,"siafi":7567,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.425,-51.3172]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f51"},"ibge":2802502,"name":"General Maynard","capital":0,"ibgeState":28,"siafi":3147,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.6835,-36.9838]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f52"},"ibge":3516903,"name":"General Salgado","capital":0,"ibgeState":35,"siafi":6439,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6485,-50.364]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f53"},"ibge":2304608,"name":"General Sampaio","capital":0,"ibgeState":23,"siafi":1393,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.04351,-39.454]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f54"},"ibge":4308854,"name":"Gentil","capital":0,"ibgeState":43,"siafi":5799,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.4316,-52.0337]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f55"},"ibge":2911303,"name":"Gentio do Ouro","capital":0,"ibgeState":29,"siafi":3525,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.4342,-42.5077]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f56"},"ibge":3517000,"name":"Getulina","capital":0,"ibgeState":35,"siafi":6441,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7961,-49.9312]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f57"},"ibge":4308904,"name":"Getúlio Vargas","capital":0,"ibgeState":43,"siafi":8677,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.8911,-52.2294]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f58"},"ibge":2204402,"name":"Gilbués","capital":0,"ibgeState":22,"siafi":1087,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.83001,-45.3423]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f59"},"ibge":2702900,"name":"Girau do Ponciano","capital":0,"ibgeState":27,"siafi":2757,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.88404,-36.8316]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f5a"},"ibge":4309001,"name":"Giruá","capital":0,"ibgeState":43,"siafi":8679,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.0297,-54.3517]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f5b"},"ibge":3127354,"name":"Glaucilândia","capital":0,"ibgeState":31,"siafi":616,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.8481,-43.692]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f5c"},"ibge":3517109,"name":"Glicério","capital":0,"ibgeState":35,"siafi":6443,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3812,-50.2123]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f5d"},"ibge":2911402,"name":"Glória","capital":0,"ibgeState":29,"siafi":3527,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.34382,-38.2544]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f5e"},"ibge":5103957,"name":"Glória D'Oeste","capital":0,"ibgeState":51,"siafi":135,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.768,-58.3108]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f5f"},"ibge":5004007,"name":"Glória de Dourados","capital":0,"ibgeState":50,"siafi":9079,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.4136,-54.2335]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f60"},"ibge":2606101,"name":"Glória do Goitá","capital":0,"ibgeState":26,"siafi":2421,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.00568,-35.2904]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f61"},"ibge":4309050,"name":"Glorinha","capital":0,"ibgeState":43,"siafi":8407,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.8798,-50.7734]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f62"},"ibge":2104305,"name":"Godofredo Viana","capital":0,"ibgeState":21,"siafi":783,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.40259,-45.7795]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f63"},"ibge":4108551,"name":"Godoy Moreira","capital":0,"ibgeState":41,"siafi":9947,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.173,-51.9246]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f64"},"ibge":3127370,"name":"Goiabeira","capital":0,"ibgeState":31,"siafi":618,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.9807,-41.2235]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f65"},"ibge":3127388,"name":"Goianá","capital":0,"ibgeState":31,"siafi":620,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.536,-43.1957]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f66"},"ibge":2606200,"name":"Goiana","capital":0,"ibgeState":26,"siafi":2423,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.5606,-34.9959]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f67"},"ibge":5208400,"name":"Goianápolis","capital":0,"ibgeState":52,"siafi":9367,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.5098,-49.0234]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f68"},"ibge":5208509,"name":"Goiandira","capital":0,"ibgeState":52,"siafi":9369,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.1352,-48.0875]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f69"},"ibge":5208608,"name":"Goianésia","capital":0,"ibgeState":52,"siafi":9371,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.3118,-49.1162]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f6a"},"ibge":1503093,"name":"Goianésia do Pará","capital":0,"ibgeState":15,"siafi":627,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.84338,-49.0974]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f6b"},"ibge":5208707,"name":"Goiânia","capital":1,"ibgeState":52,"siafi":9373,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.6864,-49.2643]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f6c"},"ibge":2404200,"name":"Goianinha","capital":0,"ibgeState":24,"siafi":1681,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.26486,-35.1943]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f6d"},"ibge":5208806,"name":"Goianira","capital":0,"ibgeState":52,"siafi":9375,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.4947,-49.427]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f6e"},"ibge":1708304,"name":"Goianorte","capital":0,"ibgeState":17,"siafi":9699,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.77413,-48.9313]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f6f"},"ibge":5208905,"name":"Goiás","capital":0,"ibgeState":52,"siafi":9377,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.9333,-50.14]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f70"},"ibge":1709005,"name":"Goiatins","capital":0,"ibgeState":17,"siafi":9533,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.71478,-47.3252]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f71"},"ibge":5209101,"name":"Goiatuba","capital":0,"ibgeState":52,"siafi":9379,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.0105,-49.3658]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f72"},"ibge":4108601,"name":"Goioerê","capital":0,"ibgeState":41,"siafi":7569,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.1835,-53.0248]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f73"},"ibge":4108650,"name":"Goioxim","capital":0,"ibgeState":41,"siafi":858,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.1927,-51.9911]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f74"},"ibge":3127404,"name":"Gonçalves","capital":0,"ibgeState":31,"siafi":4547,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6545,-45.8556]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f75"},"ibge":2104404,"name":"Gonçalves Dias","capital":0,"ibgeState":21,"siafi":785,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.1475,-44.3013]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f76"},"ibge":2911501,"name":"Gongogi","capital":0,"ibgeState":29,"siafi":3529,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.3195,-39.469]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f77"},"ibge":3127503,"name":"Gonzaga","capital":0,"ibgeState":31,"siafi":4549,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.8196,-42.4769]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f78"},"ibge":3127602,"name":"Gouveia","capital":0,"ibgeState":31,"siafi":4551,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4519,-43.7423]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f79"},"ibge":5209150,"name":"Gouvelândia","capital":0,"ibgeState":52,"siafi":9799,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.6238,-50.0805]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f7a"},"ibge":2104503,"name":"Governador Archer","capital":0,"ibgeState":21,"siafi":787,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.02078,-44.2754]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f7b"},"ibge":4206009,"name":"Governador Celso Ramos","capital":0,"ibgeState":42,"siafi":8111,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3172,-48.5576]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f7c"},"ibge":2404309,"name":"Governador Dix-Sept Rosado","capital":0,"ibgeState":24,"siafi":1683,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.44887,-37.5183]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f7d"},"ibge":2104552,"name":"Governador Edison Lobão","capital":0,"ibgeState":21,"siafi":162,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.74973,-47.3646]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f7e"},"ibge":2104602,"name":"Governador Eugênio Barros","capital":0,"ibgeState":21,"siafi":789,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.31897,-44.2469]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f7f"},"ibge":1101005,"name":"Governador Jorge Teixeira","capital":0,"ibgeState":11,"siafi":693,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.61,-62.7371]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f80"},"ibge":3202256,"name":"Governador Lindenberg","capital":0,"ibgeState":32,"siafi":1114,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.1864,-40.4473]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f81"},"ibge":2104628,"name":"Governador Luiz Rocha","capital":0,"ibgeState":21,"siafi":164,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.47835,-44.0774]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f82"},"ibge":2911600,"name":"Governador Mangabeira","capital":0,"ibgeState":29,"siafi":3531,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.5994,-39.0412]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f83"},"ibge":2104651,"name":"Governador Newton Bello","capital":0,"ibgeState":21,"siafi":166,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.43245,-45.6619]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f84"},"ibge":2104677,"name":"Governador Nunes Freire","capital":0,"ibgeState":21,"siafi":168,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.12899,-45.8777]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f85"},"ibge":3127701,"name":"Governador Valadares","capital":0,"ibgeState":31,"siafi":4553,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.8545,-41.9555]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f86"},"ibge":2304657,"name":"Graça","capital":0,"ibgeState":23,"siafi":1249,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.04422,-40.749]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f87"},"ibge":2104701,"name":"Graça Aranha","capital":0,"ibgeState":21,"siafi":791,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.40547,-44.3358]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f88"},"ibge":2802601,"name":"Gracho Cardoso","capital":0,"ibgeState":28,"siafi":3151,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.2252,-37.2006]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f89"},"ibge":2104800,"name":"Grajaú","capital":0,"ibgeState":21,"siafi":793,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.81367,-46.1462]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f8a"},"ibge":4309100,"name":"Gramado","capital":0,"ibgeState":43,"siafi":8681,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3734,-50.8762]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f8b"},"ibge":4309126,"name":"Gramado dos Loureiros","capital":0,"ibgeState":43,"siafi":5949,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4429,-52.9149]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f8c"},"ibge":4309159,"name":"Gramado Xavier","capital":0,"ibgeState":43,"siafi":5763,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.2706,-52.5795]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f8d"},"ibge":4108700,"name":"Grandes Rios","capital":0,"ibgeState":41,"siafi":7959,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.1466,-51.5094]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f8e"},"ibge":2606309,"name":"Granito","capital":0,"ibgeState":26,"siafi":2425,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.70711,-39.615]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f8f"},"ibge":2304707,"name":"Granja","capital":0,"ibgeState":23,"siafi":1395,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.12788,-40.8372]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f90"},"ibge":2304806,"name":"Granjeiro","capital":0,"ibgeState":23,"siafi":1397,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.88134,-39.2144]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f91"},"ibge":3127800,"name":"Grão Mogol","capital":0,"ibgeState":31,"siafi":4555,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.5662,-42.8923]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f92"},"ibge":4206108,"name":"Grão Pará","capital":0,"ibgeState":42,"siafi":8119,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.1809,-49.2252]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f93"},"ibge":2606408,"name":"Gravatá","capital":0,"ibgeState":26,"siafi":2427,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.21118,-35.5675]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f94"},"ibge":4309209,"name":"Gravataí","capital":0,"ibgeState":43,"siafi":8683,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.9413,-50.9869]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f95"},"ibge":4206207,"name":"Gravatal","capital":0,"ibgeState":42,"siafi":8121,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3208,-49.0427]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f96"},"ibge":2304905,"name":"Groaíras","capital":0,"ibgeState":23,"siafi":1399,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.91787,-40.3852]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f97"},"ibge":2404408,"name":"Grossos","capital":0,"ibgeState":24,"siafi":1685,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.98068,-37.1621]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f98"},"ibge":3127909,"name":"Grupiara","capital":0,"ibgeState":31,"siafi":4557,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5003,-47.7318]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f99"},"ibge":4309258,"name":"Guabiju","capital":0,"ibgeState":43,"siafi":8405,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5421,-51.6948]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f9a"},"ibge":4206306,"name":"Guabiruba","capital":0,"ibgeState":42,"siafi":8123,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0808,-48.9804]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f9b"},"ibge":3202306,"name":"Guaçuí","capital":0,"ibgeState":32,"siafi":5645,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7668,-41.6734]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f9c"},"ibge":2204501,"name":"Guadalupe","capital":0,"ibgeState":22,"siafi":1089,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.78285,-43.5594]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f9d"},"ibge":4309308,"name":"Guaíba","capital":0,"ibgeState":43,"siafi":8685,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.1086,-51.3233]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f9e"},"ibge":3517208,"name":"Guaiçara","capital":0,"ibgeState":35,"siafi":6445,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6195,-49.8013]}} +{"_id":{"$oid":"66f9d5ad542d90c053666f9f"},"ibge":3517307,"name":"Guaimbê","capital":0,"ibgeState":35,"siafi":6447,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9091,-49.8986]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fa0"},"ibge":3517406,"name":"Guaíra","capital":0,"ibgeState":35,"siafi":6449,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3196,-48.312]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fa1"},"ibge":4108809,"name":"Guaíra","capital":0,"ibgeState":41,"siafi":7571,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.085,-54.2573]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fa2"},"ibge":4108908,"name":"Guairaçá","capital":0,"ibgeState":41,"siafi":7573,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.932,-52.6906]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fa3"},"ibge":2304954,"name":"Guaiúba","capital":0,"ibgeState":23,"siafi":1251,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.04057,-38.6404]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fa4"},"ibge":1301654,"name":"Guajará","capital":0,"ibgeState":13,"siafi":967,"ddd":97,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-7.53797,-72.5907]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fa5"},"ibge":1100106,"name":"Guajará-Mirim","capital":0,"ibgeState":11,"siafi":1,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.7889,-65.3296]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fa6"},"ibge":2911659,"name":"Guajeru","capital":0,"ibgeState":29,"siafi":3095,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.5467,-41.9381]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fa7"},"ibge":2404507,"name":"Guamaré","capital":0,"ibgeState":24,"siafi":1687,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.10619,-36.3222]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fa8"},"ibge":4108957,"name":"Guamiranga","capital":0,"ibgeState":41,"siafi":860,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.1912,-50.8021]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fa9"},"ibge":2911709,"name":"Guanambi","capital":0,"ibgeState":29,"siafi":3533,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.2231,-42.7799]}} +{"_id":{"$oid":"66f9d5ad542d90c053666faa"},"ibge":3128006,"name":"Guanhães","capital":0,"ibgeState":31,"siafi":4559,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7713,-42.9312]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fab"},"ibge":3128105,"name":"Guapé","capital":0,"ibgeState":31,"siafi":4561,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7631,-45.9152]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fac"},"ibge":3517505,"name":"Guapiaçu","capital":0,"ibgeState":35,"siafi":6451,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7959,-49.2172]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fad"},"ibge":3517604,"name":"Guapiara","capital":0,"ibgeState":35,"siafi":6453,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.1892,-48.5295]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fae"},"ibge":3301850,"name":"Guapimirim","capital":0,"ibgeState":33,"siafi":2907,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5347,-42.9895]}} +{"_id":{"$oid":"66f9d5ad542d90c053666faf"},"ibge":4109005,"name":"Guapirama","capital":0,"ibgeState":41,"siafi":7575,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5203,-50.0407]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fb0"},"ibge":5209200,"name":"Guapó","capital":0,"ibgeState":52,"siafi":9381,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.8297,-49.5345]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fb1"},"ibge":4309407,"name":"Guaporé","capital":0,"ibgeState":43,"siafi":8687,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.8399,-51.8895]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fb2"},"ibge":4109104,"name":"Guaporema","capital":0,"ibgeState":41,"siafi":7577,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3402,-52.7786]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fb3"},"ibge":3517703,"name":"Guará","capital":0,"ibgeState":35,"siafi":6455,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4302,-47.8236]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fb4"},"ibge":2506301,"name":"Guarabira","capital":0,"ibgeState":25,"siafi":2027,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.85064,-35.485]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fb5"},"ibge":3517802,"name":"Guaraçaí","capital":0,"ibgeState":35,"siafi":6457,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0292,-51.2119]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fb6"},"ibge":3517901,"name":"Guaraci","capital":0,"ibgeState":35,"siafi":6459,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4977,-48.9391]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fb7"},"ibge":4109203,"name":"Guaraci","capital":0,"ibgeState":41,"siafi":7579,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9694,-51.6504]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fb8"},"ibge":3128204,"name":"Guaraciaba","capital":0,"ibgeState":31,"siafi":4563,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5716,-43.0094]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fb9"},"ibge":4206405,"name":"Guaraciaba","capital":0,"ibgeState":42,"siafi":8125,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.6042,-53.5243]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fba"},"ibge":2305001,"name":"Guaraciaba do Norte","capital":0,"ibgeState":23,"siafi":1401,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.15814,-40.7476]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fbb"},"ibge":3128253,"name":"Guaraciama","capital":0,"ibgeState":31,"siafi":622,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.0142,-43.6675]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fbc"},"ibge":1709302,"name":"Guaraí","capital":0,"ibgeState":17,"siafi":9627,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.83543,-48.5114]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fbd"},"ibge":5209291,"name":"Guaraíta","capital":0,"ibgeState":52,"siafi":65,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.6121,-50.0265]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fbe"},"ibge":2305100,"name":"Guaramiranga","capital":0,"ibgeState":23,"siafi":1403,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.26248,-38.932]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fbf"},"ibge":4206504,"name":"Guaramirim","capital":0,"ibgeState":42,"siafi":8127,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.4688,-49.0026]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fc0"},"ibge":3128303,"name":"Guaranésia","capital":0,"ibgeState":31,"siafi":4565,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3009,-46.7964]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fc1"},"ibge":3128402,"name":"Guarani","capital":0,"ibgeState":31,"siafi":4567,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3563,-43.0328]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fc2"},"ibge":3518008,"name":"Guarani d'Oeste","capital":0,"ibgeState":35,"siafi":6461,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0746,-50.3411]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fc3"},"ibge":4309506,"name":"Guarani das Missões","capital":0,"ibgeState":43,"siafi":8689,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.1491,-54.5629]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fc4"},"ibge":5209408,"name":"Guarani de Goiás","capital":0,"ibgeState":52,"siafi":9383,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.9421,-46.4868]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fc5"},"ibge":4109302,"name":"Guaraniaçu","capital":0,"ibgeState":41,"siafi":7581,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.0968,-52.8755]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fc6"},"ibge":3518107,"name":"Guarantã","capital":0,"ibgeState":35,"siafi":6463,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8942,-49.5914]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fc7"},"ibge":5104104,"name":"Guarantã do Norte","capital":0,"ibgeState":51,"siafi":9887,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-9.96218,-54.9121]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fc8"},"ibge":3202405,"name":"Guarapari","capital":0,"ibgeState":32,"siafi":5647,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6772,-40.5093]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fc9"},"ibge":4109401,"name":"Guarapuava","capital":0,"ibgeState":41,"siafi":7583,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.3902,-51.4623]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fca"},"ibge":4109500,"name":"Guaraqueçaba","capital":0,"ibgeState":41,"siafi":7585,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.3071,-48.3204]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fcb"},"ibge":3128501,"name":"Guarará","capital":0,"ibgeState":31,"siafi":4569,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7304,-43.0334]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fcc"},"ibge":3518206,"name":"Guararapes","capital":0,"ibgeState":35,"siafi":6465,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2544,-50.6453]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fcd"},"ibge":3518305,"name":"Guararema","capital":0,"ibgeState":35,"siafi":6467,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4112,-46.0369]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fce"},"ibge":2911808,"name":"Guaratinga","capital":0,"ibgeState":29,"siafi":3535,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.5833,-39.7847]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fcf"},"ibge":3518404,"name":"Guaratinguetá","capital":0,"ibgeState":35,"siafi":6469,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8075,-45.1938]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fd0"},"ibge":4109609,"name":"Guaratuba","capital":0,"ibgeState":41,"siafi":7587,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.8817,-48.5752]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fd1"},"ibge":3128600,"name":"Guarda-Mor","capital":0,"ibgeState":31,"siafi":4571,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.7673,-47.0998]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fd2"},"ibge":3518503,"name":"Guareí","capital":0,"ibgeState":35,"siafi":6471,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3714,-48.1837]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fd3"},"ibge":3518602,"name":"Guariba","capital":0,"ibgeState":35,"siafi":6473,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3594,-48.2316]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fd4"},"ibge":2204550,"name":"Guaribas","capital":0,"ibgeState":22,"siafi":320,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.38647,-43.6943]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fd5"},"ibge":5209457,"name":"Guarinos","capital":0,"ibgeState":52,"siafi":9993,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.7292,-49.7006]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fd6"},"ibge":3518701,"name":"Guarujá","capital":0,"ibgeState":35,"siafi":6475,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.9888,-46.258]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fd7"},"ibge":4206603,"name":"Guarujá do Sul","capital":0,"ibgeState":42,"siafi":8129,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.3858,-53.5296]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fd8"},"ibge":3518800,"name":"Guarulhos","capital":0,"ibgeState":35,"siafi":6477,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4538,-46.5333]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fd9"},"ibge":4206652,"name":"Guatambú","capital":0,"ibgeState":42,"siafi":5583,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1341,-52.7887]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fda"},"ibge":3518859,"name":"Guatapará","capital":0,"ibgeState":35,"siafi":7257,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4944,-48.0356]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fdb"},"ibge":3128709,"name":"Guaxupé","capital":0,"ibgeState":31,"siafi":4573,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.305,-46.7081]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fdc"},"ibge":5004106,"name":"Guia Lopes da Laguna","capital":0,"ibgeState":50,"siafi":9081,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-21.4583,-56.1117]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fdd"},"ibge":3128808,"name":"Guidoval","capital":0,"ibgeState":31,"siafi":4575,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.155,-42.7887]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fde"},"ibge":2104909,"name":"Guimarães","capital":0,"ibgeState":21,"siafi":795,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.12755,-44.602]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fdf"},"ibge":3128907,"name":"Guimarânia","capital":0,"ibgeState":31,"siafi":4577,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.8425,-46.7901]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fe0"},"ibge":5104203,"name":"Guiratinga","capital":0,"ibgeState":51,"siafi":9083,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-16.346,-53.7575]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fe1"},"ibge":3129004,"name":"Guiricema","capital":0,"ibgeState":31,"siafi":4579,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0098,-42.7207]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fe2"},"ibge":3129103,"name":"Gurinhatã","capital":0,"ibgeState":31,"siafi":4581,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2143,-49.7876]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fe3"},"ibge":2506400,"name":"Gurinhém","capital":0,"ibgeState":25,"siafi":2029,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.1233,-35.4222]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fe4"},"ibge":2506509,"name":"Gurjão","capital":0,"ibgeState":25,"siafi":2031,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.24833,-36.4923]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fe5"},"ibge":1503101,"name":"Gurupá","capital":0,"ibgeState":15,"siafi":461,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.41412,-51.6338]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fe6"},"ibge":1709500,"name":"Gurupi","capital":0,"ibgeState":17,"siafi":9385,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.7279,-49.068]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fe7"},"ibge":3518909,"name":"Guzolândia","capital":0,"ibgeState":35,"siafi":6479,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6467,-50.6645]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fe8"},"ibge":4309555,"name":"Harmonia","capital":0,"ibgeState":43,"siafi":8403,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5456,-51.4185]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fe9"},"ibge":5209606,"name":"Heitoraí","capital":0,"ibgeState":52,"siafi":9387,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.719,-49.8268]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fea"},"ibge":3129202,"name":"Heliodora","capital":0,"ibgeState":31,"siafi":4583,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0644,-45.5453]}} +{"_id":{"$oid":"66f9d5ad542d90c053666feb"},"ibge":2911857,"name":"Heliópolis","capital":0,"ibgeState":29,"siafi":3097,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.6825,-38.2907]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fec"},"ibge":3519006,"name":"Herculândia","capital":0,"ibgeState":35,"siafi":6481,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0038,-50.3907]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fed"},"ibge":4307104,"name":"Herval","capital":0,"ibgeState":43,"siafi":8639,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-32.024,-53.3944]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fee"},"ibge":4206702,"name":"Herval d'Oeste","capital":0,"ibgeState":42,"siafi":8131,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1903,-51.4917]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fef"},"ibge":4309571,"name":"Herveiras","capital":0,"ibgeState":43,"siafi":988,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4552,-52.6553]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ff0"},"ibge":5209705,"name":"Hidrolândia","capital":0,"ibgeState":52,"siafi":9389,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.9626,-49.2265]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ff1"},"ibge":2305209,"name":"Hidrolândia","capital":0,"ibgeState":23,"siafi":1405,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.40958,-40.4056]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ff2"},"ibge":5209804,"name":"Hidrolina","capital":0,"ibgeState":52,"siafi":9391,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.7261,-49.4634]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ff3"},"ibge":3519055,"name":"Holambra","capital":0,"ibgeState":35,"siafi":2953,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6405,-47.0487]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ff4"},"ibge":4109658,"name":"Honório Serpa","capital":0,"ibgeState":41,"siafi":9981,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.139,-52.3848]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ff5"},"ibge":2305233,"name":"Horizonte","capital":0,"ibgeState":23,"siafi":1253,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.1209,-38.4707]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ff6"},"ibge":4309605,"name":"Horizontina","capital":0,"ibgeState":43,"siafi":8691,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6282,-54.3053]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ff7"},"ibge":3519071,"name":"Hortolândia","capital":0,"ibgeState":35,"siafi":2951,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8529,-47.2143]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ff8"},"ibge":2204600,"name":"Hugo Napoleão","capital":0,"ibgeState":22,"siafi":1091,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.9886,-42.5598]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ff9"},"ibge":4309654,"name":"Hulha Negra","capital":0,"ibgeState":43,"siafi":6085,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.4067,-53.8667]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ffa"},"ibge":4309704,"name":"Humaitá","capital":0,"ibgeState":43,"siafi":8695,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5691,-53.9695]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ffb"},"ibge":1301704,"name":"Humaitá","capital":0,"ibgeState":13,"siafi":235,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-7.51171,-63.0327]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ffc"},"ibge":2105005,"name":"Humberto de Campos","capital":0,"ibgeState":21,"siafi":797,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.59828,-43.4649]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ffd"},"ibge":3519105,"name":"Iacanga","capital":0,"ibgeState":35,"siafi":6483,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8896,-49.031]}} +{"_id":{"$oid":"66f9d5ad542d90c053666ffe"},"ibge":5209903,"name":"Iaciara","capital":0,"ibgeState":52,"siafi":9393,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.1011,-46.6335]}} +{"_id":{"$oid":"66f9d5ad542d90c053666fff"},"ibge":3519204,"name":"Iacri","capital":0,"ibgeState":35,"siafi":6485,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8572,-50.6932]}} +{"_id":{"$oid":"66f9d5ad542d90c053667000"},"ibge":2911907,"name":"Iaçu","capital":0,"ibgeState":29,"siafi":3537,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.7666,-40.2056]}} +{"_id":{"$oid":"66f9d5ad542d90c053667001"},"ibge":3129301,"name":"Iapu","capital":0,"ibgeState":31,"siafi":4585,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.4387,-42.2147]}} +{"_id":{"$oid":"66f9d5ad542d90c053667002"},"ibge":3519253,"name":"Iaras","capital":0,"ibgeState":35,"siafi":7259,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8682,-49.1634]}} +{"_id":{"$oid":"66f9d5ad542d90c053667003"},"ibge":2606507,"name":"Iati","capital":0,"ibgeState":26,"siafi":2429,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.04559,-36.8498]}} +{"_id":{"$oid":"66f9d5ad542d90c053667004"},"ibge":4109708,"name":"Ibaiti","capital":0,"ibgeState":41,"siafi":7589,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8478,-50.1932]}} +{"_id":{"$oid":"66f9d5ad542d90c053667005"},"ibge":4309753,"name":"Ibarama","capital":0,"ibgeState":43,"siafi":8401,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4203,-53.1295]}} +{"_id":{"$oid":"66f9d5ad542d90c053667006"},"ibge":2305266,"name":"Ibaretama","capital":0,"ibgeState":23,"siafi":1255,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.80376,-38.7501]}} +{"_id":{"$oid":"66f9d5ad542d90c053667007"},"ibge":3519303,"name":"Ibaté","capital":0,"ibgeState":35,"siafi":6487,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9584,-47.9882]}} +{"_id":{"$oid":"66f9d5ad542d90c053667008"},"ibge":2703007,"name":"Ibateguara","capital":0,"ibgeState":27,"siafi":2759,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.97823,-35.9373]}} +{"_id":{"$oid":"66f9d5ad542d90c053667009"},"ibge":3202454,"name":"Ibatiba","capital":0,"ibgeState":32,"siafi":5709,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2347,-41.5087]}} +{"_id":{"$oid":"66f9d5ad542d90c05366700a"},"ibge":4109757,"name":"Ibema","capital":0,"ibgeState":41,"siafi":9949,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.1193,-53.0072]}} +{"_id":{"$oid":"66f9d5ad542d90c05366700b"},"ibge":3129400,"name":"Ibertioga","capital":0,"ibgeState":31,"siafi":4587,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.433,-43.9639]}} +{"_id":{"$oid":"66f9d5ad542d90c05366700c"},"ibge":3129509,"name":"Ibiá","capital":0,"ibgeState":31,"siafi":4589,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.4749,-46.5474]}} +{"_id":{"$oid":"66f9d5ad542d90c05366700d"},"ibge":4309803,"name":"Ibiaçá","capital":0,"ibgeState":43,"siafi":8697,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.0566,-51.8599]}} +{"_id":{"$oid":"66f9d5ad542d90c05366700e"},"ibge":3129608,"name":"Ibiaí","capital":0,"ibgeState":31,"siafi":4591,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.8591,-44.9046]}} +{"_id":{"$oid":"66f9d5ad542d90c05366700f"},"ibge":4206751,"name":"Ibiam","capital":0,"ibgeState":42,"siafi":920,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1847,-51.2352]}} +{"_id":{"$oid":"66f9d5ad542d90c053667010"},"ibge":2305308,"name":"Ibiapina","capital":0,"ibgeState":23,"siafi":1407,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.92403,-40.8911]}} +{"_id":{"$oid":"66f9d5ad542d90c053667011"},"ibge":2506608,"name":"Ibiara","capital":0,"ibgeState":25,"siafi":2033,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.47957,-38.4059]}} +{"_id":{"$oid":"66f9d5ad542d90c053667012"},"ibge":2912004,"name":"Ibiassucê","capital":0,"ibgeState":29,"siafi":3539,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.2711,-42.257]}} +{"_id":{"$oid":"66f9d5ad542d90c053667013"},"ibge":2912103,"name":"Ibicaraí","capital":0,"ibgeState":29,"siafi":3541,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.8579,-39.5914]}} +{"_id":{"$oid":"66f9d5ad542d90c053667014"},"ibge":4206801,"name":"Ibicaré","capital":0,"ibgeState":42,"siafi":8133,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0881,-51.3681]}} +{"_id":{"$oid":"66f9d5ad542d90c053667015"},"ibge":2912202,"name":"Ibicoara","capital":0,"ibgeState":29,"siafi":3543,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.4059,-41.284]}} +{"_id":{"$oid":"66f9d5ad542d90c053667016"},"ibge":2912301,"name":"Ibicuí","capital":0,"ibgeState":29,"siafi":3545,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.845,-39.9879]}} +{"_id":{"$oid":"66f9d5ad542d90c053667017"},"ibge":2305332,"name":"Ibicuitinga","capital":0,"ibgeState":23,"siafi":1257,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.96999,-38.6362]}} +{"_id":{"$oid":"66f9d5ad542d90c053667018"},"ibge":2606606,"name":"Ibimirim","capital":0,"ibgeState":26,"siafi":2431,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.54026,-37.7032]}} +{"_id":{"$oid":"66f9d5ad542d90c053667019"},"ibge":2912400,"name":"Ibipeba","capital":0,"ibgeState":29,"siafi":3547,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.6438,-42.0195]}} +{"_id":{"$oid":"66f9d5ad542d90c05366701a"},"ibge":2912509,"name":"Ibipitanga","capital":0,"ibgeState":29,"siafi":3551,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.8804,-42.4856]}} +{"_id":{"$oid":"66f9d5ad542d90c05366701b"},"ibge":4109807,"name":"Ibiporã","capital":0,"ibgeState":41,"siafi":7591,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2659,-51.0522]}} +{"_id":{"$oid":"66f9d5ad542d90c05366701c"},"ibge":2912608,"name":"Ibiquera","capital":0,"ibgeState":29,"siafi":3553,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.6444,-40.9338]}} +{"_id":{"$oid":"66f9d5ad542d90c05366701d"},"ibge":3519402,"name":"Ibirá","capital":0,"ibgeState":35,"siafi":6489,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.083,-49.2448]}} +{"_id":{"$oid":"66f9d5ad542d90c05366701e"},"ibge":3129657,"name":"Ibiracatu","capital":0,"ibgeState":31,"siafi":624,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.6605,-44.1667]}} +{"_id":{"$oid":"66f9d5ad542d90c05366701f"},"ibge":3129707,"name":"Ibiraci","capital":0,"ibgeState":31,"siafi":4593,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4611,-47.1222]}} +{"_id":{"$oid":"66f9d5ad542d90c053667020"},"ibge":3202504,"name":"Ibiraçu","capital":0,"ibgeState":32,"siafi":5649,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8366,-40.3732]}} +{"_id":{"$oid":"66f9d5ad542d90c053667021"},"ibge":4309902,"name":"Ibiraiaras","capital":0,"ibgeState":43,"siafi":8699,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3741,-51.6377]}} +{"_id":{"$oid":"66f9d5ad542d90c053667022"},"ibge":2606705,"name":"Ibirajuba","capital":0,"ibgeState":26,"siafi":2433,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.57633,-36.1812]}} +{"_id":{"$oid":"66f9d5ad542d90c053667023"},"ibge":4206900,"name":"Ibirama","capital":0,"ibgeState":42,"siafi":8135,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0547,-49.5193]}} +{"_id":{"$oid":"66f9d5ad542d90c053667024"},"ibge":2912707,"name":"Ibirapitanga","capital":0,"ibgeState":29,"siafi":3555,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.1649,-39.3787]}} +{"_id":{"$oid":"66f9d5ad542d90c053667025"},"ibge":2912806,"name":"Ibirapuã","capital":0,"ibgeState":29,"siafi":3557,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.6832,-40.1129]}} +{"_id":{"$oid":"66f9d5ad542d90c053667026"},"ibge":4309951,"name":"Ibirapuitã","capital":0,"ibgeState":43,"siafi":7299,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6247,-52.5158]}} +{"_id":{"$oid":"66f9d5ad542d90c053667027"},"ibge":3519501,"name":"Ibirarema","capital":0,"ibgeState":35,"siafi":6491,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8185,-50.0739]}} +{"_id":{"$oid":"66f9d5ad542d90c053667028"},"ibge":2912905,"name":"Ibirataia","capital":0,"ibgeState":29,"siafi":3559,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.0643,-39.6459]}} +{"_id":{"$oid":"66f9d5ad542d90c053667029"},"ibge":3129806,"name":"Ibirité","capital":0,"ibgeState":31,"siafi":4595,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0252,-44.0569]}} +{"_id":{"$oid":"66f9d5ad542d90c05366702a"},"ibge":4310009,"name":"Ibirubá","capital":0,"ibgeState":43,"siafi":8701,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6302,-53.0961]}} +{"_id":{"$oid":"66f9d5ad542d90c05366702b"},"ibge":2913002,"name":"Ibitiara","capital":0,"ibgeState":29,"siafi":3561,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.6502,-42.2179]}} +{"_id":{"$oid":"66f9d5ad542d90c05366702c"},"ibge":3519600,"name":"Ibitinga","capital":0,"ibgeState":35,"siafi":6493,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7562,-48.8319]}} +{"_id":{"$oid":"66f9d5ad542d90c05366702d"},"ibge":3202553,"name":"Ibitirama","capital":0,"ibgeState":32,"siafi":6011,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5466,-41.6667]}} +{"_id":{"$oid":"66f9d5ad542d90c05366702e"},"ibge":2913101,"name":"Ibititá","capital":0,"ibgeState":29,"siafi":3563,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.5414,-41.9748]}} +{"_id":{"$oid":"66f9d5ad542d90c05366702f"},"ibge":3129905,"name":"Ibitiúra de Minas","capital":0,"ibgeState":31,"siafi":4597,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0604,-46.4368]}} +{"_id":{"$oid":"66f9d5ad542d90c053667030"},"ibge":3130002,"name":"Ibituruna","capital":0,"ibgeState":31,"siafi":4599,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1541,-44.7479]}} +{"_id":{"$oid":"66f9d5ad542d90c053667031"},"ibge":3519709,"name":"Ibiúna","capital":0,"ibgeState":35,"siafi":6495,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6596,-47.223]}} +{"_id":{"$oid":"66f9d5ad542d90c053667032"},"ibge":2913200,"name":"Ibotirama","capital":0,"ibgeState":29,"siafi":3565,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.1779,-43.2167]}} +{"_id":{"$oid":"66f9d5ad542d90c053667033"},"ibge":2305357,"name":"Icapuí","capital":0,"ibgeState":23,"siafi":1593,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.71206,-37.3531]}} +{"_id":{"$oid":"66f9d5ad542d90c053667034"},"ibge":4207007,"name":"Içara","capital":0,"ibgeState":42,"siafi":8137,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.7132,-49.3087]}} +{"_id":{"$oid":"66f9d5ad542d90c053667035"},"ibge":3130051,"name":"Icaraí de Minas","capital":0,"ibgeState":31,"siafi":2693,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.214,-44.9034]}} +{"_id":{"$oid":"66f9d5ad542d90c053667036"},"ibge":4109906,"name":"Icaraíma","capital":0,"ibgeState":41,"siafi":7593,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3944,-53.615]}} +{"_id":{"$oid":"66f9d5ad542d90c053667037"},"ibge":2105104,"name":"Icatu","capital":0,"ibgeState":21,"siafi":799,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.77206,-44.0501]}} +{"_id":{"$oid":"66f9d5ad542d90c053667038"},"ibge":3519808,"name":"Icém","capital":0,"ibgeState":35,"siafi":6497,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3391,-49.1915]}} +{"_id":{"$oid":"66f9d5ad542d90c053667039"},"ibge":2913309,"name":"Ichu","capital":0,"ibgeState":29,"siafi":3567,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.7431,-39.1905]}} +{"_id":{"$oid":"66f9d5ad542d90c05366703a"},"ibge":2305407,"name":"Icó","capital":0,"ibgeState":23,"siafi":1409,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.39627,-38.8554]}} +{"_id":{"$oid":"66f9d5ad542d90c05366703b"},"ibge":3202603,"name":"Iconha","capital":0,"ibgeState":32,"siafi":5651,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7913,-40.8132]}} +{"_id":{"$oid":"66f9d5ad542d90c05366703c"},"ibge":2404606,"name":"Ielmo Marinho","capital":0,"ibgeState":24,"siafi":1689,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.82447,-35.55]}} +{"_id":{"$oid":"66f9d5ad542d90c05366703d"},"ibge":3519907,"name":"Iepê","capital":0,"ibgeState":35,"siafi":6499,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6602,-51.0779]}} +{"_id":{"$oid":"66f9d5ad542d90c05366703e"},"ibge":2703106,"name":"Igaci","capital":0,"ibgeState":27,"siafi":2761,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.53768,-36.6372]}} +{"_id":{"$oid":"66f9d5ad542d90c05366703f"},"ibge":2913408,"name":"Igaporã","capital":0,"ibgeState":29,"siafi":3569,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.774,-42.7155]}} +{"_id":{"$oid":"66f9d5ad542d90c053667040"},"ibge":3520004,"name":"Igaraçu do Tietê","capital":0,"ibgeState":35,"siafi":6501,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.509,-48.5597]}} +{"_id":{"$oid":"66f9d5ad542d90c053667041"},"ibge":2502607,"name":"Igaracy","capital":0,"ibgeState":25,"siafi":1953,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.17184,-38.1478]}} +{"_id":{"$oid":"66f9d5ad542d90c053667042"},"ibge":3520103,"name":"Igarapava","capital":0,"ibgeState":35,"siafi":6503,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0407,-47.7466]}} +{"_id":{"$oid":"66f9d5ad542d90c053667043"},"ibge":3130101,"name":"Igarapé","capital":0,"ibgeState":31,"siafi":4601,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0707,-44.2994]}} +{"_id":{"$oid":"66f9d5ad542d90c053667044"},"ibge":2105153,"name":"Igarapé do Meio","capital":0,"ibgeState":21,"siafi":170,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.65771,-45.2114]}} +{"_id":{"$oid":"66f9d5ad542d90c053667045"},"ibge":2105203,"name":"Igarapé Grande","capital":0,"ibgeState":21,"siafi":801,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.6625,-44.8558]}} +{"_id":{"$oid":"66f9d5ad542d90c053667046"},"ibge":1503200,"name":"Igarapé-Açu","capital":0,"ibgeState":15,"siafi":463,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.12539,-47.626]}} +{"_id":{"$oid":"66f9d5ad542d90c053667047"},"ibge":1503309,"name":"Igarapé-Miri","capital":0,"ibgeState":15,"siafi":465,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.97533,-48.9575]}} +{"_id":{"$oid":"66f9d5ad542d90c053667048"},"ibge":2606804,"name":"Igarassu","capital":0,"ibgeState":26,"siafi":2435,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.82881,-34.9013]}} +{"_id":{"$oid":"66f9d5ad542d90c053667049"},"ibge":3520202,"name":"Igaratá","capital":0,"ibgeState":35,"siafi":6505,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2037,-46.157]}} +{"_id":{"$oid":"66f9d5ad542d90c05366704a"},"ibge":3130200,"name":"Igaratinga","capital":0,"ibgeState":31,"siafi":4603,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9476,-44.7063]}} +{"_id":{"$oid":"66f9d5ad542d90c05366704b"},"ibge":2913457,"name":"Igrapiúna","capital":0,"ibgeState":29,"siafi":3277,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.8295,-39.1361]}} +{"_id":{"$oid":"66f9d5ad542d90c05366704c"},"ibge":2703205,"name":"Igreja Nova","capital":0,"ibgeState":27,"siafi":2763,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.1235,-36.6597]}} +{"_id":{"$oid":"66f9d5ad542d90c05366704d"},"ibge":4310108,"name":"Igrejinha","capital":0,"ibgeState":43,"siafi":8703,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5693,-50.7919]}} +{"_id":{"$oid":"66f9d5ad542d90c05366704e"},"ibge":3301876,"name":"Iguaba Grande","capital":0,"ibgeState":33,"siafi":774,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8495,-42.2299]}} +{"_id":{"$oid":"66f9d5ad542d90c05366704f"},"ibge":2913507,"name":"Iguaí","capital":0,"ibgeState":29,"siafi":3571,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.7528,-40.0894]}} +{"_id":{"$oid":"66f9d5ad542d90c053667050"},"ibge":3520301,"name":"Iguape","capital":0,"ibgeState":35,"siafi":6507,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.699,-47.5537]}} +{"_id":{"$oid":"66f9d5ad542d90c053667051"},"ibge":4110003,"name":"Iguaraçu","capital":0,"ibgeState":41,"siafi":7595,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1949,-51.8256]}} +{"_id":{"$oid":"66f9d5ad542d90c053667052"},"ibge":2606903,"name":"Iguaracy","capital":0,"ibgeState":26,"siafi":2437,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.83222,-37.5082]}} +{"_id":{"$oid":"66f9d5ad542d90c053667053"},"ibge":3130309,"name":"Iguatama","capital":0,"ibgeState":31,"siafi":4605,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1776,-45.7111]}} +{"_id":{"$oid":"66f9d5ad542d90c053667054"},"ibge":5004304,"name":"Iguatemi","capital":0,"ibgeState":50,"siafi":9085,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-23.6736,-54.5637]}} +{"_id":{"$oid":"66f9d5ad542d90c053667055"},"ibge":2305506,"name":"Iguatu","capital":0,"ibgeState":23,"siafi":1411,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.36281,-39.2892]}} +{"_id":{"$oid":"66f9d5ad542d90c053667056"},"ibge":4110052,"name":"Iguatu","capital":0,"ibgeState":41,"siafi":5467,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.7153,-53.0827]}} +{"_id":{"$oid":"66f9d5ad542d90c053667057"},"ibge":3130408,"name":"Ijaci","capital":0,"ibgeState":31,"siafi":4607,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1738,-44.9233]}} +{"_id":{"$oid":"66f9d5ad542d90c053667058"},"ibge":4310207,"name":"Ijuí","capital":0,"ibgeState":43,"siafi":8705,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.388,-53.92]}} +{"_id":{"$oid":"66f9d5ad542d90c053667059"},"ibge":3520426,"name":"Ilha Comprida","capital":0,"ibgeState":35,"siafi":2969,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.7307,-47.5383]}} +{"_id":{"$oid":"66f9d5ad542d90c05366705a"},"ibge":2802700,"name":"Ilha das Flores","capital":0,"ibgeState":28,"siafi":3153,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.4425,-36.5479]}} +{"_id":{"$oid":"66f9d5ad542d90c05366705b"},"ibge":2607604,"name":"Ilha de Itamaracá","capital":0,"ibgeState":26,"siafi":2451,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.74766,-34.8303]}} +{"_id":{"$oid":"66f9d5ad542d90c05366705c"},"ibge":2204659,"name":"Ilha Grande","capital":0,"ibgeState":22,"siafi":322,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.85774,-41.8186]}} +{"_id":{"$oid":"66f9d5ad542d90c05366705d"},"ibge":3520442,"name":"Ilha Solteira","capital":0,"ibgeState":35,"siafi":2943,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4326,-51.3426]}} +{"_id":{"$oid":"66f9d5ad542d90c05366705e"},"ibge":3520400,"name":"Ilhabela","capital":0,"ibgeState":35,"siafi":6509,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7785,-45.3552]}} +{"_id":{"$oid":"66f9d5ad542d90c05366705f"},"ibge":2913606,"name":"Ilhéus","capital":0,"ibgeState":29,"siafi":3573,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.793,-39.046]}} +{"_id":{"$oid":"66f9d5ad542d90c053667060"},"ibge":4207106,"name":"Ilhota","capital":0,"ibgeState":42,"siafi":8139,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9023,-48.8251]}} +{"_id":{"$oid":"66f9d5ad542d90c053667061"},"ibge":3130507,"name":"Ilicínea","capital":0,"ibgeState":31,"siafi":4609,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9402,-45.8308]}} +{"_id":{"$oid":"66f9d5ad542d90c053667062"},"ibge":4310306,"name":"Ilópolis","capital":0,"ibgeState":43,"siafi":8707,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.9282,-52.1258]}} +{"_id":{"$oid":"66f9d5ad542d90c053667063"},"ibge":2506707,"name":"Imaculada","capital":0,"ibgeState":25,"siafi":2035,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.3889,-37.5079]}} +{"_id":{"$oid":"66f9d5ad542d90c053667064"},"ibge":4207205,"name":"Imaruí","capital":0,"ibgeState":42,"siafi":8141,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3339,-48.817]}} +{"_id":{"$oid":"66f9d5ad542d90c053667065"},"ibge":4110078,"name":"Imbaú","capital":0,"ibgeState":41,"siafi":862,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.448,-50.7533]}} +{"_id":{"$oid":"66f9d5ad542d90c053667066"},"ibge":4310330,"name":"Imbé","capital":0,"ibgeState":43,"siafi":7297,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.9753,-50.1281]}} +{"_id":{"$oid":"66f9d5ad542d90c053667067"},"ibge":3130556,"name":"Imbé de Minas","capital":0,"ibgeState":31,"siafi":626,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6017,-41.9695]}} +{"_id":{"$oid":"66f9d5ad542d90c053667068"},"ibge":4207304,"name":"Imbituba","capital":0,"ibgeState":42,"siafi":8143,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.2284,-48.6659]}} +{"_id":{"$oid":"66f9d5ad542d90c053667069"},"ibge":4110102,"name":"Imbituva","capital":0,"ibgeState":41,"siafi":7597,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.2285,-50.5989]}} +{"_id":{"$oid":"66f9d5ad542d90c05366706a"},"ibge":4207403,"name":"Imbuia","capital":0,"ibgeState":42,"siafi":8145,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4908,-49.4218]}} +{"_id":{"$oid":"66f9d5ad542d90c05366706b"},"ibge":4310363,"name":"Imigrante","capital":0,"ibgeState":43,"siafi":7295,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3508,-51.7748]}} +{"_id":{"$oid":"66f9d5ad542d90c05366706c"},"ibge":2105302,"name":"Imperatriz","capital":0,"ibgeState":21,"siafi":803,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.51847,-47.4777]}} +{"_id":{"$oid":"66f9d5ad542d90c05366706d"},"ibge":4110201,"name":"Inácio Martins","capital":0,"ibgeState":41,"siafi":7599,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.5704,-51.0769]}} +{"_id":{"$oid":"66f9d5ad542d90c05366706e"},"ibge":5209937,"name":"Inaciolândia","capital":0,"ibgeState":52,"siafi":69,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4869,-49.9888]}} +{"_id":{"$oid":"66f9d5ad542d90c05366706f"},"ibge":2607000,"name":"Inajá","capital":0,"ibgeState":26,"siafi":2439,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.90206,-37.8351]}} +{"_id":{"$oid":"66f9d5ad542d90c053667070"},"ibge":4110300,"name":"Inajá","capital":0,"ibgeState":41,"siafi":7601,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7509,-52.1995]}} +{"_id":{"$oid":"66f9d5ad542d90c053667071"},"ibge":3130606,"name":"Inconfidentes","capital":0,"ibgeState":31,"siafi":4611,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3136,-46.3264]}} +{"_id":{"$oid":"66f9d5ad542d90c053667072"},"ibge":3130655,"name":"Indaiabira","capital":0,"ibgeState":31,"siafi":628,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.4911,-42.2005]}} +{"_id":{"$oid":"66f9d5ad542d90c053667073"},"ibge":4207502,"name":"Indaial","capital":0,"ibgeState":42,"siafi":8147,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.8992,-49.2354]}} +{"_id":{"$oid":"66f9d5ad542d90c053667074"},"ibge":3520509,"name":"Indaiatuba","capital":0,"ibgeState":35,"siafi":6511,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0816,-47.2101]}} +{"_id":{"$oid":"66f9d5ad542d90c053667075"},"ibge":4310405,"name":"Independência","capital":0,"ibgeState":43,"siafi":8709,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.8354,-54.1886]}} +{"_id":{"$oid":"66f9d5ad542d90c053667076"},"ibge":2305605,"name":"Independência","capital":0,"ibgeState":23,"siafi":1413,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.38789,-40.3085]}} +{"_id":{"$oid":"66f9d5ad542d90c053667077"},"ibge":3520608,"name":"Indiana","capital":0,"ibgeState":35,"siafi":6513,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1738,-51.2555]}} +{"_id":{"$oid":"66f9d5ad542d90c053667078"},"ibge":4110409,"name":"Indianópolis","capital":0,"ibgeState":41,"siafi":7961,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4762,-52.6989]}} +{"_id":{"$oid":"66f9d5ad542d90c053667079"},"ibge":3130705,"name":"Indianópolis","capital":0,"ibgeState":31,"siafi":4613,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.0341,-47.9155]}} +{"_id":{"$oid":"66f9d5ad542d90c05366707a"},"ibge":3520707,"name":"Indiaporã","capital":0,"ibgeState":35,"siafi":6515,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.979,-50.2909]}} +{"_id":{"$oid":"66f9d5ad542d90c05366707b"},"ibge":5209952,"name":"Indiara","capital":0,"ibgeState":52,"siafi":9681,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.1387,-49.9862]}} +{"_id":{"$oid":"66f9d5ad542d90c05366707c"},"ibge":2802809,"name":"Indiaroba","capital":0,"ibgeState":28,"siafi":3155,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.5157,-37.515]}} +{"_id":{"$oid":"66f9d5ad542d90c05366707d"},"ibge":5104500,"name":"Indiavaí","capital":0,"ibgeState":51,"siafi":9877,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.4921,-58.5802]}} +{"_id":{"$oid":"66f9d5ad542d90c05366707e"},"ibge":2506806,"name":"Ingá","capital":0,"ibgeState":25,"siafi":2037,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.28144,-35.605]}} +{"_id":{"$oid":"66f9d5ad542d90c05366707f"},"ibge":3130804,"name":"Ingaí","capital":0,"ibgeState":31,"siafi":4615,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4024,-44.9152]}} +{"_id":{"$oid":"66f9d5ad542d90c053667080"},"ibge":2607109,"name":"Ingazeira","capital":0,"ibgeState":26,"siafi":2441,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.66909,-37.4576]}} +{"_id":{"$oid":"66f9d5ad542d90c053667081"},"ibge":4310413,"name":"Inhacorá","capital":0,"ibgeState":43,"siafi":6051,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.8752,-54.015]}} +{"_id":{"$oid":"66f9d5ad542d90c053667082"},"ibge":2913705,"name":"Inhambupe","capital":0,"ibgeState":29,"siafi":3575,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.781,-38.355]}} +{"_id":{"$oid":"66f9d5ad542d90c053667083"},"ibge":1503408,"name":"Inhangapi","capital":0,"ibgeState":15,"siafi":467,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.4349,-47.9114]}} +{"_id":{"$oid":"66f9d5ad542d90c053667084"},"ibge":2703304,"name":"Inhapi","capital":0,"ibgeState":27,"siafi":2765,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.22594,-37.7509]}} +{"_id":{"$oid":"66f9d5ad542d90c053667085"},"ibge":3130903,"name":"Inhapim","capital":0,"ibgeState":31,"siafi":4617,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5476,-42.1147]}} +{"_id":{"$oid":"66f9d5ad542d90c053667086"},"ibge":3131000,"name":"Inhaúma","capital":0,"ibgeState":31,"siafi":4619,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.4898,-44.3934]}} +{"_id":{"$oid":"66f9d5ad542d90c053667087"},"ibge":2204709,"name":"Inhuma","capital":0,"ibgeState":22,"siafi":1093,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.665,-41.7041]}} +{"_id":{"$oid":"66f9d5ad542d90c053667088"},"ibge":5210000,"name":"Inhumas","capital":0,"ibgeState":52,"siafi":9395,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.3611,-49.5001]}} +{"_id":{"$oid":"66f9d5ad542d90c053667089"},"ibge":3131109,"name":"Inimutaba","capital":0,"ibgeState":31,"siafi":4621,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7271,-44.3584]}} +{"_id":{"$oid":"66f9d5ad542d90c05366708a"},"ibge":5004403,"name":"Inocência","capital":0,"ibgeState":50,"siafi":9087,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-19.7277,-51.9281]}} +{"_id":{"$oid":"66f9d5ad542d90c05366708b"},"ibge":3520806,"name":"Inúbia Paulista","capital":0,"ibgeState":35,"siafi":6517,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7695,-50.9633]}} +{"_id":{"$oid":"66f9d5ad542d90c05366708c"},"ibge":4207577,"name":"Iomerê","capital":0,"ibgeState":42,"siafi":922,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0019,-51.2442]}} +{"_id":{"$oid":"66f9d5ad542d90c05366708d"},"ibge":3131158,"name":"Ipaba","capital":0,"ibgeState":31,"siafi":2665,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.4158,-42.4139]}} +{"_id":{"$oid":"66f9d5ad542d90c05366708e"},"ibge":5210109,"name":"Ipameri","capital":0,"ibgeState":52,"siafi":9397,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.7215,-48.1581]}} +{"_id":{"$oid":"66f9d5ad542d90c05366708f"},"ibge":3131208,"name":"Ipanema","capital":0,"ibgeState":31,"siafi":4623,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7992,-41.7164]}} +{"_id":{"$oid":"66f9d5ad542d90c053667090"},"ibge":2404705,"name":"Ipanguaçu","capital":0,"ibgeState":24,"siafi":1691,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.48984,-36.8501]}} +{"_id":{"$oid":"66f9d5ad542d90c053667091"},"ibge":2305654,"name":"Ipaporanga","capital":0,"ibgeState":23,"siafi":1259,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.89764,-40.7537]}} +{"_id":{"$oid":"66f9d5ad542d90c053667092"},"ibge":3131307,"name":"Ipatinga","capital":0,"ibgeState":31,"siafi":4625,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.4703,-42.5476]}} +{"_id":{"$oid":"66f9d5ad542d90c053667093"},"ibge":2305704,"name":"Ipaumirim","capital":0,"ibgeState":23,"siafi":1415,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.78265,-38.7179]}} +{"_id":{"$oid":"66f9d5ad542d90c053667094"},"ibge":3520905,"name":"Ipaussu","capital":0,"ibgeState":35,"siafi":6519,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0575,-49.6279]}} +{"_id":{"$oid":"66f9d5ad542d90c053667095"},"ibge":4310439,"name":"Ipê","capital":0,"ibgeState":43,"siafi":8399,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.8171,-51.2859]}} +{"_id":{"$oid":"66f9d5ad542d90c053667096"},"ibge":2913804,"name":"Ipecaetá","capital":0,"ibgeState":29,"siafi":3577,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.3028,-39.3069]}} +{"_id":{"$oid":"66f9d5ad542d90c053667097"},"ibge":3521002,"name":"Iperó","capital":0,"ibgeState":35,"siafi":6521,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3513,-47.6927]}} +{"_id":{"$oid":"66f9d5ad542d90c053667098"},"ibge":3521101,"name":"Ipeúna","capital":0,"ibgeState":35,"siafi":6523,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4355,-47.7151]}} +{"_id":{"$oid":"66f9d5ad542d90c053667099"},"ibge":3131406,"name":"Ipiaçu","capital":0,"ibgeState":31,"siafi":4627,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.6927,-49.9436]}} +{"_id":{"$oid":"66f9d5ad542d90c05366709a"},"ibge":2913903,"name":"Ipiaú","capital":0,"ibgeState":29,"siafi":3579,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.1226,-39.7353]}} +{"_id":{"$oid":"66f9d5ad542d90c05366709b"},"ibge":3521150,"name":"Ipiguá","capital":0,"ibgeState":35,"siafi":800,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6557,-49.3842]}} +{"_id":{"$oid":"66f9d5ad542d90c05366709c"},"ibge":2914000,"name":"Ipirá","capital":0,"ibgeState":29,"siafi":3581,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.1561,-39.7359]}} +{"_id":{"$oid":"66f9d5ad542d90c05366709d"},"ibge":4207601,"name":"Ipira","capital":0,"ibgeState":42,"siafi":8149,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4038,-51.7758]}} +{"_id":{"$oid":"66f9d5ad542d90c05366709e"},"ibge":4110508,"name":"Ipiranga","capital":0,"ibgeState":41,"siafi":7603,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.0238,-50.5794]}} +{"_id":{"$oid":"66f9d5ad542d90c05366709f"},"ibge":5210158,"name":"Ipiranga de Goiás","capital":0,"ibgeState":52,"siafi":1074,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.1689,-49.6695]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670a0"},"ibge":5104526,"name":"Ipiranga do Norte","capital":0,"ibgeState":51,"siafi":1184,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.2408,-56.1531]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670a1"},"ibge":2204808,"name":"Ipiranga do Piauí","capital":0,"ibgeState":22,"siafi":1095,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.82421,-41.7381]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670a2"},"ibge":4310462,"name":"Ipiranga do Sul","capital":0,"ibgeState":43,"siafi":7399,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9404,-52.4271]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670a3"},"ibge":1301803,"name":"Ipixuna","capital":0,"ibgeState":13,"siafi":239,"ddd":97,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-7.04791,-71.6934]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670a4"},"ibge":1503457,"name":"Ipixuna do Pará","capital":0,"ibgeState":15,"siafi":621,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.55992,-47.5059]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670a5"},"ibge":2607208,"name":"Ipojuca","capital":0,"ibgeState":26,"siafi":2443,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.39303,-35.0609]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670a6"},"ibge":4110607,"name":"Iporã","capital":0,"ibgeState":41,"siafi":7605,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.0083,-53.706]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670a7"},"ibge":5210208,"name":"Iporá","capital":0,"ibgeState":52,"siafi":9399,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.4398,-51.118]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670a8"},"ibge":4207650,"name":"Iporã do Oeste","capital":0,"ibgeState":42,"siafi":9951,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9854,-53.5355]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670a9"},"ibge":3521200,"name":"Iporanga","capital":0,"ibgeState":35,"siafi":6525,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.5847,-48.5971]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670aa"},"ibge":2305803,"name":"Ipu","capital":0,"ibgeState":23,"siafi":1417,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.31748,-40.7059]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670ab"},"ibge":3521309,"name":"Ipuã","capital":0,"ibgeState":35,"siafi":6527,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4438,-48.0129]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670ac"},"ibge":4207684,"name":"Ipuaçu","capital":0,"ibgeState":42,"siafi":5737,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.635,-52.4556]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670ad"},"ibge":2607307,"name":"Ipubi","capital":0,"ibgeState":26,"siafi":2445,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.64505,-40.1476]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670ae"},"ibge":2404804,"name":"Ipueira","capital":0,"ibgeState":24,"siafi":1693,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.80596,-37.2045]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670af"},"ibge":1709807,"name":"Ipueiras","capital":0,"ibgeState":17,"siafi":84,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.2329,-48.46]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670b0"},"ibge":2305902,"name":"Ipueiras","capital":0,"ibgeState":23,"siafi":1419,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.53802,-40.7118]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670b1"},"ibge":3131505,"name":"Ipuiúna","capital":0,"ibgeState":31,"siafi":4629,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1013,-46.1915]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670b2"},"ibge":4207700,"name":"Ipumirim","capital":0,"ibgeState":42,"siafi":8151,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0772,-52.1289]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670b3"},"ibge":2914109,"name":"Ipupiara","capital":0,"ibgeState":29,"siafi":3583,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.8219,-42.6179]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670b4"},"ibge":1400282,"name":"Iracema","capital":0,"ibgeState":14,"siafi":32,"ddd":95,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[2.18305,-61.0415]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670b5"},"ibge":2306009,"name":"Iracema","capital":0,"ibgeState":23,"siafi":1421,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.8124,-38.2919]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670b6"},"ibge":4110656,"name":"Iracema do Oeste","capital":0,"ibgeState":41,"siafi":5485,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.4262,-53.3528]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670b7"},"ibge":3521408,"name":"Iracemápolis","capital":0,"ibgeState":35,"siafi":6529,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5832,-47.523]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670b8"},"ibge":4207759,"name":"Iraceminha","capital":0,"ibgeState":42,"siafi":9953,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.8215,-53.2767]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670b9"},"ibge":4310504,"name":"Iraí","capital":0,"ibgeState":43,"siafi":8711,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1951,-53.2543]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670ba"},"ibge":3131604,"name":"Iraí de Minas","capital":0,"ibgeState":31,"siafi":4631,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.9819,-47.461]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670bb"},"ibge":2914208,"name":"Irajuba","capital":0,"ibgeState":29,"siafi":3585,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.2563,-40.0848]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670bc"},"ibge":2914307,"name":"Iramaia","capital":0,"ibgeState":29,"siafi":3587,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.2902,-40.9595]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670bd"},"ibge":1301852,"name":"Iranduba","capital":0,"ibgeState":13,"siafi":9835,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.27479,-60.19]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670be"},"ibge":4207809,"name":"Irani","capital":0,"ibgeState":42,"siafi":8153,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0287,-51.9012]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670bf"},"ibge":3521507,"name":"Irapuã","capital":0,"ibgeState":35,"siafi":6531,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2768,-49.4164]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670c0"},"ibge":3521606,"name":"Irapuru","capital":0,"ibgeState":35,"siafi":6533,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5684,-51.3472]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670c1"},"ibge":2914406,"name":"Iraquara","capital":0,"ibgeState":29,"siafi":3589,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.2429,-41.6155]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670c2"},"ibge":2914505,"name":"Irará","capital":0,"ibgeState":29,"siafi":3591,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.0504,-38.7631]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670c3"},"ibge":4110706,"name":"Irati","capital":0,"ibgeState":41,"siafi":7607,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4697,-50.6493]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670c4"},"ibge":4207858,"name":"Irati","capital":0,"ibgeState":42,"siafi":5585,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.6539,-52.8955]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670c5"},"ibge":2306108,"name":"Irauçuba","capital":0,"ibgeState":23,"siafi":1423,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.74737,-39.7843]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670c6"},"ibge":2914604,"name":"Irecê","capital":0,"ibgeState":29,"siafi":3593,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.3033,-41.8535]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670c7"},"ibge":4110805,"name":"Iretama","capital":0,"ibgeState":41,"siafi":7609,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.4253,-52.1012]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670c8"},"ibge":4207908,"name":"Irineópolis","capital":0,"ibgeState":42,"siafi":8155,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.242,-50.7957]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670c9"},"ibge":1503507,"name":"Irituia","capital":0,"ibgeState":15,"siafi":469,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.76984,-47.446]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670ca"},"ibge":3202652,"name":"Irupi","capital":0,"ibgeState":32,"siafi":2931,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3501,-41.6444]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670cb"},"ibge":2204907,"name":"Isaías Coelho","capital":0,"ibgeState":22,"siafi":1097,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.73597,-41.6735]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670cc"},"ibge":5210307,"name":"Israelândia","capital":0,"ibgeState":52,"siafi":9401,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.3144,-50.9087]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670cd"},"ibge":4208005,"name":"Itá","capital":0,"ibgeState":42,"siafi":8157,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2907,-52.3212]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670ce"},"ibge":4310538,"name":"Itaara","capital":0,"ibgeState":43,"siafi":990,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6013,-53.7725]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670cf"},"ibge":2506905,"name":"Itabaiana","capital":0,"ibgeState":25,"siafi":2039,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.33167,-35.3317]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670d0"},"ibge":2802908,"name":"Itabaiana","capital":0,"ibgeState":28,"siafi":3157,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.6826,-37.4273]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670d1"},"ibge":2803005,"name":"Itabaianinha","capital":0,"ibgeState":28,"siafi":3159,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.2693,-37.7875]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670d2"},"ibge":2914653,"name":"Itabela","capital":0,"ibgeState":29,"siafi":3279,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.5732,-39.5593]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670d3"},"ibge":3521705,"name":"Itaberá","capital":0,"ibgeState":35,"siafi":6535,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8638,-49.14]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670d4"},"ibge":2914703,"name":"Itaberaba","capital":0,"ibgeState":29,"siafi":3595,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.5242,-40.3059]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670d5"},"ibge":5210406,"name":"Itaberaí","capital":0,"ibgeState":52,"siafi":9403,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0206,-49.806]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670d6"},"ibge":2803104,"name":"Itabi","capital":0,"ibgeState":28,"siafi":3161,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.1248,-37.1056]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670d7"},"ibge":3131703,"name":"Itabira","capital":0,"ibgeState":31,"siafi":4633,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6239,-43.2312]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670d8"},"ibge":3131802,"name":"Itabirinha","capital":0,"ibgeState":31,"siafi":4635,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5712,-41.234]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670d9"},"ibge":3131901,"name":"Itabirito","capital":0,"ibgeState":31,"siafi":4637,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2501,-43.8038]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670da"},"ibge":3301900,"name":"Itaboraí","capital":0,"ibgeState":33,"siafi":5837,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7565,-42.8639]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670db"},"ibge":2914802,"name":"Itabuna","capital":0,"ibgeState":29,"siafi":3597,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.7876,-39.2781]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670dc"},"ibge":1710508,"name":"Itacajá","capital":0,"ibgeState":17,"siafi":9405,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.39293,-47.7726]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670dd"},"ibge":3132008,"name":"Itacambira","capital":0,"ibgeState":31,"siafi":4639,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.0625,-43.3069]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670de"},"ibge":3132107,"name":"Itacarambi","capital":0,"ibgeState":31,"siafi":4641,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.089,-44.095]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670df"},"ibge":2914901,"name":"Itacaré","capital":0,"ibgeState":29,"siafi":3599,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.2784,-38.9959]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670e0"},"ibge":1301902,"name":"Itacoatiara","capital":0,"ibgeState":13,"siafi":241,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.13861,-58.4449]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670e1"},"ibge":2607406,"name":"Itacuruba","capital":0,"ibgeState":26,"siafi":2447,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.82231,-38.6975]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670e2"},"ibge":4310553,"name":"Itacurubi","capital":0,"ibgeState":43,"siafi":7397,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.7913,-55.2447]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670e3"},"ibge":2915007,"name":"Itaeté","capital":0,"ibgeState":29,"siafi":3601,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.9831,-40.9677]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670e4"},"ibge":2915106,"name":"Itagi","capital":0,"ibgeState":29,"siafi":3603,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.1615,-40.0131]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670e5"},"ibge":2915205,"name":"Itagibá","capital":0,"ibgeState":29,"siafi":3605,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.2782,-39.8449]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670e6"},"ibge":2915304,"name":"Itagimirim","capital":0,"ibgeState":29,"siafi":3607,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0819,-39.6133]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670e7"},"ibge":3202702,"name":"Itaguaçu","capital":0,"ibgeState":32,"siafi":5653,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8018,-40.8601]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670e8"},"ibge":2915353,"name":"Itaguaçu da Bahia","capital":0,"ibgeState":29,"siafi":3281,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.0147,-42.3997]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670e9"},"ibge":3302007,"name":"Itaguaí","capital":0,"ibgeState":33,"siafi":5839,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8636,-43.7798]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670ea"},"ibge":4110904,"name":"Itaguajé","capital":0,"ibgeState":41,"siafi":7611,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6183,-51.9674]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670eb"},"ibge":3132206,"name":"Itaguara","capital":0,"ibgeState":31,"siafi":4643,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3947,-44.4875]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670ec"},"ibge":5210562,"name":"Itaguari","capital":0,"ibgeState":52,"siafi":9919,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.918,-49.6071]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670ed"},"ibge":5210604,"name":"Itaguaru","capital":0,"ibgeState":52,"siafi":9407,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.7565,-49.6354]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670ee"},"ibge":1710706,"name":"Itaguatins","capital":0,"ibgeState":17,"siafi":9409,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.77267,-47.4864]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670ef"},"ibge":3521804,"name":"Itaí","capital":0,"ibgeState":35,"siafi":6537,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4213,-49.092]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670f0"},"ibge":2607505,"name":"Itaíba","capital":0,"ibgeState":26,"siafi":2449,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.94569,-37.4173]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670f1"},"ibge":2306207,"name":"Itaiçaba","capital":0,"ibgeState":23,"siafi":1425,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.67146,-37.833]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670f2"},"ibge":2205003,"name":"Itainópolis","capital":0,"ibgeState":22,"siafi":1099,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.44336,-41.4687]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670f3"},"ibge":4208104,"name":"Itaiópolis","capital":0,"ibgeState":42,"siafi":8159,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.339,-49.9092]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670f4"},"ibge":2105351,"name":"Itaipava do Grajaú","capital":0,"ibgeState":21,"siafi":172,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.14252,-45.7877]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670f5"},"ibge":3132305,"name":"Itaipé","capital":0,"ibgeState":31,"siafi":4645,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.4014,-41.6697]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670f6"},"ibge":4110953,"name":"Itaipulândia","capital":0,"ibgeState":41,"siafi":5525,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.1366,-54.3001]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670f7"},"ibge":2306256,"name":"Itaitinga","capital":0,"ibgeState":23,"siafi":991,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.96577,-38.5298]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670f8"},"ibge":1503606,"name":"Itaituba","capital":0,"ibgeState":15,"siafi":471,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.2667,-55.9926]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670f9"},"ibge":2404853,"name":"Itajá","capital":0,"ibgeState":24,"siafi":418,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.63894,-36.8712]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670fa"},"ibge":5210802,"name":"Itajá","capital":0,"ibgeState":52,"siafi":9411,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.0673,-51.5495]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670fb"},"ibge":4208203,"name":"Itajaí","capital":0,"ibgeState":42,"siafi":8161,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9101,-48.6705]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670fc"},"ibge":3521903,"name":"Itajobi","capital":0,"ibgeState":35,"siafi":6539,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3123,-49.0629]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670fd"},"ibge":3522000,"name":"Itaju","capital":0,"ibgeState":35,"siafi":6541,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9857,-48.8116]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670fe"},"ibge":2915403,"name":"Itaju do Colônia","capital":0,"ibgeState":29,"siafi":3609,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.1366,-39.7283]}} +{"_id":{"$oid":"66f9d5ad542d90c0536670ff"},"ibge":3132404,"name":"Itajubá","capital":0,"ibgeState":31,"siafi":4647,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4225,-45.4598]}} +{"_id":{"$oid":"66f9d5ad542d90c053667100"},"ibge":2915502,"name":"Itajuípe","capital":0,"ibgeState":29,"siafi":3611,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.6788,-39.3698]}} +{"_id":{"$oid":"66f9d5ad542d90c053667101"},"ibge":3302056,"name":"Italva","capital":0,"ibgeState":33,"siafi":5929,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4296,-41.7014]}} +{"_id":{"$oid":"66f9d5ad542d90c053667102"},"ibge":2915601,"name":"Itamaraju","capital":0,"ibgeState":29,"siafi":3613,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.0378,-39.5386]}} +{"_id":{"$oid":"66f9d5ad542d90c053667103"},"ibge":3132503,"name":"Itamarandiba","capital":0,"ibgeState":31,"siafi":4649,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.8552,-42.8561]}} +{"_id":{"$oid":"66f9d5ad542d90c053667104"},"ibge":1301951,"name":"Itamarati","capital":0,"ibgeState":13,"siafi":9837,"ddd":97,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-6.43852,-68.2437]}} +{"_id":{"$oid":"66f9d5ad542d90c053667105"},"ibge":3132602,"name":"Itamarati de Minas","capital":0,"ibgeState":31,"siafi":4651,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4179,-42.813]}} +{"_id":{"$oid":"66f9d5ad542d90c053667106"},"ibge":2915700,"name":"Itamari","capital":0,"ibgeState":29,"siafi":3615,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.7782,-39.683]}} +{"_id":{"$oid":"66f9d5ad542d90c053667107"},"ibge":3132701,"name":"Itambacuri","capital":0,"ibgeState":31,"siafi":4653,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.035,-41.683]}} +{"_id":{"$oid":"66f9d5ad542d90c053667108"},"ibge":4111001,"name":"Itambaracá","capital":0,"ibgeState":41,"siafi":7613,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0181,-50.4097]}} +{"_id":{"$oid":"66f9d5ad542d90c053667109"},"ibge":4111100,"name":"Itambé","capital":0,"ibgeState":41,"siafi":7615,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6601,-51.9912]}} +{"_id":{"$oid":"66f9d5ad542d90c05366710a"},"ibge":2607653,"name":"Itambé","capital":0,"ibgeState":26,"siafi":2597,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.41403,-35.0963]}} +{"_id":{"$oid":"66f9d5ad542d90c05366710b"},"ibge":2915809,"name":"Itambé","capital":0,"ibgeState":29,"siafi":3617,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.2429,-40.63]}} +{"_id":{"$oid":"66f9d5ad542d90c05366710c"},"ibge":3132800,"name":"Itambé do Mato Dentro","capital":0,"ibgeState":31,"siafi":4655,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.4158,-43.3182]}} +{"_id":{"$oid":"66f9d5ad542d90c05366710d"},"ibge":3132909,"name":"Itamogi","capital":0,"ibgeState":31,"siafi":4657,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0758,-47.046]}} +{"_id":{"$oid":"66f9d5ad542d90c05366710e"},"ibge":3133006,"name":"Itamonte","capital":0,"ibgeState":31,"siafi":4659,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2859,-44.868]}} +{"_id":{"$oid":"66f9d5ad542d90c05366710f"},"ibge":2915908,"name":"Itanagra","capital":0,"ibgeState":29,"siafi":3619,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.2614,-38.0436]}} +{"_id":{"$oid":"66f9d5ad542d90c053667110"},"ibge":3522109,"name":"Itanhaém","capital":0,"ibgeState":35,"siafi":6543,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.1736,-46.788]}} +{"_id":{"$oid":"66f9d5ad542d90c053667111"},"ibge":3133105,"name":"Itanhandu","capital":0,"ibgeState":31,"siafi":4661,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2942,-44.9382]}} +{"_id":{"$oid":"66f9d5ad542d90c053667112"},"ibge":5104542,"name":"Itanhangá","capital":0,"ibgeState":51,"siafi":1186,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.2259,-56.6463]}} +{"_id":{"$oid":"66f9d5ad542d90c053667113"},"ibge":2916005,"name":"Itanhém","capital":0,"ibgeState":29,"siafi":3621,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.1642,-40.3321]}} +{"_id":{"$oid":"66f9d5ad542d90c053667114"},"ibge":3133204,"name":"Itanhomi","capital":0,"ibgeState":31,"siafi":4663,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.1736,-41.863]}} +{"_id":{"$oid":"66f9d5ad542d90c053667115"},"ibge":3133303,"name":"Itaobim","capital":0,"ibgeState":31,"siafi":4665,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.5571,-41.5017]}} +{"_id":{"$oid":"66f9d5ad542d90c053667116"},"ibge":3522158,"name":"Itaóca","capital":0,"ibgeState":35,"siafi":3053,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.6393,-48.8413]}} +{"_id":{"$oid":"66f9d5ad542d90c053667117"},"ibge":3302106,"name":"Itaocara","capital":0,"ibgeState":33,"siafi":5841,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6748,-42.0758]}} +{"_id":{"$oid":"66f9d5ad542d90c053667118"},"ibge":5210901,"name":"Itapaci","capital":0,"ibgeState":52,"siafi":9413,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.9522,-49.5511]}} +{"_id":{"$oid":"66f9d5ad542d90c053667119"},"ibge":3133402,"name":"Itapagipe","capital":0,"ibgeState":31,"siafi":4667,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9062,-49.3781]}} +{"_id":{"$oid":"66f9d5ad542d90c05366711a"},"ibge":2306306,"name":"Itapajé","capital":0,"ibgeState":23,"siafi":1427,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.68314,-39.5855]}} +{"_id":{"$oid":"66f9d5ad542d90c05366711b"},"ibge":2916104,"name":"Itaparica","capital":0,"ibgeState":29,"siafi":3623,"ddd":71,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.8932,-38.68]}} +{"_id":{"$oid":"66f9d5ad542d90c05366711c"},"ibge":2916203,"name":"Itapé","capital":0,"ibgeState":29,"siafi":3625,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.8876,-39.4239]}} +{"_id":{"$oid":"66f9d5ad542d90c05366711d"},"ibge":2916302,"name":"Itapebi","capital":0,"ibgeState":29,"siafi":3627,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.9551,-39.5329]}} +{"_id":{"$oid":"66f9d5ad542d90c05366711e"},"ibge":3133501,"name":"Itapecerica","capital":0,"ibgeState":31,"siafi":4669,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4704,-45.127]}} +{"_id":{"$oid":"66f9d5ad542d90c05366711f"},"ibge":3522208,"name":"Itapecerica da Serra","capital":0,"ibgeState":35,"siafi":6545,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7161,-46.8572]}} +{"_id":{"$oid":"66f9d5ad542d90c053667120"},"ibge":2105401,"name":"Itapecuru Mirim","capital":0,"ibgeState":21,"siafi":807,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.40202,-44.3508]}} +{"_id":{"$oid":"66f9d5ad542d90c053667121"},"ibge":4111209,"name":"Itapejara d'Oeste","capital":0,"ibgeState":41,"siafi":7617,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.9619,-52.8152]}} +{"_id":{"$oid":"66f9d5ad542d90c053667122"},"ibge":4208302,"name":"Itapema","capital":0,"ibgeState":42,"siafi":8163,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0861,-48.616]}} +{"_id":{"$oid":"66f9d5ad542d90c053667123"},"ibge":3202801,"name":"Itapemirim","capital":0,"ibgeState":32,"siafi":5655,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0095,-40.8307]}} +{"_id":{"$oid":"66f9d5ad542d90c053667124"},"ibge":4111258,"name":"Itaperuçu","capital":0,"ibgeState":41,"siafi":5451,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.2193,-49.3454]}} +{"_id":{"$oid":"66f9d5ad542d90c053667125"},"ibge":3302205,"name":"Itaperuna","capital":0,"ibgeState":33,"siafi":5843,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1997,-41.8799]}} +{"_id":{"$oid":"66f9d5ad542d90c053667126"},"ibge":2607703,"name":"Itapetim","capital":0,"ibgeState":26,"siafi":2453,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.37178,-37.1863]}} +{"_id":{"$oid":"66f9d5ad542d90c053667127"},"ibge":2916401,"name":"Itapetinga","capital":0,"ibgeState":29,"siafi":3629,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.2475,-40.2482]}} +{"_id":{"$oid":"66f9d5ad542d90c053667128"},"ibge":3522307,"name":"Itapetininga","capital":0,"ibgeState":35,"siafi":6547,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5886,-48.0483]}} +{"_id":{"$oid":"66f9d5ad542d90c053667129"},"ibge":3522406,"name":"Itapeva","capital":0,"ibgeState":35,"siafi":6549,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.9788,-48.8764]}} +{"_id":{"$oid":"66f9d5ad542d90c05366712a"},"ibge":3133600,"name":"Itapeva","capital":0,"ibgeState":31,"siafi":4671,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7665,-46.2241]}} +{"_id":{"$oid":"66f9d5ad542d90c05366712b"},"ibge":3522505,"name":"Itapevi","capital":0,"ibgeState":35,"siafi":6551,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5488,-46.9327]}} +{"_id":{"$oid":"66f9d5ad542d90c05366712c"},"ibge":2916500,"name":"Itapicuru","capital":0,"ibgeState":29,"siafi":3631,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.3088,-38.2262]}} +{"_id":{"$oid":"66f9d5ad542d90c05366712d"},"ibge":2306405,"name":"Itapipoca","capital":0,"ibgeState":23,"siafi":1429,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.49933,-39.5836]}} +{"_id":{"$oid":"66f9d5ad542d90c05366712e"},"ibge":3522604,"name":"Itapira","capital":0,"ibgeState":35,"siafi":6553,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4357,-46.8224]}} +{"_id":{"$oid":"66f9d5ad542d90c05366712f"},"ibge":1302009,"name":"Itapiranga","capital":0,"ibgeState":13,"siafi":243,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-2.74081,-58.0293]}} +{"_id":{"$oid":"66f9d5ad542d90c053667130"},"ibge":4208401,"name":"Itapiranga","capital":0,"ibgeState":42,"siafi":8165,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1659,-53.7166]}} +{"_id":{"$oid":"66f9d5ad542d90c053667131"},"ibge":5211008,"name":"Itapirapuã","capital":0,"ibgeState":52,"siafi":9415,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.8205,-50.6094]}} +{"_id":{"$oid":"66f9d5ad542d90c053667132"},"ibge":3522653,"name":"Itapirapuã Paulista","capital":0,"ibgeState":35,"siafi":3055,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.572,-49.1661]}} +{"_id":{"$oid":"66f9d5ad542d90c053667133"},"ibge":1710904,"name":"Itapiratins","capital":0,"ibgeState":17,"siafi":347,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.37982,-48.1072]}} +{"_id":{"$oid":"66f9d5ad542d90c053667134"},"ibge":2607752,"name":"Itapissuma","capital":0,"ibgeState":26,"siafi":2633,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.76798,-34.8971]}} +{"_id":{"$oid":"66f9d5ad542d90c053667135"},"ibge":2916609,"name":"Itapitanga","capital":0,"ibgeState":29,"siafi":3633,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.4139,-39.5657]}} +{"_id":{"$oid":"66f9d5ad542d90c053667136"},"ibge":2306504,"name":"Itapiúna","capital":0,"ibgeState":23,"siafi":1431,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.55516,-38.9281]}} +{"_id":{"$oid":"66f9d5ad542d90c053667137"},"ibge":4208450,"name":"Itapoá","capital":0,"ibgeState":42,"siafi":9985,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.1158,-48.6182]}} +{"_id":{"$oid":"66f9d5ad542d90c053667138"},"ibge":3522703,"name":"Itápolis","capital":0,"ibgeState":35,"siafi":6555,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5942,-48.8149]}} +{"_id":{"$oid":"66f9d5ad542d90c053667139"},"ibge":5004502,"name":"Itaporã","capital":0,"ibgeState":50,"siafi":9089,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.08,-54.7934]}} +{"_id":{"$oid":"66f9d5ad542d90c05366713a"},"ibge":1711100,"name":"Itaporã do Tocantins","capital":0,"ibgeState":17,"siafi":9417,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.57172,-48.6895]}} +{"_id":{"$oid":"66f9d5ad542d90c05366713b"},"ibge":3522802,"name":"Itaporanga","capital":0,"ibgeState":35,"siafi":6557,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7043,-49.4819]}} +{"_id":{"$oid":"66f9d5ad542d90c05366713c"},"ibge":2507002,"name":"Itaporanga","capital":0,"ibgeState":25,"siafi":2041,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.30202,-38.1504]}} +{"_id":{"$oid":"66f9d5ad542d90c05366713d"},"ibge":2803203,"name":"Itaporanga d'Ajuda","capital":0,"ibgeState":28,"siafi":3163,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.99,-37.3078]}} +{"_id":{"$oid":"66f9d5ad542d90c05366713e"},"ibge":2507101,"name":"Itapororoca","capital":0,"ibgeState":25,"siafi":2043,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.82374,-35.2406]}} +{"_id":{"$oid":"66f9d5ad542d90c05366713f"},"ibge":1101104,"name":"Itapuã do Oeste","capital":0,"ibgeState":11,"siafi":683,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-9.19687,-63.1809]}} +{"_id":{"$oid":"66f9d5ad542d90c053667140"},"ibge":4310579,"name":"Itapuca","capital":0,"ibgeState":43,"siafi":6027,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.7768,-52.1693]}} +{"_id":{"$oid":"66f9d5ad542d90c053667141"},"ibge":3522901,"name":"Itapuí","capital":0,"ibgeState":35,"siafi":6559,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2324,-48.7197]}} +{"_id":{"$oid":"66f9d5ad542d90c053667142"},"ibge":3523008,"name":"Itapura","capital":0,"ibgeState":35,"siafi":6561,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6419,-51.5063]}} +{"_id":{"$oid":"66f9d5ad542d90c053667143"},"ibge":5211206,"name":"Itapuranga","capital":0,"ibgeState":52,"siafi":9419,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.5606,-49.949]}} +{"_id":{"$oid":"66f9d5ad542d90c053667144"},"ibge":3523107,"name":"Itaquaquecetuba","capital":0,"ibgeState":35,"siafi":6563,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4835,-46.3457]}} +{"_id":{"$oid":"66f9d5ad542d90c053667145"},"ibge":2916708,"name":"Itaquara","capital":0,"ibgeState":29,"siafi":3635,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.4459,-39.9378]}} +{"_id":{"$oid":"66f9d5ad542d90c053667146"},"ibge":4310603,"name":"Itaqui","capital":0,"ibgeState":43,"siafi":8713,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.1311,-56.5515]}} +{"_id":{"$oid":"66f9d5ad542d90c053667147"},"ibge":5004601,"name":"Itaquiraí","capital":0,"ibgeState":50,"siafi":9807,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-23.4779,-54.187]}} +{"_id":{"$oid":"66f9d5ad542d90c053667148"},"ibge":2607802,"name":"Itaquitinga","capital":0,"ibgeState":26,"siafi":2455,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.66373,-35.1002]}} +{"_id":{"$oid":"66f9d5ad542d90c053667149"},"ibge":3202900,"name":"Itarana","capital":0,"ibgeState":32,"siafi":5657,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.875,-40.8753]}} +{"_id":{"$oid":"66f9d5ad542d90c05366714a"},"ibge":2916807,"name":"Itarantim","capital":0,"ibgeState":29,"siafi":3637,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.6528,-40.065]}} +{"_id":{"$oid":"66f9d5ad542d90c05366714b"},"ibge":3523206,"name":"Itararé","capital":0,"ibgeState":35,"siafi":6565,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.1085,-49.3352]}} +{"_id":{"$oid":"66f9d5ad542d90c05366714c"},"ibge":2306553,"name":"Itarema","capital":0,"ibgeState":23,"siafi":1595,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.9248,-39.9167]}} +{"_id":{"$oid":"66f9d5ad542d90c05366714d"},"ibge":3523305,"name":"Itariri","capital":0,"ibgeState":35,"siafi":6567,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.2834,-47.1736]}} +{"_id":{"$oid":"66f9d5ad542d90c05366714e"},"ibge":5211305,"name":"Itarumã","capital":0,"ibgeState":52,"siafi":9421,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7646,-51.3485]}} +{"_id":{"$oid":"66f9d5ad542d90c05366714f"},"ibge":4310652,"name":"Itati","capital":0,"ibgeState":43,"siafi":1144,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4974,-50.1016]}} +{"_id":{"$oid":"66f9d5ad542d90c053667150"},"ibge":3302254,"name":"Itatiaia","capital":0,"ibgeState":33,"siafi":6003,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4897,-44.5675]}} +{"_id":{"$oid":"66f9d5ad542d90c053667151"},"ibge":3133709,"name":"Itatiaiuçu","capital":0,"ibgeState":31,"siafi":4673,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1983,-44.4211]}} +{"_id":{"$oid":"66f9d5ad542d90c053667152"},"ibge":3523404,"name":"Itatiba","capital":0,"ibgeState":35,"siafi":6569,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0035,-46.8464]}} +{"_id":{"$oid":"66f9d5ad542d90c053667153"},"ibge":4310702,"name":"Itatiba do Sul","capital":0,"ibgeState":43,"siafi":8715,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3846,-52.4538]}} +{"_id":{"$oid":"66f9d5ad542d90c053667154"},"ibge":2916856,"name":"Itatim","capital":0,"ibgeState":29,"siafi":3283,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.7099,-39.6952]}} +{"_id":{"$oid":"66f9d5ad542d90c053667155"},"ibge":3523503,"name":"Itatinga","capital":0,"ibgeState":35,"siafi":6571,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1047,-48.6157]}} +{"_id":{"$oid":"66f9d5ad542d90c053667156"},"ibge":2306603,"name":"Itatira","capital":0,"ibgeState":23,"siafi":1433,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.52608,-39.6202]}} +{"_id":{"$oid":"66f9d5ad542d90c053667157"},"ibge":2507200,"name":"Itatuba","capital":0,"ibgeState":25,"siafi":2045,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.38115,-35.638]}} +{"_id":{"$oid":"66f9d5ad542d90c053667158"},"ibge":2404903,"name":"Itaú","capital":0,"ibgeState":24,"siafi":1695,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.8363,-37.9912]}} +{"_id":{"$oid":"66f9d5ad542d90c053667159"},"ibge":3133758,"name":"Itaú de Minas","capital":0,"ibgeState":31,"siafi":5731,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7375,-46.7525]}} +{"_id":{"$oid":"66f9d5ad542d90c05366715a"},"ibge":5104559,"name":"Itaúba","capital":0,"ibgeState":51,"siafi":9901,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.0614,-55.2766]}} +{"_id":{"$oid":"66f9d5ad542d90c05366715b"},"ibge":1600253,"name":"Itaubal","capital":0,"ibgeState":16,"siafi":669,"ddd":96,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[0.602185,-50.6996]}} +{"_id":{"$oid":"66f9d5ad542d90c05366715c"},"ibge":5211404,"name":"Itauçu","capital":0,"ibgeState":52,"siafi":9423,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.2029,-49.6109]}} +{"_id":{"$oid":"66f9d5ad542d90c05366715d"},"ibge":2205102,"name":"Itaueira","capital":0,"ibgeState":22,"siafi":1101,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.59989,-43.0249]}} +{"_id":{"$oid":"66f9d5ad542d90c05366715e"},"ibge":3133808,"name":"Itaúna","capital":0,"ibgeState":31,"siafi":4675,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0818,-44.5801]}} +{"_id":{"$oid":"66f9d5ad542d90c05366715f"},"ibge":4111308,"name":"Itaúna do Sul","capital":0,"ibgeState":41,"siafi":7619,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7289,-52.8874]}} +{"_id":{"$oid":"66f9d5ad542d90c053667160"},"ibge":3133907,"name":"Itaverava","capital":0,"ibgeState":31,"siafi":4677,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6769,-43.6141]}} +{"_id":{"$oid":"66f9d5ad542d90c053667161"},"ibge":3134004,"name":"Itinga","capital":0,"ibgeState":31,"siafi":4679,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.61,-41.7672]}} +{"_id":{"$oid":"66f9d5ad542d90c053667162"},"ibge":2105427,"name":"Itinga do Maranhão","capital":0,"ibgeState":21,"siafi":174,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.45293,-47.5235]}} +{"_id":{"$oid":"66f9d5ad542d90c053667163"},"ibge":5104609,"name":"Itiquira","capital":0,"ibgeState":51,"siafi":9091,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-17.2147,-54.1422]}} +{"_id":{"$oid":"66f9d5ad542d90c053667164"},"ibge":3523602,"name":"Itirapina","capital":0,"ibgeState":35,"siafi":6573,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2562,-47.8166]}} +{"_id":{"$oid":"66f9d5ad542d90c053667165"},"ibge":3523701,"name":"Itirapuã","capital":0,"ibgeState":35,"siafi":6575,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6416,-47.2194]}} +{"_id":{"$oid":"66f9d5ad542d90c053667166"},"ibge":2916906,"name":"Itiruçu","capital":0,"ibgeState":29,"siafi":3639,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.529,-40.1472]}} +{"_id":{"$oid":"66f9d5ad542d90c053667167"},"ibge":2917003,"name":"Itiúba","capital":0,"ibgeState":29,"siafi":3641,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.6948,-39.8446]}} +{"_id":{"$oid":"66f9d5ad542d90c053667168"},"ibge":3523800,"name":"Itobi","capital":0,"ibgeState":35,"siafi":6577,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7309,-46.9743]}} +{"_id":{"$oid":"66f9d5ad542d90c053667169"},"ibge":2917102,"name":"Itororó","capital":0,"ibgeState":29,"siafi":3643,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.11,-40.0684]}} +{"_id":{"$oid":"66f9d5ad542d90c05366716a"},"ibge":3523909,"name":"Itu","capital":0,"ibgeState":35,"siafi":6579,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2544,-47.2927]}} +{"_id":{"$oid":"66f9d5ad542d90c05366716b"},"ibge":2917201,"name":"Ituaçu","capital":0,"ibgeState":29,"siafi":3645,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.8107,-41.3003]}} +{"_id":{"$oid":"66f9d5ad542d90c05366716c"},"ibge":2917300,"name":"Ituberá","capital":0,"ibgeState":29,"siafi":3647,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.7249,-39.1481]}} +{"_id":{"$oid":"66f9d5ad542d90c05366716d"},"ibge":3134103,"name":"Itueta","capital":0,"ibgeState":31,"siafi":4681,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.3999,-41.1746]}} +{"_id":{"$oid":"66f9d5ad542d90c05366716e"},"ibge":3134202,"name":"Ituiutaba","capital":0,"ibgeState":31,"siafi":4683,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.9772,-49.4639]}} +{"_id":{"$oid":"66f9d5ad542d90c05366716f"},"ibge":5211503,"name":"Itumbiara","capital":0,"ibgeState":52,"siafi":9425,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4093,-49.2158]}} +{"_id":{"$oid":"66f9d5ad542d90c053667170"},"ibge":3134301,"name":"Itumirim","capital":0,"ibgeState":31,"siafi":4685,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3171,-44.8724]}} +{"_id":{"$oid":"66f9d5ad542d90c053667171"},"ibge":3524006,"name":"Itupeva","capital":0,"ibgeState":35,"siafi":6581,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1526,-47.0593]}} +{"_id":{"$oid":"66f9d5ad542d90c053667172"},"ibge":1503705,"name":"Itupiranga","capital":0,"ibgeState":15,"siafi":473,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.13272,-49.3358]}} +{"_id":{"$oid":"66f9d5ad542d90c053667173"},"ibge":4208500,"name":"Ituporanga","capital":0,"ibgeState":42,"siafi":8167,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4101,-49.5963]}} +{"_id":{"$oid":"66f9d5ad542d90c053667174"},"ibge":3134400,"name":"Iturama","capital":0,"ibgeState":31,"siafi":4687,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7276,-50.1966]}} +{"_id":{"$oid":"66f9d5ad542d90c053667175"},"ibge":3134509,"name":"Itutinga","capital":0,"ibgeState":31,"siafi":4689,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3,-44.6567]}} +{"_id":{"$oid":"66f9d5ad542d90c053667176"},"ibge":3524105,"name":"Ituverava","capital":0,"ibgeState":35,"siafi":6583,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3355,-47.7902]}} +{"_id":{"$oid":"66f9d5ad542d90c053667177"},"ibge":2917334,"name":"Iuiú","capital":0,"ibgeState":29,"siafi":3285,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.4054,-43.5595]}} +{"_id":{"$oid":"66f9d5ad542d90c053667178"},"ibge":3203007,"name":"Iúna","capital":0,"ibgeState":32,"siafi":5659,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3531,-41.5334]}} +{"_id":{"$oid":"66f9d5ad542d90c053667179"},"ibge":4111407,"name":"Ivaí","capital":0,"ibgeState":41,"siafi":7621,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.0067,-50.857]}} +{"_id":{"$oid":"66f9d5ad542d90c05366717a"},"ibge":4111506,"name":"Ivaiporã","capital":0,"ibgeState":41,"siafi":7623,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.2485,-51.6754]}} +{"_id":{"$oid":"66f9d5ad542d90c05366717b"},"ibge":4111555,"name":"Ivaté","capital":0,"ibgeState":41,"siafi":9955,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4072,-53.3687]}} +{"_id":{"$oid":"66f9d5ad542d90c05366717c"},"ibge":4111605,"name":"Ivatuba","capital":0,"ibgeState":41,"siafi":7625,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6187,-52.2203]}} +{"_id":{"$oid":"66f9d5ad542d90c05366717d"},"ibge":5004700,"name":"Ivinhema","capital":0,"ibgeState":50,"siafi":9093,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.3046,-53.8184]}} +{"_id":{"$oid":"66f9d5ad542d90c05366717e"},"ibge":5211602,"name":"Ivolândia","capital":0,"ibgeState":52,"siafi":9427,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.5995,-50.7921]}} +{"_id":{"$oid":"66f9d5ad542d90c05366717f"},"ibge":4310751,"name":"Ivorá","capital":0,"ibgeState":43,"siafi":7395,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5232,-53.5842]}} +{"_id":{"$oid":"66f9d5ad542d90c053667180"},"ibge":4310801,"name":"Ivoti","capital":0,"ibgeState":43,"siafi":8717,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5995,-51.1533]}} +{"_id":{"$oid":"66f9d5ad542d90c053667181"},"ibge":2607901,"name":"Jaboatão dos Guararapes","capital":0,"ibgeState":26,"siafi":2457,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.11298,-35.015]}} +{"_id":{"$oid":"66f9d5ad542d90c053667182"},"ibge":4208609,"name":"Jaborá","capital":0,"ibgeState":42,"siafi":8169,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1782,-51.7279]}} +{"_id":{"$oid":"66f9d5ad542d90c053667183"},"ibge":2917359,"name":"Jaborandi","capital":0,"ibgeState":29,"siafi":9859,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.6071,-44.4255]}} +{"_id":{"$oid":"66f9d5ad542d90c053667184"},"ibge":3524204,"name":"Jaborandi","capital":0,"ibgeState":35,"siafi":6585,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6884,-48.4112]}} +{"_id":{"$oid":"66f9d5ad542d90c053667185"},"ibge":4111704,"name":"Jaboti","capital":0,"ibgeState":41,"siafi":7627,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7435,-50.0729]}} +{"_id":{"$oid":"66f9d5ad542d90c053667186"},"ibge":4310850,"name":"Jaboticaba","capital":0,"ibgeState":43,"siafi":7393,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6347,-53.2762]}} +{"_id":{"$oid":"66f9d5ad542d90c053667187"},"ibge":3524303,"name":"Jaboticabal","capital":0,"ibgeState":35,"siafi":6587,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.252,-48.3252]}} +{"_id":{"$oid":"66f9d5ad542d90c053667188"},"ibge":3134608,"name":"Jaboticatubas","capital":0,"ibgeState":31,"siafi":4691,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5119,-43.7373]}} +{"_id":{"$oid":"66f9d5ad542d90c053667189"},"ibge":2405009,"name":"Jaçanã","capital":0,"ibgeState":24,"siafi":1697,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.41856,-36.2031]}} +{"_id":{"$oid":"66f9d5ad542d90c05366718a"},"ibge":2917409,"name":"Jacaraci","capital":0,"ibgeState":29,"siafi":3649,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.8541,-42.4329]}} +{"_id":{"$oid":"66f9d5ad542d90c05366718b"},"ibge":2507309,"name":"Jacaraú","capital":0,"ibgeState":25,"siafi":2047,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.61453,-35.289]}} +{"_id":{"$oid":"66f9d5ad542d90c05366718c"},"ibge":2703403,"name":"Jacaré dos Homens","capital":0,"ibgeState":27,"siafi":2767,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.63545,-37.2076]}} +{"_id":{"$oid":"66f9d5ad542d90c05366718d"},"ibge":1503754,"name":"Jacareacanga","capital":0,"ibgeState":15,"siafi":631,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.21469,-57.7544]}} +{"_id":{"$oid":"66f9d5ad542d90c05366718e"},"ibge":3524402,"name":"Jacareí","capital":0,"ibgeState":35,"siafi":6589,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2983,-45.9658]}} +{"_id":{"$oid":"66f9d5ad542d90c05366718f"},"ibge":4111803,"name":"Jacarezinho","capital":0,"ibgeState":41,"siafi":7629,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1591,-49.9739]}} +{"_id":{"$oid":"66f9d5ad542d90c053667190"},"ibge":3524501,"name":"Jaci","capital":0,"ibgeState":35,"siafi":6591,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8805,-49.5797]}} +{"_id":{"$oid":"66f9d5ad542d90c053667191"},"ibge":5104807,"name":"Jaciara","capital":0,"ibgeState":51,"siafi":9095,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.9548,-54.9733]}} +{"_id":{"$oid":"66f9d5ad542d90c053667192"},"ibge":3134707,"name":"Jacinto","capital":0,"ibgeState":31,"siafi":4693,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.1428,-40.295]}} +{"_id":{"$oid":"66f9d5ad542d90c053667193"},"ibge":4208708,"name":"Jacinto Machado","capital":0,"ibgeState":42,"siafi":8171,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.9961,-49.7623]}} +{"_id":{"$oid":"66f9d5ad542d90c053667194"},"ibge":2917508,"name":"Jacobina","capital":0,"ibgeState":29,"siafi":3651,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.1812,-40.5117]}} +{"_id":{"$oid":"66f9d5ad542d90c053667195"},"ibge":2205151,"name":"Jacobina do Piauí","capital":0,"ibgeState":22,"siafi":2273,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.93063,-41.2075]}} +{"_id":{"$oid":"66f9d5ad542d90c053667196"},"ibge":3134806,"name":"Jacuí","capital":0,"ibgeState":31,"siafi":4695,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0137,-46.7359]}} +{"_id":{"$oid":"66f9d5ad542d90c053667197"},"ibge":2703502,"name":"Jacuípe","capital":0,"ibgeState":27,"siafi":2769,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.83951,-35.4591]}} +{"_id":{"$oid":"66f9d5ad542d90c053667198"},"ibge":4310876,"name":"Jacuizinho","capital":0,"ibgeState":43,"siafi":1146,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.0401,-53.0657]}} +{"_id":{"$oid":"66f9d5ad542d90c053667199"},"ibge":1503804,"name":"Jacundá","capital":0,"ibgeState":15,"siafi":475,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.44617,-49.1153]}} +{"_id":{"$oid":"66f9d5ad542d90c05366719a"},"ibge":3524600,"name":"Jacupiranga","capital":0,"ibgeState":35,"siafi":6593,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.6963,-48.0064]}} +{"_id":{"$oid":"66f9d5ad542d90c05366719b"},"ibge":4310900,"name":"Jacutinga","capital":0,"ibgeState":43,"siafi":8719,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7291,-52.5372]}} +{"_id":{"$oid":"66f9d5ad542d90c05366719c"},"ibge":3134905,"name":"Jacutinga","capital":0,"ibgeState":31,"siafi":4697,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.286,-46.6166]}} +{"_id":{"$oid":"66f9d5ad542d90c05366719d"},"ibge":4111902,"name":"Jaguapitã","capital":0,"ibgeState":41,"siafi":7631,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1104,-51.5342]}} +{"_id":{"$oid":"66f9d5ad542d90c05366719e"},"ibge":2917607,"name":"Jaguaquara","capital":0,"ibgeState":29,"siafi":3653,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.5248,-39.964]}} +{"_id":{"$oid":"66f9d5ad542d90c05366719f"},"ibge":3135001,"name":"Jaguaraçu","capital":0,"ibgeState":31,"siafi":4699,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.647,-42.7498]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671a0"},"ibge":4311007,"name":"Jaguarão","capital":0,"ibgeState":43,"siafi":8721,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-32.5604,-53.377]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671a1"},"ibge":2917706,"name":"Jaguarari","capital":0,"ibgeState":29,"siafi":3655,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.2569,-40.1999]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671a2"},"ibge":3203056,"name":"Jaguaré","capital":0,"ibgeState":32,"siafi":5713,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.907,-40.0759]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671a3"},"ibge":2306702,"name":"Jaguaretama","capital":0,"ibgeState":23,"siafi":1435,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.6051,-38.7639]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671a4"},"ibge":4311106,"name":"Jaguari","capital":0,"ibgeState":43,"siafi":8723,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4936,-54.703]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671a5"},"ibge":4112009,"name":"Jaguariaíva","capital":0,"ibgeState":41,"siafi":7633,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.2439,-49.7066]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671a6"},"ibge":2306801,"name":"Jaguaribara","capital":0,"ibgeState":23,"siafi":1437,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.67765,-38.5359]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671a7"},"ibge":2306900,"name":"Jaguaribe","capital":0,"ibgeState":23,"siafi":1439,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.90213,-38.6227]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671a8"},"ibge":2917805,"name":"Jaguaripe","capital":0,"ibgeState":29,"siafi":3657,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.1109,-38.8939]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671a9"},"ibge":3524709,"name":"Jaguariúna","capital":0,"ibgeState":35,"siafi":6595,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7037,-46.9851]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671aa"},"ibge":2307007,"name":"Jaguaruana","capital":0,"ibgeState":23,"siafi":1441,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.83151,-37.781]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671ab"},"ibge":4208807,"name":"Jaguaruna","capital":0,"ibgeState":42,"siafi":8173,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6146,-49.0296]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671ac"},"ibge":3135050,"name":"Jaíba","capital":0,"ibgeState":31,"siafi":2893,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.3432,-43.6688]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671ad"},"ibge":2205201,"name":"Jaicós","capital":0,"ibgeState":22,"siafi":1103,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.36229,-41.1371]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671ae"},"ibge":3524808,"name":"Jales","capital":0,"ibgeState":35,"siafi":6597,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2672,-50.5494]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671af"},"ibge":3524907,"name":"Jambeiro","capital":0,"ibgeState":35,"siafi":6599,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2522,-45.6942]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671b0"},"ibge":3135076,"name":"Jampruca","capital":0,"ibgeState":31,"siafi":2655,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.461,-41.809]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671b1"},"ibge":3135100,"name":"Janaúba","capital":0,"ibgeState":31,"siafi":4701,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.8022,-43.3132]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671b2"},"ibge":5211701,"name":"Jandaia","capital":0,"ibgeState":52,"siafi":9429,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.0481,-50.1453]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671b3"},"ibge":4112108,"name":"Jandaia do Sul","capital":0,"ibgeState":41,"siafi":7635,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6011,-51.6448]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671b4"},"ibge":2405108,"name":"Jandaíra","capital":0,"ibgeState":24,"siafi":1699,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.35211,-36.1278]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671b5"},"ibge":2917904,"name":"Jandaíra","capital":0,"ibgeState":29,"siafi":3659,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.5616,-37.7853]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671b6"},"ibge":3525003,"name":"Jandira","capital":0,"ibgeState":35,"siafi":6601,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5275,-46.9023]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671b7"},"ibge":2405207,"name":"Janduís","capital":0,"ibgeState":24,"siafi":1701,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.01474,-37.4048]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671b8"},"ibge":5104906,"name":"Jangada","capital":0,"ibgeState":51,"siafi":9861,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.235,-56.4917]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671b9"},"ibge":4112207,"name":"Janiópolis","capital":0,"ibgeState":41,"siafi":7637,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.1401,-52.7784]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671ba"},"ibge":3135209,"name":"Januária","capital":0,"ibgeState":31,"siafi":4703,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.4802,-44.3639]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671bb"},"ibge":2405306,"name":"Januário Cicco (Boa Saúde)","capital":0,"ibgeState":24,"siafi":1703,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.16566,-35.6219]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671bc"},"ibge":3135308,"name":"Japaraíba","capital":0,"ibgeState":31,"siafi":4705,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1442,-45.5015]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671bd"},"ibge":2703601,"name":"Japaratinga","capital":0,"ibgeState":27,"siafi":2771,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.08746,-35.2634]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671be"},"ibge":2803302,"name":"Japaratuba","capital":0,"ibgeState":28,"siafi":3165,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.5849,-36.9418]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671bf"},"ibge":3302270,"name":"Japeri","capital":0,"ibgeState":33,"siafi":2913,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6435,-43.6602]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671c0"},"ibge":2405405,"name":"Japi","capital":0,"ibgeState":24,"siafi":1705,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.46544,-35.9346]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671c1"},"ibge":4112306,"name":"Japira","capital":0,"ibgeState":41,"siafi":7639,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8142,-50.1422]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671c2"},"ibge":2803401,"name":"Japoatã","capital":0,"ibgeState":28,"siafi":3167,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.3477,-36.8045]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671c3"},"ibge":3135357,"name":"Japonvar","capital":0,"ibgeState":31,"siafi":630,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.9891,-44.2758]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671c4"},"ibge":5004809,"name":"Japorã","capital":0,"ibgeState":50,"siafi":161,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-23.8903,-54.4059]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671c5"},"ibge":4112405,"name":"Japurá","capital":0,"ibgeState":41,"siafi":7641,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4693,-52.5557]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671c6"},"ibge":1302108,"name":"Japurá","capital":0,"ibgeState":13,"siafi":245,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-1.88237,-66.9291]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671c7"},"ibge":2607950,"name":"Jaqueira","capital":0,"ibgeState":26,"siafi":548,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.72618,-35.7942]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671c8"},"ibge":4311122,"name":"Jaquirana","capital":0,"ibgeState":43,"siafi":7391,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.8811,-50.3637]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671c9"},"ibge":5211800,"name":"Jaraguá","capital":0,"ibgeState":52,"siafi":9431,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.7529,-49.3344]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671ca"},"ibge":4208906,"name":"Jaraguá do Sul","capital":0,"ibgeState":42,"siafi":8175,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.4851,-49.0713]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671cb"},"ibge":5004908,"name":"Jaraguari","capital":0,"ibgeState":50,"siafi":9097,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-20.1386,-54.3996]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671cc"},"ibge":2703700,"name":"Jaramataia","capital":0,"ibgeState":27,"siafi":2773,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.66224,-37.0046]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671cd"},"ibge":2307106,"name":"Jardim","capital":0,"ibgeState":23,"siafi":1443,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.57599,-39.2826]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671ce"},"ibge":5005004,"name":"Jardim","capital":0,"ibgeState":50,"siafi":9099,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-21.4799,-56.1489]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671cf"},"ibge":4112504,"name":"Jardim Alegre","capital":0,"ibgeState":41,"siafi":7643,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.1809,-51.6902]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671d0"},"ibge":2405504,"name":"Jardim de Angicos","capital":0,"ibgeState":24,"siafi":1707,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.64999,-35.9713]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671d1"},"ibge":2405603,"name":"Jardim de Piranhas","capital":0,"ibgeState":24,"siafi":1709,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.37665,-37.3496]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671d2"},"ibge":2205250,"name":"Jardim do Mulato","capital":0,"ibgeState":22,"siafi":997,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.099,-42.63]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671d3"},"ibge":2405702,"name":"Jardim do Seridó","capital":0,"ibgeState":24,"siafi":1711,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.58047,-36.7736]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671d4"},"ibge":4112603,"name":"Jardim Olinda","capital":0,"ibgeState":41,"siafi":7645,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5523,-52.0503]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671d5"},"ibge":3525102,"name":"Jardinópolis","capital":0,"ibgeState":35,"siafi":6603,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0176,-47.7606]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671d6"},"ibge":4208955,"name":"Jardinópolis","capital":0,"ibgeState":42,"siafi":5587,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7191,-52.8625]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671d7"},"ibge":4311130,"name":"Jari","capital":0,"ibgeState":43,"siafi":992,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.2922,-54.2237]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671d8"},"ibge":3525201,"name":"Jarinu","capital":0,"ibgeState":35,"siafi":6605,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1039,-46.728]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671d9"},"ibge":1100114,"name":"Jaru","capital":0,"ibgeState":11,"siafi":15,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.4318,-62.4788]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671da"},"ibge":5211909,"name":"Jataí","capital":0,"ibgeState":52,"siafi":9433,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.8784,-51.7204]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671db"},"ibge":4112702,"name":"Jataizinho","capital":0,"ibgeState":41,"siafi":7647,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2578,-50.9777]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671dc"},"ibge":2608008,"name":"Jataúba","capital":0,"ibgeState":26,"siafi":2459,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.97668,-36.4943]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671dd"},"ibge":5005103,"name":"Jateí","capital":0,"ibgeState":50,"siafi":9101,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.4806,-54.3079]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671de"},"ibge":2307205,"name":"Jati","capital":0,"ibgeState":23,"siafi":1445,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.6797,-39.0029]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671df"},"ibge":2105450,"name":"Jatobá","capital":0,"ibgeState":21,"siafi":176,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.82282,-44.2153]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671e0"},"ibge":2608057,"name":"Jatobá","capital":0,"ibgeState":26,"siafi":550,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.17476,-38.2607]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671e1"},"ibge":2205276,"name":"Jatobá do Piauí","capital":0,"ibgeState":22,"siafi":324,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.77025,-41.817]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671e2"},"ibge":3525300,"name":"Jaú","capital":0,"ibgeState":35,"siafi":6607,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2936,-48.5592]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671e3"},"ibge":1711506,"name":"Jaú do Tocantins","capital":0,"ibgeState":17,"siafi":329,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.6509,-48.589]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671e4"},"ibge":5212006,"name":"Jaupaci","capital":0,"ibgeState":52,"siafi":9435,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.1773,-50.9508]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671e5"},"ibge":5105002,"name":"Jauru","capital":0,"ibgeState":51,"siafi":8991,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.3342,-58.8723]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671e6"},"ibge":3135407,"name":"Jeceaba","capital":0,"ibgeState":31,"siafi":4707,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5339,-43.9894]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671e7"},"ibge":3135456,"name":"Jenipapo de Minas","capital":0,"ibgeState":31,"siafi":632,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.0831,-42.2589]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671e8"},"ibge":2105476,"name":"Jenipapo dos Vieiras","capital":0,"ibgeState":21,"siafi":178,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.36237,-45.6356]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671e9"},"ibge":3135506,"name":"Jequeri","capital":0,"ibgeState":31,"siafi":4709,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4542,-42.6651]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671ea"},"ibge":2703759,"name":"Jequiá da Praia","capital":0,"ibgeState":27,"siafi":562,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.0133,-36.0142]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671eb"},"ibge":2918001,"name":"Jequié","capital":0,"ibgeState":29,"siafi":3661,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.8509,-40.0877]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671ec"},"ibge":3135605,"name":"Jequitaí","capital":0,"ibgeState":31,"siafi":4711,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.229,-44.4376]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671ed"},"ibge":3135704,"name":"Jequitibá","capital":0,"ibgeState":31,"siafi":4713,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2345,-44.0304]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671ee"},"ibge":3135803,"name":"Jequitinhonha","capital":0,"ibgeState":31,"siafi":4715,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.4375,-41.0117]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671ef"},"ibge":2918100,"name":"Jeremoabo","capital":0,"ibgeState":29,"siafi":3663,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.0685,-38.3471]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671f0"},"ibge":2507408,"name":"Jericó","capital":0,"ibgeState":25,"siafi":2049,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.54577,-37.8036]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671f1"},"ibge":3525409,"name":"Jeriquara","capital":0,"ibgeState":35,"siafi":6609,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3116,-47.5918]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671f2"},"ibge":3203106,"name":"Jerônimo Monteiro","capital":0,"ibgeState":32,"siafi":5661,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7994,-41.3948]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671f3"},"ibge":2205300,"name":"Jerumenha","capital":0,"ibgeState":22,"siafi":1105,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.09128,-43.5033]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671f4"},"ibge":3135902,"name":"Jesuânia","capital":0,"ibgeState":31,"siafi":4717,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9887,-45.2911]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671f5"},"ibge":4112751,"name":"Jesuítas","capital":0,"ibgeState":41,"siafi":7997,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.3839,-53.3849]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671f6"},"ibge":5212055,"name":"Jesúpolis","capital":0,"ibgeState":52,"siafi":49,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.9484,-49.3739]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671f7"},"ibge":1100122,"name":"Ji-Paraná","capital":0,"ibgeState":11,"siafi":5,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.8777,-61.9322]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671f8"},"ibge":2307254,"name":"Jijoca de Jericoacoara","capital":0,"ibgeState":23,"siafi":985,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.79331,-40.5127]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671f9"},"ibge":2918209,"name":"Jiquiriçá","capital":0,"ibgeState":29,"siafi":3665,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.2621,-39.5737]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671fa"},"ibge":2918308,"name":"Jitaúna","capital":0,"ibgeState":29,"siafi":3667,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.0131,-39.8969]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671fb"},"ibge":4209003,"name":"Joaçaba","capital":0,"ibgeState":42,"siafi":8177,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1721,-51.5108]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671fc"},"ibge":3136009,"name":"Joaíma","capital":0,"ibgeState":31,"siafi":4719,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.6522,-41.0229]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671fd"},"ibge":3136108,"name":"Joanésia","capital":0,"ibgeState":31,"siafi":4721,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.1729,-42.6775]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671fe"},"ibge":3525508,"name":"Joanópolis","capital":0,"ibgeState":35,"siafi":6611,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.927,-46.2741]}} +{"_id":{"$oid":"66f9d5ad542d90c0536671ff"},"ibge":2608107,"name":"João Alfredo","capital":0,"ibgeState":26,"siafi":2461,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.86565,-35.5787]}} +{"_id":{"$oid":"66f9d5ad542d90c053667200"},"ibge":2405801,"name":"João Câmara","capital":0,"ibgeState":24,"siafi":1713,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.54094,-35.8122]}} +{"_id":{"$oid":"66f9d5ad542d90c053667201"},"ibge":2205359,"name":"João Costa","capital":0,"ibgeState":22,"siafi":326,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.50736,-42.4264]}} +{"_id":{"$oid":"66f9d5ad542d90c053667202"},"ibge":2405900,"name":"João Dias","capital":0,"ibgeState":24,"siafi":1715,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.27215,-37.7885]}} +{"_id":{"$oid":"66f9d5ad542d90c053667203"},"ibge":2918357,"name":"João Dourado","capital":0,"ibgeState":29,"siafi":3099,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.3486,-41.6548]}} +{"_id":{"$oid":"66f9d5ad542d90c053667204"},"ibge":2105500,"name":"João Lisboa","capital":0,"ibgeState":21,"siafi":809,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.44363,-47.4064]}} +{"_id":{"$oid":"66f9d5ad542d90c053667205"},"ibge":3136207,"name":"João Monlevade","capital":0,"ibgeState":31,"siafi":4723,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8126,-43.1735]}} +{"_id":{"$oid":"66f9d5ad542d90c053667206"},"ibge":3203130,"name":"João Neiva","capital":0,"ibgeState":32,"siafi":5721,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7577,-40.386]}} +{"_id":{"$oid":"66f9d5ad542d90c053667207"},"ibge":2507507,"name":"João Pessoa","capital":1,"ibgeState":25,"siafi":2051,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.11509,-34.8641]}} +{"_id":{"$oid":"66f9d5ad542d90c053667208"},"ibge":3136306,"name":"João Pinheiro","capital":0,"ibgeState":31,"siafi":4725,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.7398,-46.1715]}} +{"_id":{"$oid":"66f9d5ad542d90c053667209"},"ibge":3525607,"name":"João Ramalho","capital":0,"ibgeState":35,"siafi":6613,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2473,-50.7694]}} +{"_id":{"$oid":"66f9d5ad542d90c05366720a"},"ibge":3136405,"name":"Joaquim Felício","capital":0,"ibgeState":31,"siafi":4727,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.758,-44.1643]}} +{"_id":{"$oid":"66f9d5ad542d90c05366720b"},"ibge":2703809,"name":"Joaquim Gomes","capital":0,"ibgeState":27,"siafi":2775,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.1328,-35.7474]}} +{"_id":{"$oid":"66f9d5ad542d90c05366720c"},"ibge":2608206,"name":"Joaquim Nabuco","capital":0,"ibgeState":26,"siafi":2463,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.62281,-35.5288]}} +{"_id":{"$oid":"66f9d5ad542d90c05366720d"},"ibge":2205409,"name":"Joaquim Pires","capital":0,"ibgeState":22,"siafi":1107,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.50164,-42.1865]}} +{"_id":{"$oid":"66f9d5ad542d90c05366720e"},"ibge":4112801,"name":"Joaquim Távora","capital":0,"ibgeState":41,"siafi":7649,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4987,-49.909]}} +{"_id":{"$oid":"66f9d5ad542d90c05366720f"},"ibge":2513653,"name":"Joca Claudino","capital":0,"ibgeState":25,"siafi":514,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.48362,-38.4764]}} +{"_id":{"$oid":"66f9d5ad542d90c053667210"},"ibge":2205458,"name":"Joca Marques","capital":0,"ibgeState":22,"siafi":328,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.4804,-42.4255]}} +{"_id":{"$oid":"66f9d5ad542d90c053667211"},"ibge":4311155,"name":"Jóia","capital":0,"ibgeState":43,"siafi":9829,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6435,-54.1141]}} +{"_id":{"$oid":"66f9d5ad542d90c053667212"},"ibge":4209102,"name":"Joinville","capital":0,"ibgeState":42,"siafi":8179,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.3045,-48.8487]}} +{"_id":{"$oid":"66f9d5ad542d90c053667213"},"ibge":3136504,"name":"Jordânia","capital":0,"ibgeState":31,"siafi":4729,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.9009,-40.1841]}} +{"_id":{"$oid":"66f9d5ad542d90c053667214"},"ibge":1200328,"name":"Jordão","capital":0,"ibgeState":12,"siafi":653,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-9.1908,-71.9503]}} +{"_id":{"$oid":"66f9d5ad542d90c053667215"},"ibge":4209151,"name":"José Boiteux","capital":0,"ibgeState":42,"siafi":9957,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9566,-49.6286]}} +{"_id":{"$oid":"66f9d5ad542d90c053667216"},"ibge":3525706,"name":"José Bonifácio","capital":0,"ibgeState":35,"siafi":6615,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0551,-49.6892]}} +{"_id":{"$oid":"66f9d5ad542d90c053667217"},"ibge":2406007,"name":"José da Penha","capital":0,"ibgeState":24,"siafi":1717,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.31095,-38.2823]}} +{"_id":{"$oid":"66f9d5ad542d90c053667218"},"ibge":2205508,"name":"José de Freitas","capital":0,"ibgeState":22,"siafi":1109,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.75146,-42.5746]}} +{"_id":{"$oid":"66f9d5ad542d90c053667219"},"ibge":3136520,"name":"José Gonçalves de Minas","capital":0,"ibgeState":31,"siafi":634,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.9053,-42.6014]}} +{"_id":{"$oid":"66f9d5ad542d90c05366721a"},"ibge":3136553,"name":"José Raydan","capital":0,"ibgeState":31,"siafi":636,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.2195,-42.4946]}} +{"_id":{"$oid":"66f9d5ad542d90c05366721b"},"ibge":2105609,"name":"Joselândia","capital":0,"ibgeState":21,"siafi":811,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.98611,-44.6958]}} +{"_id":{"$oid":"66f9d5ad542d90c05366721c"},"ibge":3136579,"name":"Josenópolis","capital":0,"ibgeState":31,"siafi":638,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.5417,-42.5151]}} +{"_id":{"$oid":"66f9d5ad542d90c05366721d"},"ibge":5212105,"name":"Joviânia","capital":0,"ibgeState":52,"siafi":9437,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.802,-49.6197]}} +{"_id":{"$oid":"66f9d5ad542d90c05366721e"},"ibge":5105101,"name":"Juara","capital":0,"ibgeState":51,"siafi":9819,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.2639,-57.5244]}} +{"_id":{"$oid":"66f9d5ad542d90c05366721f"},"ibge":2507606,"name":"Juarez Távora","capital":0,"ibgeState":25,"siafi":2053,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.1713,-35.5686]}} +{"_id":{"$oid":"66f9d5ad542d90c053667220"},"ibge":1711803,"name":"Juarina","capital":0,"ibgeState":17,"siafi":349,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.11951,-49.0643]}} +{"_id":{"$oid":"66f9d5ad542d90c053667221"},"ibge":3136652,"name":"Juatuba","capital":0,"ibgeState":31,"siafi":2691,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9448,-44.3451]}} +{"_id":{"$oid":"66f9d5ad542d90c053667222"},"ibge":2507705,"name":"Juazeirinho","capital":0,"ibgeState":25,"siafi":2055,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.06092,-36.5793]}} +{"_id":{"$oid":"66f9d5ad542d90c053667223"},"ibge":2918407,"name":"Juazeiro","capital":0,"ibgeState":29,"siafi":3669,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.41622,-40.5033]}} +{"_id":{"$oid":"66f9d5ad542d90c053667224"},"ibge":2307304,"name":"Juazeiro do Norte","capital":0,"ibgeState":23,"siafi":1447,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.19621,-39.3076]}} +{"_id":{"$oid":"66f9d5ad542d90c053667225"},"ibge":2205516,"name":"Juazeiro do Piauí","capital":0,"ibgeState":22,"siafi":330,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.17459,-41.6976]}} +{"_id":{"$oid":"66f9d5ad542d90c053667226"},"ibge":2307403,"name":"Jucás","capital":0,"ibgeState":23,"siafi":1449,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.51523,-39.5187]}} +{"_id":{"$oid":"66f9d5ad542d90c053667227"},"ibge":2608255,"name":"Jucati","capital":0,"ibgeState":26,"siafi":2295,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.70195,-36.4871]}} +{"_id":{"$oid":"66f9d5ad542d90c053667228"},"ibge":2918456,"name":"Jucuruçu","capital":0,"ibgeState":29,"siafi":3287,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.8488,-40.1641]}} +{"_id":{"$oid":"66f9d5ad542d90c053667229"},"ibge":2406106,"name":"Jucurutu","capital":0,"ibgeState":24,"siafi":1719,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.0306,-37.009]}} +{"_id":{"$oid":"66f9d5ad542d90c05366722a"},"ibge":5105150,"name":"Juína","capital":0,"ibgeState":51,"siafi":9831,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.3728,-58.7483]}} +{"_id":{"$oid":"66f9d5ad542d90c05366722b"},"ibge":3136702,"name":"Juiz de Fora","capital":0,"ibgeState":31,"siafi":4733,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7595,-43.3398]}} +{"_id":{"$oid":"66f9d5ad542d90c05366722c"},"ibge":2205524,"name":"Júlio Borges","capital":0,"ibgeState":22,"siafi":332,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.3225,-44.2381]}} +{"_id":{"$oid":"66f9d5ad542d90c05366722d"},"ibge":4311205,"name":"Júlio de Castilhos","capital":0,"ibgeState":43,"siafi":8725,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.2299,-53.6772]}} +{"_id":{"$oid":"66f9d5ad542d90c05366722e"},"ibge":3525805,"name":"Júlio Mesquita","capital":0,"ibgeState":35,"siafi":6617,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0112,-49.7873]}} +{"_id":{"$oid":"66f9d5ad542d90c05366722f"},"ibge":3525854,"name":"Jumirim","capital":0,"ibgeState":35,"siafi":802,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0884,-47.7868]}} +{"_id":{"$oid":"66f9d5ad542d90c053667230"},"ibge":2105658,"name":"Junco do Maranhão","capital":0,"ibgeState":21,"siafi":180,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.83888,-46.09]}} +{"_id":{"$oid":"66f9d5ad542d90c053667231"},"ibge":2507804,"name":"Junco do Seridó","capital":0,"ibgeState":25,"siafi":2057,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.99269,-36.7166]}} +{"_id":{"$oid":"66f9d5ad542d90c053667232"},"ibge":2406155,"name":"Jundiá","capital":0,"ibgeState":24,"siafi":1108,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.26866,-35.3495]}} +{"_id":{"$oid":"66f9d5ad542d90c053667233"},"ibge":2703908,"name":"Jundiá","capital":0,"ibgeState":27,"siafi":2777,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.93297,-35.5669]}} +{"_id":{"$oid":"66f9d5ad542d90c053667234"},"ibge":3525904,"name":"Jundiaí","capital":0,"ibgeState":35,"siafi":6619,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1852,-46.8974]}} +{"_id":{"$oid":"66f9d5ad542d90c053667235"},"ibge":4112900,"name":"Jundiaí do Sul","capital":0,"ibgeState":41,"siafi":7651,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4357,-50.2496]}} +{"_id":{"$oid":"66f9d5ad542d90c053667236"},"ibge":2704005,"name":"Junqueiro","capital":0,"ibgeState":27,"siafi":2779,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.90696,-36.4803]}} +{"_id":{"$oid":"66f9d5ad542d90c053667237"},"ibge":3526001,"name":"Junqueirópolis","capital":0,"ibgeState":35,"siafi":6621,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5103,-51.4342]}} +{"_id":{"$oid":"66f9d5ad542d90c053667238"},"ibge":2608305,"name":"Jupi","capital":0,"ibgeState":26,"siafi":2465,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.70904,-36.4126]}} +{"_id":{"$oid":"66f9d5ad542d90c053667239"},"ibge":4209177,"name":"Jupiá","capital":0,"ibgeState":42,"siafi":924,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.395,-52.7298]}} +{"_id":{"$oid":"66f9d5ad542d90c05366723a"},"ibge":3526100,"name":"Juquiá","capital":0,"ibgeState":35,"siafi":6623,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.3101,-47.6426]}} +{"_id":{"$oid":"66f9d5ad542d90c05366723b"},"ibge":3526209,"name":"Juquitiba","capital":0,"ibgeState":35,"siafi":6625,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.9244,-47.0653]}} +{"_id":{"$oid":"66f9d5ad542d90c05366723c"},"ibge":3136801,"name":"Juramento","capital":0,"ibgeState":31,"siafi":4735,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.8473,-43.5865]}} +{"_id":{"$oid":"66f9d5ad542d90c05366723d"},"ibge":4112959,"name":"Juranda","capital":0,"ibgeState":41,"siafi":8463,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.4209,-52.8413]}} +{"_id":{"$oid":"66f9d5ad542d90c05366723e"},"ibge":2608404,"name":"Jurema","capital":0,"ibgeState":26,"siafi":2467,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.70714,-36.1347]}} +{"_id":{"$oid":"66f9d5ad542d90c05366723f"},"ibge":2205532,"name":"Jurema","capital":0,"ibgeState":22,"siafi":334,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.21992,-43.1337]}} +{"_id":{"$oid":"66f9d5ad542d90c053667240"},"ibge":2507903,"name":"Juripiranga","capital":0,"ibgeState":25,"siafi":2059,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.36176,-35.2321]}} +{"_id":{"$oid":"66f9d5ad542d90c053667241"},"ibge":2508000,"name":"Juru","capital":0,"ibgeState":25,"siafi":2061,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.52983,-37.815]}} +{"_id":{"$oid":"66f9d5ad542d90c053667242"},"ibge":1302207,"name":"Juruá","capital":0,"ibgeState":13,"siafi":247,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.48438,-66.0718]}} +{"_id":{"$oid":"66f9d5ad542d90c053667243"},"ibge":3136900,"name":"Juruaia","capital":0,"ibgeState":31,"siafi":4737,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2493,-46.5735]}} +{"_id":{"$oid":"66f9d5ad542d90c053667244"},"ibge":5105176,"name":"Juruena","capital":0,"ibgeState":51,"siafi":9921,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.3178,-58.3592]}} +{"_id":{"$oid":"66f9d5ad542d90c053667245"},"ibge":1503903,"name":"Juruti","capital":0,"ibgeState":15,"siafi":477,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.16347,-56.0889]}} +{"_id":{"$oid":"66f9d5ad542d90c053667246"},"ibge":5105200,"name":"Juscimeira","capital":0,"ibgeState":51,"siafi":9189,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-16.0633,-54.8859]}} +{"_id":{"$oid":"66f9d5ad542d90c053667247"},"ibge":2918506,"name":"Jussara","capital":0,"ibgeState":29,"siafi":3671,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.0431,-41.9702]}} +{"_id":{"$oid":"66f9d5ad542d90c053667248"},"ibge":5212204,"name":"Jussara","capital":0,"ibgeState":52,"siafi":9439,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.8659,-50.8668]}} +{"_id":{"$oid":"66f9d5ad542d90c053667249"},"ibge":4113007,"name":"Jussara","capital":0,"ibgeState":41,"siafi":7653,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6219,-52.4693]}} +{"_id":{"$oid":"66f9d5ad542d90c05366724a"},"ibge":2918555,"name":"Jussari","capital":0,"ibgeState":29,"siafi":3069,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.192,-39.491]}} +{"_id":{"$oid":"66f9d5ad542d90c05366724b"},"ibge":2918605,"name":"Jussiape","capital":0,"ibgeState":29,"siafi":3673,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.5155,-41.5882]}} +{"_id":{"$oid":"66f9d5ad542d90c05366724c"},"ibge":1302306,"name":"Jutaí","capital":0,"ibgeState":13,"siafi":249,"ddd":97,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-2.75814,-66.7595]}} +{"_id":{"$oid":"66f9d5ad542d90c05366724d"},"ibge":5005152,"name":"Juti","capital":0,"ibgeState":50,"siafi":9923,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.8596,-54.6061]}} +{"_id":{"$oid":"66f9d5ad542d90c05366724e"},"ibge":3136959,"name":"Juvenília","capital":0,"ibgeState":31,"siafi":640,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.2662,-44.1597]}} +{"_id":{"$oid":"66f9d5ad542d90c05366724f"},"ibge":4113106,"name":"Kaloré","capital":0,"ibgeState":41,"siafi":7655,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8188,-51.6687]}} +{"_id":{"$oid":"66f9d5ad542d90c053667250"},"ibge":1302405,"name":"Lábrea","capital":0,"ibgeState":13,"siafi":251,"ddd":97,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-7.26413,-64.7948]}} +{"_id":{"$oid":"66f9d5ad542d90c053667251"},"ibge":4209201,"name":"Lacerdópolis","capital":0,"ibgeState":42,"siafi":8181,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2579,-51.5577]}} +{"_id":{"$oid":"66f9d5ad542d90c053667252"},"ibge":3137007,"name":"Ladainha","capital":0,"ibgeState":31,"siafi":4739,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.6279,-41.7488]}} +{"_id":{"$oid":"66f9d5ad542d90c053667253"},"ibge":5005202,"name":"Ladário","capital":0,"ibgeState":50,"siafi":9103,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-19.0089,-57.5973]}} +{"_id":{"$oid":"66f9d5ad542d90c053667254"},"ibge":2918704,"name":"Lafaiete Coutinho","capital":0,"ibgeState":29,"siafi":3675,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.6541,-40.2119]}} +{"_id":{"$oid":"66f9d5ad542d90c053667255"},"ibge":3137106,"name":"Lagamar","capital":0,"ibgeState":31,"siafi":4741,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.1759,-46.8063]}} +{"_id":{"$oid":"66f9d5ad542d90c053667256"},"ibge":2803500,"name":"Lagarto","capital":0,"ibgeState":28,"siafi":3169,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.9136,-37.6689]}} +{"_id":{"$oid":"66f9d5ad542d90c053667257"},"ibge":4209300,"name":"Lages","capital":0,"ibgeState":42,"siafi":8183,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.815,-50.3259]}} +{"_id":{"$oid":"66f9d5ad542d90c053667258"},"ibge":2105708,"name":"Lago da Pedra","capital":0,"ibgeState":21,"siafi":813,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.56974,-45.1319]}} +{"_id":{"$oid":"66f9d5ad542d90c053667259"},"ibge":2105807,"name":"Lago do Junco","capital":0,"ibgeState":21,"siafi":815,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.609,-45.049]}} +{"_id":{"$oid":"66f9d5ad542d90c05366725a"},"ibge":2105948,"name":"Lago dos Rodrigues","capital":0,"ibgeState":21,"siafi":184,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.61173,-44.9798]}} +{"_id":{"$oid":"66f9d5ad542d90c05366725b"},"ibge":2105906,"name":"Lago Verde","capital":0,"ibgeState":21,"siafi":817,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.94661,-44.826]}} +{"_id":{"$oid":"66f9d5ad542d90c05366725c"},"ibge":2508109,"name":"Lagoa","capital":0,"ibgeState":25,"siafi":2063,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.58572,-37.9127]}} +{"_id":{"$oid":"66f9d5ad542d90c05366725d"},"ibge":2205557,"name":"Lagoa Alegre","capital":0,"ibgeState":22,"siafi":999,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.51539,-42.6309]}} +{"_id":{"$oid":"66f9d5ad542d90c05366725e"},"ibge":4311239,"name":"Lagoa Bonita do Sul","capital":0,"ibgeState":43,"siafi":1148,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4939,-53.017]}} +{"_id":{"$oid":"66f9d5ad542d90c05366725f"},"ibge":2406205,"name":"Lagoa d'Anta","capital":0,"ibgeState":24,"siafi":1723,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.39493,-35.5949]}} +{"_id":{"$oid":"66f9d5ad542d90c053667260"},"ibge":2704104,"name":"Lagoa da Canoa","capital":0,"ibgeState":27,"siafi":2781,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.83291,-36.7413]}} +{"_id":{"$oid":"66f9d5ad542d90c053667261"},"ibge":1711902,"name":"Lagoa da Confusão","capital":0,"ibgeState":17,"siafi":367,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7906,-49.6199]}} +{"_id":{"$oid":"66f9d5ad542d90c053667262"},"ibge":3137205,"name":"Lagoa da Prata","capital":0,"ibgeState":31,"siafi":4743,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0237,-45.5401]}} +{"_id":{"$oid":"66f9d5ad542d90c053667263"},"ibge":2508208,"name":"Lagoa de Dentro","capital":0,"ibgeState":25,"siafi":2065,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.67213,-35.3706]}} +{"_id":{"$oid":"66f9d5ad542d90c053667264"},"ibge":2608503,"name":"Lagoa de Itaenga","capital":0,"ibgeState":26,"siafi":2469,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.93005,-35.2874]}} +{"_id":{"$oid":"66f9d5ad542d90c053667265"},"ibge":2406304,"name":"Lagoa de Pedras","capital":0,"ibgeState":24,"siafi":1725,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.15082,-35.4299]}} +{"_id":{"$oid":"66f9d5ad542d90c053667266"},"ibge":2205573,"name":"Lagoa de São Francisco","capital":0,"ibgeState":22,"siafi":338,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.38505,-41.5969]}} +{"_id":{"$oid":"66f9d5ad542d90c053667267"},"ibge":2406403,"name":"Lagoa de Velhos","capital":0,"ibgeState":24,"siafi":1727,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.0119,-35.8729]}} +{"_id":{"$oid":"66f9d5ad542d90c053667268"},"ibge":2205565,"name":"Lagoa do Barro do Piauí","capital":0,"ibgeState":22,"siafi":2259,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.47673,-41.5342]}} +{"_id":{"$oid":"66f9d5ad542d90c053667269"},"ibge":2608453,"name":"Lagoa do Carro","capital":0,"ibgeState":26,"siafi":2289,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.84383,-35.3108]}} +{"_id":{"$oid":"66f9d5ad542d90c05366726a"},"ibge":2105922,"name":"Lagoa do Mato","capital":0,"ibgeState":21,"siafi":182,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.05023,-43.5333]}} +{"_id":{"$oid":"66f9d5ad542d90c05366726b"},"ibge":2608602,"name":"Lagoa do Ouro","capital":0,"ibgeState":26,"siafi":2471,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.12567,-36.4584]}} +{"_id":{"$oid":"66f9d5ad542d90c05366726c"},"ibge":2205581,"name":"Lagoa do Piauí","capital":0,"ibgeState":22,"siafi":340,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.41864,-42.6437]}} +{"_id":{"$oid":"66f9d5ad542d90c05366726d"},"ibge":2205599,"name":"Lagoa do Sítio","capital":0,"ibgeState":22,"siafi":342,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.50766,-41.5653]}} +{"_id":{"$oid":"66f9d5ad542d90c05366726e"},"ibge":1711951,"name":"Lagoa do Tocantins","capital":0,"ibgeState":17,"siafi":353,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.368,-47.538]}} +{"_id":{"$oid":"66f9d5ad542d90c05366726f"},"ibge":2608701,"name":"Lagoa dos Gatos","capital":0,"ibgeState":26,"siafi":2473,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.6602,-35.904]}} +{"_id":{"$oid":"66f9d5ad542d90c053667270"},"ibge":3137304,"name":"Lagoa dos Patos","capital":0,"ibgeState":31,"siafi":4745,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.978,-44.5754]}} +{"_id":{"$oid":"66f9d5ad542d90c053667271"},"ibge":4311270,"name":"Lagoa dos Três Cantos","capital":0,"ibgeState":43,"siafi":5951,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5676,-52.8618]}} +{"_id":{"$oid":"66f9d5ad542d90c053667272"},"ibge":3137403,"name":"Lagoa Dourada","capital":0,"ibgeState":31,"siafi":4747,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9139,-44.0797]}} +{"_id":{"$oid":"66f9d5ad542d90c053667273"},"ibge":3137502,"name":"Lagoa Formosa","capital":0,"ibgeState":31,"siafi":4749,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7715,-46.4012]}} +{"_id":{"$oid":"66f9d5ad542d90c053667274"},"ibge":3137536,"name":"Lagoa Grande","capital":0,"ibgeState":31,"siafi":2905,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.8323,-46.5165]}} +{"_id":{"$oid":"66f9d5ad542d90c053667275"},"ibge":2608750,"name":"Lagoa Grande","capital":0,"ibgeState":26,"siafi":552,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.99452,-40.2767]}} +{"_id":{"$oid":"66f9d5ad542d90c053667276"},"ibge":2105963,"name":"Lagoa Grande do Maranhão","capital":0,"ibgeState":21,"siafi":186,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.98893,-45.3816]}} +{"_id":{"$oid":"66f9d5ad542d90c053667277"},"ibge":2406502,"name":"Lagoa Nova","capital":0,"ibgeState":24,"siafi":1729,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.09339,-36.4703]}} +{"_id":{"$oid":"66f9d5ad542d90c053667278"},"ibge":2918753,"name":"Lagoa Real","capital":0,"ibgeState":29,"siafi":3289,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.0334,-42.1328]}} +{"_id":{"$oid":"66f9d5ad542d90c053667279"},"ibge":2406601,"name":"Lagoa Salgada","capital":0,"ibgeState":24,"siafi":1731,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.12295,-35.4724]}} +{"_id":{"$oid":"66f9d5ad542d90c05366727a"},"ibge":5212253,"name":"Lagoa Santa","capital":0,"ibgeState":52,"siafi":1076,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.1832,-51.3998]}} +{"_id":{"$oid":"66f9d5ad542d90c05366727b"},"ibge":3137601,"name":"Lagoa Santa","capital":0,"ibgeState":31,"siafi":4751,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6397,-43.8932]}} +{"_id":{"$oid":"66f9d5ad542d90c05366727c"},"ibge":2508307,"name":"Lagoa Seca","capital":0,"ibgeState":25,"siafi":2067,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.15535,-35.8491]}} +{"_id":{"$oid":"66f9d5ad542d90c05366727d"},"ibge":4311304,"name":"Lagoa Vermelha","capital":0,"ibgeState":43,"siafi":8727,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.2093,-51.5248]}} +{"_id":{"$oid":"66f9d5ad542d90c05366727e"},"ibge":4311254,"name":"Lagoão","capital":0,"ibgeState":43,"siafi":7389,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.2348,-52.7997]}} +{"_id":{"$oid":"66f9d5ad542d90c05366727f"},"ibge":3526308,"name":"Lagoinha","capital":0,"ibgeState":35,"siafi":6627,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0846,-45.1944]}} +{"_id":{"$oid":"66f9d5ad542d90c053667280"},"ibge":2205540,"name":"Lagoinha do Piauí","capital":0,"ibgeState":22,"siafi":336,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.83074,-42.6223]}} +{"_id":{"$oid":"66f9d5ad542d90c053667281"},"ibge":4209409,"name":"Laguna","capital":0,"ibgeState":42,"siafi":8185,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.4843,-48.7772]}} +{"_id":{"$oid":"66f9d5ad542d90c053667282"},"ibge":5005251,"name":"Laguna Carapã","capital":0,"ibgeState":50,"siafi":163,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.5448,-55.1502]}} +{"_id":{"$oid":"66f9d5ad542d90c053667283"},"ibge":2918803,"name":"Laje","capital":0,"ibgeState":29,"siafi":3677,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.1673,-39.4213]}} +{"_id":{"$oid":"66f9d5ad542d90c053667284"},"ibge":3302304,"name":"Laje do Muriaé","capital":0,"ibgeState":33,"siafi":5845,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2091,-42.1271]}} +{"_id":{"$oid":"66f9d5ad542d90c053667285"},"ibge":1712009,"name":"Lajeado","capital":0,"ibgeState":17,"siafi":351,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.74996,-48.3565]}} +{"_id":{"$oid":"66f9d5ad542d90c053667286"},"ibge":4311403,"name":"Lajeado","capital":0,"ibgeState":43,"siafi":8729,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4591,-51.9644]}} +{"_id":{"$oid":"66f9d5ad542d90c053667287"},"ibge":4311429,"name":"Lajeado do Bugre","capital":0,"ibgeState":43,"siafi":5983,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6913,-53.1818]}} +{"_id":{"$oid":"66f9d5ad542d90c053667288"},"ibge":4209458,"name":"Lajeado Grande","capital":0,"ibgeState":42,"siafi":5739,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.8576,-52.5648]}} +{"_id":{"$oid":"66f9d5ad542d90c053667289"},"ibge":2105989,"name":"Lajeado Novo","capital":0,"ibgeState":21,"siafi":188,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.18539,-47.0293]}} +{"_id":{"$oid":"66f9d5ad542d90c05366728a"},"ibge":2918902,"name":"Lajedão","capital":0,"ibgeState":29,"siafi":3679,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.6056,-40.3383]}} +{"_id":{"$oid":"66f9d5ad542d90c05366728b"},"ibge":2919009,"name":"Lajedinho","capital":0,"ibgeState":29,"siafi":3681,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.3529,-40.9048]}} +{"_id":{"$oid":"66f9d5ad542d90c05366728c"},"ibge":2608800,"name":"Lajedo","capital":0,"ibgeState":26,"siafi":2475,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.65791,-36.3293]}} +{"_id":{"$oid":"66f9d5ad542d90c05366728d"},"ibge":2919058,"name":"Lajedo do Tabocal","capital":0,"ibgeState":29,"siafi":3291,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.4663,-40.2204]}} +{"_id":{"$oid":"66f9d5ad542d90c05366728e"},"ibge":2406700,"name":"Lajes","capital":0,"ibgeState":24,"siafi":1733,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.69322,-36.247]}} +{"_id":{"$oid":"66f9d5ad542d90c05366728f"},"ibge":2406809,"name":"Lajes Pintadas","capital":0,"ibgeState":24,"siafi":1735,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.14943,-36.1171]}} +{"_id":{"$oid":"66f9d5ad542d90c053667290"},"ibge":3137700,"name":"Lajinha","capital":0,"ibgeState":31,"siafi":4753,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1539,-41.6228]}} +{"_id":{"$oid":"66f9d5ad542d90c053667291"},"ibge":2919108,"name":"Lamarão","capital":0,"ibgeState":29,"siafi":3683,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.773,-38.887]}} +{"_id":{"$oid":"66f9d5ad542d90c053667292"},"ibge":3137809,"name":"Lambari","capital":0,"ibgeState":31,"siafi":4755,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9671,-45.3498]}} +{"_id":{"$oid":"66f9d5ad542d90c053667293"},"ibge":5105234,"name":"Lambari D'Oeste","capital":0,"ibgeState":51,"siafi":137,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.3188,-58.0046]}} +{"_id":{"$oid":"66f9d5ad542d90c053667294"},"ibge":3137908,"name":"Lamim","capital":0,"ibgeState":31,"siafi":4757,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.79,-43.4706]}} +{"_id":{"$oid":"66f9d5ad542d90c053667295"},"ibge":2205607,"name":"Landri Sales","capital":0,"ibgeState":22,"siafi":1111,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.25922,-43.9364]}} +{"_id":{"$oid":"66f9d5ad542d90c053667296"},"ibge":4113205,"name":"Lapa","capital":0,"ibgeState":41,"siafi":7657,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.7671,-49.7168]}} +{"_id":{"$oid":"66f9d5ad542d90c053667297"},"ibge":2919157,"name":"Lapão","capital":0,"ibgeState":29,"siafi":3973,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.3851,-41.8286]}} +{"_id":{"$oid":"66f9d5ad542d90c053667298"},"ibge":3203163,"name":"Laranja da Terra","capital":0,"ibgeState":32,"siafi":5723,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8994,-41.0621]}} +{"_id":{"$oid":"66f9d5ad542d90c053667299"},"ibge":3138005,"name":"Laranjal","capital":0,"ibgeState":31,"siafi":4759,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3715,-42.4732]}} +{"_id":{"$oid":"66f9d5ad542d90c05366729a"},"ibge":4113254,"name":"Laranjal","capital":0,"ibgeState":41,"siafi":5501,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.8862,-52.47]}} +{"_id":{"$oid":"66f9d5ad542d90c05366729b"},"ibge":1600279,"name":"Laranjal do Jari","capital":0,"ibgeState":16,"siafi":613,"ddd":96,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.804911,-52.453]}} +{"_id":{"$oid":"66f9d5ad542d90c05366729c"},"ibge":3526407,"name":"Laranjal Paulista","capital":0,"ibgeState":35,"siafi":6629,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0506,-47.8375]}} +{"_id":{"$oid":"66f9d5ad542d90c05366729d"},"ibge":2803609,"name":"Laranjeiras","capital":0,"ibgeState":28,"siafi":3171,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7981,-37.1731]}} +{"_id":{"$oid":"66f9d5ad542d90c05366729e"},"ibge":4113304,"name":"Laranjeiras do Sul","capital":0,"ibgeState":41,"siafi":7659,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4077,-52.4109]}} +{"_id":{"$oid":"66f9d5ad542d90c05366729f"},"ibge":3138104,"name":"Lassance","capital":0,"ibgeState":31,"siafi":4761,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.887,-44.5735]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672a0"},"ibge":2508406,"name":"Lastro","capital":0,"ibgeState":25,"siafi":2069,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.50603,-38.1742]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672a1"},"ibge":4209508,"name":"Laurentino","capital":0,"ibgeState":42,"siafi":8187,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2173,-49.7331]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672a2"},"ibge":2919207,"name":"Lauro de Freitas","capital":0,"ibgeState":29,"siafi":3685,"ddd":71,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.8978,-38.321]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672a3"},"ibge":4209607,"name":"Lauro Muller","capital":0,"ibgeState":42,"siafi":8189,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3859,-49.4035]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672a4"},"ibge":1712157,"name":"Lavandeira","capital":0,"ibgeState":17,"siafi":86,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.7847,-46.5099]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672a5"},"ibge":3526506,"name":"Lavínia","capital":0,"ibgeState":35,"siafi":6631,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1639,-51.0412]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672a6"},"ibge":3138203,"name":"Lavras","capital":0,"ibgeState":31,"siafi":4763,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.248,-45.0009]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672a7"},"ibge":2307502,"name":"Lavras da Mangabeira","capital":0,"ibgeState":23,"siafi":1451,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.7448,-38.9706]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672a8"},"ibge":4311502,"name":"Lavras do Sul","capital":0,"ibgeState":43,"siafi":8731,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.8071,-53.8931]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672a9"},"ibge":3526605,"name":"Lavrinhas","capital":0,"ibgeState":35,"siafi":6633,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.57,-44.9024]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672aa"},"ibge":3138302,"name":"Leandro Ferreira","capital":0,"ibgeState":31,"siafi":4765,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7193,-45.0279]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672ab"},"ibge":4209706,"name":"Lebon Régis","capital":0,"ibgeState":42,"siafi":8191,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.928,-50.6921]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672ac"},"ibge":3526704,"name":"Leme","capital":0,"ibgeState":35,"siafi":6635,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1809,-47.3841]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672ad"},"ibge":3138351,"name":"Leme do Prado","capital":0,"ibgeState":31,"siafi":642,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.0793,-42.6936]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672ae"},"ibge":2919306,"name":"Lençóis","capital":0,"ibgeState":29,"siafi":3687,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.5616,-41.3928]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672af"},"ibge":3526803,"name":"Lençóis Paulista","capital":0,"ibgeState":35,"siafi":6637,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6027,-48.8037]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672b0"},"ibge":4209805,"name":"Leoberto Leal","capital":0,"ibgeState":42,"siafi":8193,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5081,-49.2789]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672b1"},"ibge":3138401,"name":"Leopoldina","capital":0,"ibgeState":31,"siafi":4767,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5296,-42.6421]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672b2"},"ibge":5212303,"name":"Leopoldo de Bulhões","capital":0,"ibgeState":52,"siafi":9443,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.619,-48.7428]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672b3"},"ibge":4113403,"name":"Leópolis","capital":0,"ibgeState":41,"siafi":7661,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0818,-50.7511]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672b4"},"ibge":4311601,"name":"Liberato Salzano","capital":0,"ibgeState":43,"siafi":8733,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.601,-53.0753]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672b5"},"ibge":3138500,"name":"Liberdade","capital":0,"ibgeState":31,"siafi":4769,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0275,-44.3208]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672b6"},"ibge":2919405,"name":"Licínio de Almeida","capital":0,"ibgeState":29,"siafi":3689,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.6842,-42.5095]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672b7"},"ibge":4113429,"name":"Lidianópolis","capital":0,"ibgeState":41,"siafi":5507,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.11,-51.6506]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672b8"},"ibge":2106003,"name":"Lima Campos","capital":0,"ibgeState":21,"siafi":819,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.51837,-44.4646]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672b9"},"ibge":3138609,"name":"Lima Duarte","capital":0,"ibgeState":31,"siafi":4771,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8386,-43.7934]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672ba"},"ibge":3526902,"name":"Limeira","capital":0,"ibgeState":35,"siafi":6639,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.566,-47.397]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672bb"},"ibge":3138625,"name":"Limeira do Oeste","capital":0,"ibgeState":31,"siafi":2687,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5512,-50.5815]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672bc"},"ibge":2608909,"name":"Limoeiro","capital":0,"ibgeState":26,"siafi":2477,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.8726,-35.4402]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672bd"},"ibge":2704203,"name":"Limoeiro de Anadia","capital":0,"ibgeState":27,"siafi":2783,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.74098,-36.5121]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672be"},"ibge":1504000,"name":"Limoeiro do Ajuru","capital":0,"ibgeState":15,"siafi":479,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.8985,-49.3903]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672bf"},"ibge":2307601,"name":"Limoeiro do Norte","capital":0,"ibgeState":23,"siafi":1453,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.14392,-38.0847]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672c0"},"ibge":4113452,"name":"Lindoeste","capital":0,"ibgeState":41,"siafi":9959,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.2596,-53.5733]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672c1"},"ibge":3527009,"name":"Lindóia","capital":0,"ibgeState":35,"siafi":6641,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5226,-46.65]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672c2"},"ibge":4209854,"name":"Lindóia do Sul","capital":0,"ibgeState":42,"siafi":9961,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0545,-52.069]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672c3"},"ibge":4311627,"name":"Lindolfo Collor","capital":0,"ibgeState":43,"siafi":6017,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5859,-51.2141]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672c4"},"ibge":4311643,"name":"Linha Nova","capital":0,"ibgeState":43,"siafi":6047,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4679,-51.2003]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672c5"},"ibge":3203205,"name":"Linhares","capital":0,"ibgeState":32,"siafi":5663,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.3946,-40.0643]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672c6"},"ibge":3527108,"name":"Lins","capital":0,"ibgeState":35,"siafi":6643,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6718,-49.7526]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672c7"},"ibge":2508505,"name":"Livramento","capital":0,"ibgeState":25,"siafi":2071,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.37113,-36.9491]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672c8"},"ibge":2919504,"name":"Livramento de Nossa Senhora","capital":0,"ibgeState":29,"siafi":3691,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.6369,-41.8432]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672c9"},"ibge":1712405,"name":"Lizarda","capital":0,"ibgeState":17,"siafi":9569,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.59002,-46.6738]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672ca"},"ibge":4113502,"name":"Loanda","capital":0,"ibgeState":41,"siafi":7663,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9232,-53.1362]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672cb"},"ibge":4113601,"name":"Lobato","capital":0,"ibgeState":41,"siafi":7665,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0058,-51.9524]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672cc"},"ibge":2508554,"name":"Logradouro","capital":0,"ibgeState":25,"siafi":482,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.61191,-35.4384]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672cd"},"ibge":4113700,"name":"Londrina","capital":0,"ibgeState":41,"siafi":7667,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.304,-51.1691]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672ce"},"ibge":3138658,"name":"Lontra","capital":0,"ibgeState":31,"siafi":2695,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.9013,-44.306]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672cf"},"ibge":4209904,"name":"Lontras","capital":0,"ibgeState":42,"siafi":8195,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1684,-49.535]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672d0"},"ibge":3527207,"name":"Lorena","capital":0,"ibgeState":35,"siafi":6645,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7334,-45.1197]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672d1"},"ibge":2106102,"name":"Loreto","capital":0,"ibgeState":21,"siafi":821,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.08111,-45.1451]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672d2"},"ibge":3527256,"name":"Lourdes","capital":0,"ibgeState":35,"siafi":2937,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.966,-50.2263]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672d3"},"ibge":3527306,"name":"Louveira","capital":0,"ibgeState":35,"siafi":6647,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0856,-46.9484]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672d4"},"ibge":5105259,"name":"Lucas do Rio Verde","capital":0,"ibgeState":51,"siafi":9925,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-13.0588,-55.9042]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672d5"},"ibge":3527405,"name":"Lucélia","capital":0,"ibgeState":35,"siafi":6649,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7182,-51.0215]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672d6"},"ibge":2508604,"name":"Lucena","capital":0,"ibgeState":25,"siafi":2073,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.90258,-34.8748]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672d7"},"ibge":3527504,"name":"Lucianópolis","capital":0,"ibgeState":35,"siafi":6651,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4294,-49.522]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672d8"},"ibge":5105309,"name":"Luciara","capital":0,"ibgeState":51,"siafi":9105,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.2219,-50.6676]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672d9"},"ibge":2406908,"name":"Lucrécia","capital":0,"ibgeState":24,"siafi":1737,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.10525,-37.8134]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672da"},"ibge":3527603,"name":"Luís Antônio","capital":0,"ibgeState":35,"siafi":6653,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.55,-47.7801]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672db"},"ibge":2205706,"name":"Luís Correia","capital":0,"ibgeState":22,"siafi":1113,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.88438,-41.6641]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672dc"},"ibge":2106201,"name":"Luís Domingues","capital":0,"ibgeState":21,"siafi":823,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.27492,-45.867]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672dd"},"ibge":2919553,"name":"Luís Eduardo Magalhães","capital":0,"ibgeState":29,"siafi":1112,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.0956,-45.7866]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672de"},"ibge":2407005,"name":"Luís Gomes","capital":0,"ibgeState":24,"siafi":1739,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.40588,-38.3899]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672df"},"ibge":3138674,"name":"Luisburgo","capital":0,"ibgeState":31,"siafi":644,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4468,-42.0976]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672e0"},"ibge":3138682,"name":"Luislândia","capital":0,"ibgeState":31,"siafi":646,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.1095,-44.5886]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672e1"},"ibge":4210001,"name":"Luiz Alves","capital":0,"ibgeState":42,"siafi":8197,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7151,-48.9322]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672e2"},"ibge":4113734,"name":"Luiziana","capital":0,"ibgeState":41,"siafi":8481,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.2853,-52.269]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672e3"},"ibge":3527702,"name":"Luiziânia","capital":0,"ibgeState":35,"siafi":6655,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6737,-50.3294]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672e4"},"ibge":3138708,"name":"Luminárias","capital":0,"ibgeState":31,"siafi":4773,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5145,-44.9034]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672e5"},"ibge":4113759,"name":"Lunardelli","capital":0,"ibgeState":41,"siafi":8459,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.0821,-51.7368]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672e6"},"ibge":3527801,"name":"Lupércio","capital":0,"ibgeState":35,"siafi":6657,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4146,-49.818]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672e7"},"ibge":4113809,"name":"Lupionópolis","capital":0,"ibgeState":41,"siafi":7669,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.755,-51.6601]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672e8"},"ibge":3527900,"name":"Lutécia","capital":0,"ibgeState":35,"siafi":6659,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3384,-50.394]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672e9"},"ibge":3138807,"name":"Luz","capital":0,"ibgeState":31,"siafi":4775,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7911,-45.6794]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672ea"},"ibge":4210035,"name":"Luzerna","capital":0,"ibgeState":42,"siafi":926,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1304,-51.4682]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672eb"},"ibge":5212501,"name":"Luziânia","capital":0,"ibgeState":52,"siafi":9445,"ddd":61,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.253,-47.95]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672ec"},"ibge":2205805,"name":"Luzilândia","capital":0,"ibgeState":22,"siafi":1115,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.4683,-42.3718]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672ed"},"ibge":1712454,"name":"Luzinópolis","capital":0,"ibgeState":17,"siafi":88,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.17794,-47.8582]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672ee"},"ibge":3302403,"name":"Macaé","capital":0,"ibgeState":33,"siafi":5847,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3768,-41.7848]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672ef"},"ibge":2407104,"name":"Macaíba","capital":0,"ibgeState":24,"siafi":1741,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.85229,-35.3552]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672f0"},"ibge":2919603,"name":"Macajuba","capital":0,"ibgeState":29,"siafi":3693,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.1326,-40.3571]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672f1"},"ibge":4311718,"name":"Maçambará","capital":0,"ibgeState":43,"siafi":994,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.1445,-56.0674]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672f2"},"ibge":2803708,"name":"Macambira","capital":0,"ibgeState":28,"siafi":3173,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.6619,-37.5413]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672f3"},"ibge":1600303,"name":"Macapá","capital":1,"ibgeState":16,"siafi":605,"ddd":96,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[0.034934,-51.0694]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672f4"},"ibge":2609006,"name":"Macaparana","capital":0,"ibgeState":26,"siafi":2479,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.55564,-35.4425]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672f5"},"ibge":2919702,"name":"Macarani","capital":0,"ibgeState":29,"siafi":3695,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.5646,-40.4209]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672f6"},"ibge":3528007,"name":"Macatuba","capital":0,"ibgeState":35,"siafi":6661,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5002,-48.7102]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672f7"},"ibge":2407203,"name":"Macau","capital":0,"ibgeState":24,"siafi":1743,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.10795,-36.6318]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672f8"},"ibge":3528106,"name":"Macaubal","capital":0,"ibgeState":35,"siafi":6663,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8022,-49.9687]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672f9"},"ibge":2919801,"name":"Macaúbas","capital":0,"ibgeState":29,"siafi":3697,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.0186,-42.6945]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672fa"},"ibge":3528205,"name":"Macedônia","capital":0,"ibgeState":35,"siafi":6665,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1444,-50.1973]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672fb"},"ibge":2704302,"name":"Maceió","capital":1,"ibgeState":27,"siafi":2785,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.66599,-35.735]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672fc"},"ibge":3138906,"name":"Machacalis","capital":0,"ibgeState":31,"siafi":4777,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.0723,-40.7245]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672fd"},"ibge":4311700,"name":"Machadinho","capital":0,"ibgeState":43,"siafi":8735,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5667,-51.6668]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672fe"},"ibge":1100130,"name":"Machadinho D'Oeste","capital":0,"ibgeState":11,"siafi":39,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-9.44363,-61.9818]}} +{"_id":{"$oid":"66f9d5ad542d90c0536672ff"},"ibge":3139003,"name":"Machado","capital":0,"ibgeState":31,"siafi":4779,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6778,-45.9219]}} +{"_id":{"$oid":"66f9d5ad542d90c053667300"},"ibge":2609105,"name":"Machados","capital":0,"ibgeState":26,"siafi":2481,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.68827,-35.5114]}} +{"_id":{"$oid":"66f9d5ad542d90c053667301"},"ibge":4210050,"name":"Macieira","capital":0,"ibgeState":42,"siafi":5575,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.8552,-51.3705]}} +{"_id":{"$oid":"66f9d5ad542d90c053667302"},"ibge":3302452,"name":"Macuco","capital":0,"ibgeState":33,"siafi":776,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9813,-42.2533]}} +{"_id":{"$oid":"66f9d5ad542d90c053667303"},"ibge":2919900,"name":"Macururé","capital":0,"ibgeState":29,"siafi":3699,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.16226,-39.0518]}} +{"_id":{"$oid":"66f9d5ad542d90c053667304"},"ibge":2307635,"name":"Madalena","capital":0,"ibgeState":23,"siafi":1261,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.84601,-39.5725]}} +{"_id":{"$oid":"66f9d5ad542d90c053667305"},"ibge":2205854,"name":"Madeiro","capital":0,"ibgeState":22,"siafi":344,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.48624,-42.4981]}} +{"_id":{"$oid":"66f9d5ad542d90c053667306"},"ibge":2919926,"name":"Madre de Deus","capital":0,"ibgeState":29,"siafi":3293,"ddd":71,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.7446,-38.6153]}} +{"_id":{"$oid":"66f9d5ad542d90c053667307"},"ibge":3139102,"name":"Madre de Deus de Minas","capital":0,"ibgeState":31,"siafi":4781,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.483,-44.3287]}} +{"_id":{"$oid":"66f9d5ad542d90c053667308"},"ibge":2508703,"name":"Mãe d'Água","capital":0,"ibgeState":25,"siafi":2075,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.25201,-37.4322]}} +{"_id":{"$oid":"66f9d5ad542d90c053667309"},"ibge":1504059,"name":"Mãe do Rio","capital":0,"ibgeState":15,"siafi":587,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.05683,-47.5601]}} +{"_id":{"$oid":"66f9d5ad542d90c05366730a"},"ibge":2919959,"name":"Maetinga","capital":0,"ibgeState":29,"siafi":3975,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.6623,-41.4915]}} +{"_id":{"$oid":"66f9d5ad542d90c05366730b"},"ibge":4210100,"name":"Mafra","capital":0,"ibgeState":42,"siafi":8199,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.1159,-49.8086]}} +{"_id":{"$oid":"66f9d5ad542d90c05366730c"},"ibge":1504109,"name":"Magalhães Barata","capital":0,"ibgeState":15,"siafi":481,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.803391,-47.6014]}} +{"_id":{"$oid":"66f9d5ad542d90c05366730d"},"ibge":2106300,"name":"Magalhães de Almeida","capital":0,"ibgeState":21,"siafi":825,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.39232,-42.2117]}} +{"_id":{"$oid":"66f9d5ad542d90c05366730e"},"ibge":3528304,"name":"Magda","capital":0,"ibgeState":35,"siafi":6667,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6445,-50.2305]}} +{"_id":{"$oid":"66f9d5ad542d90c05366730f"},"ibge":3302502,"name":"Magé","capital":0,"ibgeState":33,"siafi":5849,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6632,-43.0315]}} +{"_id":{"$oid":"66f9d5ad542d90c053667310"},"ibge":2920007,"name":"Maiquinique","capital":0,"ibgeState":29,"siafi":3701,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.624,-40.2587]}} +{"_id":{"$oid":"66f9d5ad542d90c053667311"},"ibge":2920106,"name":"Mairi","capital":0,"ibgeState":29,"siafi":3703,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.7107,-40.1437]}} +{"_id":{"$oid":"66f9d5ad542d90c053667312"},"ibge":3528403,"name":"Mairinque","capital":0,"ibgeState":35,"siafi":6669,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5398,-47.185]}} +{"_id":{"$oid":"66f9d5ad542d90c053667313"},"ibge":3528502,"name":"Mairiporã","capital":0,"ibgeState":35,"siafi":6671,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3171,-46.5897]}} +{"_id":{"$oid":"66f9d5ad542d90c053667314"},"ibge":5212600,"name":"Mairipotaba","capital":0,"ibgeState":52,"siafi":9447,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.2975,-49.4898]}} +{"_id":{"$oid":"66f9d5ad542d90c053667315"},"ibge":4210209,"name":"Major Gercino","capital":0,"ibgeState":42,"siafi":8201,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4192,-48.9488]}} +{"_id":{"$oid":"66f9d5ad542d90c053667316"},"ibge":2704401,"name":"Major Isidoro","capital":0,"ibgeState":27,"siafi":2787,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.53009,-36.992]}} +{"_id":{"$oid":"66f9d5ad542d90c053667317"},"ibge":2407252,"name":"Major Sales","capital":0,"ibgeState":24,"siafi":420,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.39949,-38.324]}} +{"_id":{"$oid":"66f9d5ad542d90c053667318"},"ibge":4210308,"name":"Major Vieira","capital":0,"ibgeState":42,"siafi":8203,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.3709,-50.3266]}} +{"_id":{"$oid":"66f9d5ad542d90c053667319"},"ibge":3139201,"name":"Malacacheta","capital":0,"ibgeState":31,"siafi":4783,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.8456,-42.0769]}} +{"_id":{"$oid":"66f9d5ad542d90c05366731a"},"ibge":2920205,"name":"Malhada","capital":0,"ibgeState":29,"siafi":3705,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.3371,-43.7686]}} +{"_id":{"$oid":"66f9d5ad542d90c05366731b"},"ibge":2920304,"name":"Malhada de Pedras","capital":0,"ibgeState":29,"siafi":3707,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.3847,-41.8842]}} +{"_id":{"$oid":"66f9d5ad542d90c05366731c"},"ibge":2803807,"name":"Malhada dos Bois","capital":0,"ibgeState":28,"siafi":3175,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.3418,-36.9252]}} +{"_id":{"$oid":"66f9d5ad542d90c05366731d"},"ibge":2803906,"name":"Malhador","capital":0,"ibgeState":28,"siafi":3177,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.6649,-37.3004]}} +{"_id":{"$oid":"66f9d5ad542d90c05366731e"},"ibge":4113908,"name":"Mallet","capital":0,"ibgeState":41,"siafi":7671,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.8806,-50.8173]}} +{"_id":{"$oid":"66f9d5ad542d90c05366731f"},"ibge":2508802,"name":"Malta","capital":0,"ibgeState":25,"siafi":2077,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.89719,-37.5221]}} +{"_id":{"$oid":"66f9d5ad542d90c053667320"},"ibge":2508901,"name":"Mamanguape","capital":0,"ibgeState":25,"siafi":2079,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.8337,-35.1213]}} +{"_id":{"$oid":"66f9d5ad542d90c053667321"},"ibge":5212709,"name":"Mambaí","capital":0,"ibgeState":52,"siafi":9449,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.4823,-46.1165]}} +{"_id":{"$oid":"66f9d5ad542d90c053667322"},"ibge":4114005,"name":"Mamborê","capital":0,"ibgeState":41,"siafi":7673,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.317,-52.5271]}} +{"_id":{"$oid":"66f9d5ad542d90c053667323"},"ibge":3139250,"name":"Mamonas","capital":0,"ibgeState":31,"siafi":2895,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.0479,-42.9469]}} +{"_id":{"$oid":"66f9d5ad542d90c053667324"},"ibge":4311734,"name":"Mampituba","capital":0,"ibgeState":43,"siafi":996,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.2136,-49.9311]}} +{"_id":{"$oid":"66f9d5ad542d90c053667325"},"ibge":1302504,"name":"Manacapuru","capital":0,"ibgeState":13,"siafi":253,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.29066,-60.6216]}} +{"_id":{"$oid":"66f9d5ad542d90c053667326"},"ibge":2509008,"name":"Manaíra","capital":0,"ibgeState":25,"siafi":2081,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.70331,-38.1523]}} +{"_id":{"$oid":"66f9d5ad542d90c053667327"},"ibge":1302553,"name":"Manaquiri","capital":0,"ibgeState":13,"siafi":9839,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.44078,-60.4612]}} +{"_id":{"$oid":"66f9d5ad542d90c053667328"},"ibge":2609154,"name":"Manari","capital":0,"ibgeState":26,"siafi":554,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.9649,-37.6313]}} +{"_id":{"$oid":"66f9d5ad542d90c053667329"},"ibge":1302603,"name":"Manaus","capital":1,"ibgeState":13,"siafi":255,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.11866,-60.0212]}} +{"_id":{"$oid":"66f9d5ad542d90c05366732a"},"ibge":1200336,"name":"Mâncio Lima","capital":0,"ibgeState":12,"siafi":109,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-7.61657,-72.8997]}} +{"_id":{"$oid":"66f9d5ad542d90c05366732b"},"ibge":4114104,"name":"Mandaguaçu","capital":0,"ibgeState":41,"siafi":7675,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3458,-52.0944]}} +{"_id":{"$oid":"66f9d5ad542d90c05366732c"},"ibge":4114203,"name":"Mandaguari","capital":0,"ibgeState":41,"siafi":7677,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5446,-51.671]}} +{"_id":{"$oid":"66f9d5ad542d90c05366732d"},"ibge":4114302,"name":"Mandirituba","capital":0,"ibgeState":41,"siafi":7679,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.777,-49.3282]}} +{"_id":{"$oid":"66f9d5ad542d90c05366732e"},"ibge":3528601,"name":"Manduri","capital":0,"ibgeState":35,"siafi":6673,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0056,-49.3202]}} +{"_id":{"$oid":"66f9d5ad542d90c05366732f"},"ibge":4114351,"name":"Manfrinópolis","capital":0,"ibgeState":41,"siafi":864,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.1441,-53.3113]}} +{"_id":{"$oid":"66f9d5ad542d90c053667330"},"ibge":3139300,"name":"Manga","capital":0,"ibgeState":31,"siafi":4785,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.7529,-43.9391]}} +{"_id":{"$oid":"66f9d5ad542d90c053667331"},"ibge":3302601,"name":"Mangaratiba","capital":0,"ibgeState":33,"siafi":5851,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9594,-44.0409]}} +{"_id":{"$oid":"66f9d5ad542d90c053667332"},"ibge":4114401,"name":"Mangueirinha","capital":0,"ibgeState":41,"siafi":7511,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.9421,-52.1743]}} +{"_id":{"$oid":"66f9d5ad542d90c053667333"},"ibge":3139409,"name":"Manhuaçu","capital":0,"ibgeState":31,"siafi":4787,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2572,-42.028]}} +{"_id":{"$oid":"66f9d5ad542d90c053667334"},"ibge":3139508,"name":"Manhumirim","capital":0,"ibgeState":31,"siafi":4789,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3591,-41.9589]}} +{"_id":{"$oid":"66f9d5ad542d90c053667335"},"ibge":1302702,"name":"Manicoré","capital":0,"ibgeState":13,"siafi":257,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-5.80462,-61.2895]}} +{"_id":{"$oid":"66f9d5ad542d90c053667336"},"ibge":2205904,"name":"Manoel Emídio","capital":0,"ibgeState":22,"siafi":1117,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.01234,-43.8755]}} +{"_id":{"$oid":"66f9d5ad542d90c053667337"},"ibge":4114500,"name":"Manoel Ribas","capital":0,"ibgeState":41,"siafi":7681,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.5144,-51.6658]}} +{"_id":{"$oid":"66f9d5ad542d90c053667338"},"ibge":1200344,"name":"Manoel Urbano","capital":0,"ibgeState":12,"siafi":155,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-8.83291,-69.2679]}} +{"_id":{"$oid":"66f9d5ad542d90c053667339"},"ibge":4311759,"name":"Manoel Viana","capital":0,"ibgeState":43,"siafi":6079,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5859,-55.4841]}} +{"_id":{"$oid":"66f9d5ad542d90c05366733a"},"ibge":2920403,"name":"Manoel Vitorino","capital":0,"ibgeState":29,"siafi":3709,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.1476,-40.2399]}} +{"_id":{"$oid":"66f9d5ad542d90c05366733b"},"ibge":2920452,"name":"Mansidão","capital":0,"ibgeState":29,"siafi":3977,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7227,-44.0428]}} +{"_id":{"$oid":"66f9d5ad542d90c05366733c"},"ibge":3139607,"name":"Mantena","capital":0,"ibgeState":31,"siafi":4791,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7761,-40.9874]}} +{"_id":{"$oid":"66f9d5ad542d90c05366733d"},"ibge":3203304,"name":"Mantenópolis","capital":0,"ibgeState":32,"siafi":5665,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.8594,-41.124]}} +{"_id":{"$oid":"66f9d5ad542d90c05366733e"},"ibge":4311775,"name":"Maquiné","capital":0,"ibgeState":43,"siafi":5783,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6798,-50.2079]}} +{"_id":{"$oid":"66f9d5ad542d90c05366733f"},"ibge":3139805,"name":"Mar de Espanha","capital":0,"ibgeState":31,"siafi":4795,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8707,-43.0062]}} +{"_id":{"$oid":"66f9d5ad542d90c053667340"},"ibge":2704906,"name":"Mar Vermelho","capital":0,"ibgeState":27,"siafi":2797,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.44739,-36.3881]}} +{"_id":{"$oid":"66f9d5ad542d90c053667341"},"ibge":5212808,"name":"Mara Rosa","capital":0,"ibgeState":52,"siafi":9451,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.0148,-49.1777]}} +{"_id":{"$oid":"66f9d5ad542d90c053667342"},"ibge":1302801,"name":"Maraã","capital":0,"ibgeState":13,"siafi":259,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-1.85313,-65.573]}} +{"_id":{"$oid":"66f9d5ad542d90c053667343"},"ibge":1504208,"name":"Marabá","capital":0,"ibgeState":15,"siafi":483,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.38075,-49.1327]}} +{"_id":{"$oid":"66f9d5ad542d90c053667344"},"ibge":3528700,"name":"Marabá Paulista","capital":0,"ibgeState":35,"siafi":6675,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1068,-51.9617]}} +{"_id":{"$oid":"66f9d5ad542d90c053667345"},"ibge":2106326,"name":"Maracaçumé","capital":0,"ibgeState":21,"siafi":190,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.04918,-45.9587]}} +{"_id":{"$oid":"66f9d5ad542d90c053667346"},"ibge":3528809,"name":"Maracaí","capital":0,"ibgeState":35,"siafi":6677,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6149,-50.6713]}} +{"_id":{"$oid":"66f9d5ad542d90c053667347"},"ibge":4210407,"name":"Maracajá","capital":0,"ibgeState":42,"siafi":8391,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.8463,-49.4605]}} +{"_id":{"$oid":"66f9d5ad542d90c053667348"},"ibge":5005400,"name":"Maracaju","capital":0,"ibgeState":50,"siafi":9107,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-21.6105,-55.1678]}} +{"_id":{"$oid":"66f9d5ad542d90c053667349"},"ibge":1504307,"name":"Maracanã","capital":0,"ibgeState":15,"siafi":485,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.778899,-47.452]}} +{"_id":{"$oid":"66f9d5ad542d90c05366734a"},"ibge":2307650,"name":"Maracanaú","capital":0,"ibgeState":23,"siafi":1585,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.86699,-38.6259]}} +{"_id":{"$oid":"66f9d5ad542d90c05366734b"},"ibge":2920502,"name":"Maracás","capital":0,"ibgeState":29,"siafi":3711,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.4355,-40.4323]}} +{"_id":{"$oid":"66f9d5ad542d90c05366734c"},"ibge":2704500,"name":"Maragogi","capital":0,"ibgeState":27,"siafi":2789,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.00744,-35.2267]}} +{"_id":{"$oid":"66f9d5ad542d90c05366734d"},"ibge":2920601,"name":"Maragogipe","capital":0,"ibgeState":29,"siafi":3713,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.776,-38.9175]}} +{"_id":{"$oid":"66f9d5ad542d90c05366734e"},"ibge":2609204,"name":"Maraial","capital":0,"ibgeState":26,"siafi":2483,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.79062,-35.8266]}} +{"_id":{"$oid":"66f9d5ad542d90c05366734f"},"ibge":2106359,"name":"Marajá do Sena","capital":0,"ibgeState":21,"siafi":192,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.62806,-45.4531]}} +{"_id":{"$oid":"66f9d5ad542d90c053667350"},"ibge":2307700,"name":"Maranguape","capital":0,"ibgeState":23,"siafi":1455,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.89143,-38.6829]}} +{"_id":{"$oid":"66f9d5ad542d90c053667351"},"ibge":2106375,"name":"Maranhãozinho","capital":0,"ibgeState":21,"siafi":194,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.24078,-45.8507]}} +{"_id":{"$oid":"66f9d5ad542d90c053667352"},"ibge":1504406,"name":"Marapanim","capital":0,"ibgeState":15,"siafi":487,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.714702,-47.7034]}} +{"_id":{"$oid":"66f9d5ad542d90c053667353"},"ibge":3528858,"name":"Marapoama","capital":0,"ibgeState":35,"siafi":2977,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2587,-49.13]}} +{"_id":{"$oid":"66f9d5ad542d90c053667354"},"ibge":4311791,"name":"Maratá","capital":0,"ibgeState":43,"siafi":6039,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5457,-51.5573]}} +{"_id":{"$oid":"66f9d5ad542d90c053667355"},"ibge":3203320,"name":"Marataízes","capital":0,"ibgeState":32,"siafi":760,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0398,-40.8384]}} +{"_id":{"$oid":"66f9d5ad542d90c053667356"},"ibge":4311809,"name":"Marau","capital":0,"ibgeState":43,"siafi":8737,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.4498,-52.1986]}} +{"_id":{"$oid":"66f9d5ad542d90c053667357"},"ibge":2920700,"name":"Maraú","capital":0,"ibgeState":29,"siafi":3715,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.1035,-39.0137]}} +{"_id":{"$oid":"66f9d5ad542d90c053667358"},"ibge":2704609,"name":"Maravilha","capital":0,"ibgeState":27,"siafi":2791,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.23045,-37.3524]}} +{"_id":{"$oid":"66f9d5ad542d90c053667359"},"ibge":4210506,"name":"Maravilha","capital":0,"ibgeState":42,"siafi":8205,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7665,-53.1737]}} +{"_id":{"$oid":"66f9d5ad542d90c05366735a"},"ibge":3139706,"name":"Maravilhas","capital":0,"ibgeState":31,"siafi":4793,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5076,-44.6779]}} +{"_id":{"$oid":"66f9d5ad542d90c05366735b"},"ibge":2509057,"name":"Marcação","capital":0,"ibgeState":25,"siafi":484,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.76535,-35.0087]}} +{"_id":{"$oid":"66f9d5ad542d90c05366735c"},"ibge":5105580,"name":"Marcelândia","capital":0,"ibgeState":51,"siafi":9899,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.0463,-54.4377]}} +{"_id":{"$oid":"66f9d5ad542d90c05366735d"},"ibge":4311908,"name":"Marcelino Ramos","capital":0,"ibgeState":43,"siafi":8739,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4676,-51.9095]}} +{"_id":{"$oid":"66f9d5ad542d90c05366735e"},"ibge":2407302,"name":"Marcelino Vieira","capital":0,"ibgeState":24,"siafi":1745,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.2846,-38.1642]}} +{"_id":{"$oid":"66f9d5ad542d90c05366735f"},"ibge":2920809,"name":"Marcionílio Souza","capital":0,"ibgeState":29,"siafi":3717,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.0064,-40.5295]}} +{"_id":{"$oid":"66f9d5ad542d90c053667360"},"ibge":2307809,"name":"Marco","capital":0,"ibgeState":23,"siafi":1457,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.1285,-40.1582]}} +{"_id":{"$oid":"66f9d5ad542d90c053667361"},"ibge":2205953,"name":"Marcolândia","capital":0,"ibgeState":22,"siafi":2275,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.44169,-40.6602]}} +{"_id":{"$oid":"66f9d5ad542d90c053667362"},"ibge":2206001,"name":"Marcos Parente","capital":0,"ibgeState":22,"siafi":1119,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.11565,-43.8926]}} +{"_id":{"$oid":"66f9d5ad542d90c053667363"},"ibge":4114609,"name":"Marechal Cândido Rondon","capital":0,"ibgeState":41,"siafi":7683,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.557,-54.0571]}} +{"_id":{"$oid":"66f9d5ad542d90c053667364"},"ibge":2704708,"name":"Marechal Deodoro","capital":0,"ibgeState":27,"siafi":2793,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.70971,-35.8967]}} +{"_id":{"$oid":"66f9d5ad542d90c053667365"},"ibge":3203346,"name":"Marechal Floriano","capital":0,"ibgeState":32,"siafi":2929,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4159,-40.67]}} +{"_id":{"$oid":"66f9d5ad542d90c053667366"},"ibge":1200351,"name":"Marechal Thaumaturgo","capital":0,"ibgeState":12,"siafi":655,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-8.93898,-72.7997]}} +{"_id":{"$oid":"66f9d5ad542d90c053667367"},"ibge":4210555,"name":"Marema","capital":0,"ibgeState":42,"siafi":9963,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.8024,-52.6264]}} +{"_id":{"$oid":"66f9d5ad542d90c053667368"},"ibge":2509107,"name":"Mari","capital":0,"ibgeState":25,"siafi":2083,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.05942,-35.318]}} +{"_id":{"$oid":"66f9d5ad542d90c053667369"},"ibge":3139904,"name":"Maria da Fé","capital":0,"ibgeState":31,"siafi":4797,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3044,-45.3773]}} +{"_id":{"$oid":"66f9d5ad542d90c05366736a"},"ibge":4114708,"name":"Maria Helena","capital":0,"ibgeState":41,"siafi":7685,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6158,-53.2053]}} +{"_id":{"$oid":"66f9d5ad542d90c05366736b"},"ibge":4114807,"name":"Marialva","capital":0,"ibgeState":41,"siafi":7687,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4843,-51.7928]}} +{"_id":{"$oid":"66f9d5ad542d90c05366736c"},"ibge":3140001,"name":"Mariana","capital":0,"ibgeState":31,"siafi":4799,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3765,-43.414]}} +{"_id":{"$oid":"66f9d5ad542d90c05366736d"},"ibge":4311981,"name":"Mariana Pimentel","capital":0,"ibgeState":43,"siafi":5759,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.353,-51.5803]}} +{"_id":{"$oid":"66f9d5ad542d90c05366736e"},"ibge":4312005,"name":"Mariano Moro","capital":0,"ibgeState":43,"siafi":8741,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3568,-52.1467]}} +{"_id":{"$oid":"66f9d5ad542d90c05366736f"},"ibge":1712504,"name":"Marianópolis do Tocantins","capital":0,"ibgeState":17,"siafi":9711,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.79377,-49.6553]}} +{"_id":{"$oid":"66f9d5ad542d90c053667370"},"ibge":3528908,"name":"Mariápolis","capital":0,"ibgeState":35,"siafi":6679,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7959,-51.1824]}} +{"_id":{"$oid":"66f9d5ad542d90c053667371"},"ibge":2704807,"name":"Maribondo","capital":0,"ibgeState":27,"siafi":2795,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.58353,-36.3045]}} +{"_id":{"$oid":"66f9d5ad542d90c053667372"},"ibge":3302700,"name":"Maricá","capital":0,"ibgeState":33,"siafi":5853,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9354,-42.8246]}} +{"_id":{"$oid":"66f9d5ad542d90c053667373"},"ibge":3140100,"name":"Marilac","capital":0,"ibgeState":31,"siafi":4801,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5079,-42.0822]}} +{"_id":{"$oid":"66f9d5ad542d90c053667374"},"ibge":3203353,"name":"Marilândia","capital":0,"ibgeState":32,"siafi":5707,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.4114,-40.5456]}} +{"_id":{"$oid":"66f9d5ad542d90c053667375"},"ibge":4114906,"name":"Marilândia do Sul","capital":0,"ibgeState":41,"siafi":7433,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7425,-51.3137]}} +{"_id":{"$oid":"66f9d5ad542d90c053667376"},"ibge":4115002,"name":"Marilena","capital":0,"ibgeState":41,"siafi":7975,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7336,-53.0402]}} +{"_id":{"$oid":"66f9d5ad542d90c053667377"},"ibge":3529005,"name":"Marília","capital":0,"ibgeState":35,"siafi":6681,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2171,-49.9501]}} +{"_id":{"$oid":"66f9d5ad542d90c053667378"},"ibge":4115101,"name":"Mariluz","capital":0,"ibgeState":41,"siafi":7689,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.0089,-53.1432]}} +{"_id":{"$oid":"66f9d5ad542d90c053667379"},"ibge":4115200,"name":"Maringá","capital":0,"ibgeState":41,"siafi":7691,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4205,-51.9333]}} +{"_id":{"$oid":"66f9d5ad542d90c05366737a"},"ibge":3529104,"name":"Marinópolis","capital":0,"ibgeState":35,"siafi":6683,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4389,-50.8254]}} +{"_id":{"$oid":"66f9d5ad542d90c05366737b"},"ibge":3140159,"name":"Mário Campos","capital":0,"ibgeState":31,"siafi":648,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0582,-44.1883]}} +{"_id":{"$oid":"66f9d5ad542d90c05366737c"},"ibge":4115309,"name":"Mariópolis","capital":0,"ibgeState":41,"siafi":7693,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.355,-52.5532]}} +{"_id":{"$oid":"66f9d5ad542d90c05366737d"},"ibge":4115358,"name":"Maripá","capital":0,"ibgeState":41,"siafi":5487,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.42,-53.8286]}} +{"_id":{"$oid":"66f9d5ad542d90c05366737e"},"ibge":3140209,"name":"Maripá de Minas","capital":0,"ibgeState":31,"siafi":4803,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6979,-42.9546]}} +{"_id":{"$oid":"66f9d5ad542d90c05366737f"},"ibge":1504422,"name":"Marituba","capital":0,"ibgeState":15,"siafi":54,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.36002,-48.3421]}} +{"_id":{"$oid":"66f9d5ad542d90c053667380"},"ibge":2509156,"name":"Marizópolis","capital":0,"ibgeState":25,"siafi":486,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.82748,-38.3528]}} +{"_id":{"$oid":"66f9d5ad542d90c053667381"},"ibge":3140308,"name":"Marliéria","capital":0,"ibgeState":31,"siafi":4805,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7096,-42.7327]}} +{"_id":{"$oid":"66f9d5ad542d90c053667382"},"ibge":4115408,"name":"Marmeleiro","capital":0,"ibgeState":41,"siafi":7695,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.1472,-53.0267]}} +{"_id":{"$oid":"66f9d5ad542d90c053667383"},"ibge":3140407,"name":"Marmelópolis","capital":0,"ibgeState":31,"siafi":4807,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.447,-45.1645]}} +{"_id":{"$oid":"66f9d5ad542d90c053667384"},"ibge":4312054,"name":"Marques de Souza","capital":0,"ibgeState":43,"siafi":998,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3311,-52.0973]}} +{"_id":{"$oid":"66f9d5ad542d90c053667385"},"ibge":4115457,"name":"Marquinho","capital":0,"ibgeState":41,"siafi":866,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.112,-52.2497]}} +{"_id":{"$oid":"66f9d5ad542d90c053667386"},"ibge":3140506,"name":"Martinho Campos","capital":0,"ibgeState":31,"siafi":4809,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.3306,-45.2434]}} +{"_id":{"$oid":"66f9d5ad542d90c053667387"},"ibge":2307908,"name":"Martinópole","capital":0,"ibgeState":23,"siafi":1459,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.2252,-40.6896]}} +{"_id":{"$oid":"66f9d5ad542d90c053667388"},"ibge":3529203,"name":"Martinópolis","capital":0,"ibgeState":35,"siafi":6685,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1462,-51.1709]}} +{"_id":{"$oid":"66f9d5ad542d90c053667389"},"ibge":2407401,"name":"Martins","capital":0,"ibgeState":24,"siafi":1747,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.08279,-37.908]}} +{"_id":{"$oid":"66f9d5ad542d90c05366738a"},"ibge":3140530,"name":"Martins Soares","capital":0,"ibgeState":31,"siafi":650,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2546,-41.8786]}} +{"_id":{"$oid":"66f9d5ad542d90c05366738b"},"ibge":2804003,"name":"Maruim","capital":0,"ibgeState":28,"siafi":3179,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7308,-37.0856]}} +{"_id":{"$oid":"66f9d5ad542d90c05366738c"},"ibge":4115507,"name":"Marumbi","capital":0,"ibgeState":41,"siafi":7697,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7058,-51.6404]}} +{"_id":{"$oid":"66f9d5ad542d90c05366738d"},"ibge":5212907,"name":"Marzagão","capital":0,"ibgeState":52,"siafi":9453,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.983,-48.6415]}} +{"_id":{"$oid":"66f9d5ad542d90c05366738e"},"ibge":2920908,"name":"Mascote","capital":0,"ibgeState":29,"siafi":3719,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.5542,-39.3016]}} +{"_id":{"$oid":"66f9d5ad542d90c05366738f"},"ibge":2308005,"name":"Massapê","capital":0,"ibgeState":23,"siafi":1461,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.52364,-40.3423]}} +{"_id":{"$oid":"66f9d5ad542d90c053667390"},"ibge":2206050,"name":"Massapê do Piauí","capital":0,"ibgeState":22,"siafi":346,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.47469,-41.1103]}} +{"_id":{"$oid":"66f9d5ad542d90c053667391"},"ibge":2509206,"name":"Massaranduba","capital":0,"ibgeState":25,"siafi":2085,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.18995,-35.7848]}} +{"_id":{"$oid":"66f9d5ad542d90c053667392"},"ibge":4210605,"name":"Massaranduba","capital":0,"ibgeState":42,"siafi":8207,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.6109,-49.0054]}} +{"_id":{"$oid":"66f9d5ad542d90c053667393"},"ibge":4312104,"name":"Mata","capital":0,"ibgeState":43,"siafi":8743,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5649,-54.4641]}} +{"_id":{"$oid":"66f9d5ad542d90c053667394"},"ibge":2921005,"name":"Mata de São João","capital":0,"ibgeState":29,"siafi":3721,"ddd":71,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.5307,-38.3009]}} +{"_id":{"$oid":"66f9d5ad542d90c053667395"},"ibge":2705002,"name":"Mata Grande","capital":0,"ibgeState":27,"siafi":2799,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.11824,-37.7323]}} +{"_id":{"$oid":"66f9d5ad542d90c053667396"},"ibge":2106409,"name":"Mata Roma","capital":0,"ibgeState":21,"siafi":827,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.62035,-43.1112]}} +{"_id":{"$oid":"66f9d5ad542d90c053667397"},"ibge":3140555,"name":"Mata Verde","capital":0,"ibgeState":31,"siafi":2659,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.6869,-40.7366]}} +{"_id":{"$oid":"66f9d5ad542d90c053667398"},"ibge":3529302,"name":"Matão","capital":0,"ibgeState":35,"siafi":6687,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6025,-48.364]}} +{"_id":{"$oid":"66f9d5ad542d90c053667399"},"ibge":2509305,"name":"Mataraca","capital":0,"ibgeState":25,"siafi":2087,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.59673,-35.0531]}} +{"_id":{"$oid":"66f9d5ad542d90c05366739a"},"ibge":1712702,"name":"Mateiros","capital":0,"ibgeState":17,"siafi":317,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.5464,-46.4168]}} +{"_id":{"$oid":"66f9d5ad542d90c05366739b"},"ibge":4115606,"name":"Matelândia","capital":0,"ibgeState":41,"siafi":7699,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.2496,-53.9935]}} +{"_id":{"$oid":"66f9d5ae542d90c05366739c"},"ibge":3140605,"name":"Materlândia","capital":0,"ibgeState":31,"siafi":4811,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4699,-43.0579]}} +{"_id":{"$oid":"66f9d5ae542d90c05366739d"},"ibge":3140704,"name":"Mateus Leme","capital":0,"ibgeState":31,"siafi":4813,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9794,-44.4318]}} +{"_id":{"$oid":"66f9d5ae542d90c05366739e"},"ibge":3171501,"name":"Mathias Lobato","capital":0,"ibgeState":31,"siafi":5431,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.59,-41.9166]}} +{"_id":{"$oid":"66f9d5ae542d90c05366739f"},"ibge":3140803,"name":"Matias Barbosa","capital":0,"ibgeState":31,"siafi":4815,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.869,-43.3135]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673a0"},"ibge":3140852,"name":"Matias Cardoso","capital":0,"ibgeState":31,"siafi":2897,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.8563,-43.9146]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673a1"},"ibge":2206100,"name":"Matias Olímpio","capital":0,"ibgeState":22,"siafi":1121,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.71492,-42.5507]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673a2"},"ibge":2921054,"name":"Matina","capital":0,"ibgeState":29,"siafi":3295,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.9109,-42.8439]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673a3"},"ibge":2106508,"name":"Matinha","capital":0,"ibgeState":21,"siafi":829,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.09849,-45.035]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673a4"},"ibge":2509339,"name":"Matinhas","capital":0,"ibgeState":25,"siafi":488,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.12486,-35.7669]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673a5"},"ibge":4115705,"name":"Matinhos","capital":0,"ibgeState":41,"siafi":7963,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.8237,-48.549]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673a6"},"ibge":3140902,"name":"Matipó","capital":0,"ibgeState":31,"siafi":4817,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2873,-42.3401]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673a7"},"ibge":4312138,"name":"Mato Castelhano","capital":0,"ibgeState":43,"siafi":5931,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.28,-52.1932]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673a8"},"ibge":2509370,"name":"Mato Grosso","capital":0,"ibgeState":25,"siafi":490,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.54018,-37.7279]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673a9"},"ibge":4312153,"name":"Mato Leitão","capital":0,"ibgeState":43,"siafi":6031,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5285,-52.1278]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673aa"},"ibge":4312179,"name":"Mato Queimado","capital":0,"ibgeState":43,"siafi":1150,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.252,-54.6159]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673ab"},"ibge":4115739,"name":"Mato Rico","capital":0,"ibgeState":41,"siafi":5503,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.6995,-52.1454]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673ac"},"ibge":3141009,"name":"Mato Verde","capital":0,"ibgeState":31,"siafi":4819,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.3944,-42.86]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673ad"},"ibge":2106607,"name":"Matões","capital":0,"ibgeState":21,"siafi":831,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.51359,-43.2018]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673ae"},"ibge":2106631,"name":"Matões do Norte","capital":0,"ibgeState":21,"siafi":196,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.6244,-44.5468]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673af"},"ibge":4210704,"name":"Matos Costa","capital":0,"ibgeState":42,"siafi":8209,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.4709,-51.1501]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673b0"},"ibge":3141108,"name":"Matozinhos","capital":0,"ibgeState":31,"siafi":4821,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5543,-44.0868]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673b1"},"ibge":5212956,"name":"Matrinchã","capital":0,"ibgeState":52,"siafi":9927,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.4342,-50.7456]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673b2"},"ibge":2705101,"name":"Matriz de Camaragibe","capital":0,"ibgeState":27,"siafi":2801,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.15437,-35.5243]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673b3"},"ibge":5105606,"name":"Matupá","capital":0,"ibgeState":51,"siafi":9929,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.1821,-54.9467]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673b4"},"ibge":2509396,"name":"Maturéia","capital":0,"ibgeState":25,"siafi":492,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.26188,-37.351]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673b5"},"ibge":3141207,"name":"Matutina","capital":0,"ibgeState":31,"siafi":4823,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2179,-45.9664]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673b6"},"ibge":3529401,"name":"Mauá","capital":0,"ibgeState":35,"siafi":6689,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6677,-46.4613]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673b7"},"ibge":4115754,"name":"Mauá da Serra","capital":0,"ibgeState":41,"siafi":5459,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8988,-51.2277]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673b8"},"ibge":1302900,"name":"Maués","capital":0,"ibgeState":13,"siafi":261,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.39289,-57.7067]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673b9"},"ibge":5213004,"name":"Maurilândia","capital":0,"ibgeState":52,"siafi":9457,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.9719,-50.3388]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673ba"},"ibge":1712801,"name":"Maurilândia do Tocantins","capital":0,"ibgeState":17,"siafi":183,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.95169,-47.5125]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673bb"},"ibge":2308104,"name":"Mauriti","capital":0,"ibgeState":23,"siafi":1463,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.38597,-38.7708]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673bc"},"ibge":2407500,"name":"Maxaranguape","capital":0,"ibgeState":24,"siafi":1749,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.52181,-35.2631]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673bd"},"ibge":4312203,"name":"Maximiliano de Almeida","capital":0,"ibgeState":43,"siafi":8745,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6325,-51.802]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673be"},"ibge":1600402,"name":"Mazagão","capital":0,"ibgeState":16,"siafi":607,"ddd":96,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.11336,-51.2891]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673bf"},"ibge":3141306,"name":"Medeiros","capital":0,"ibgeState":31,"siafi":4825,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9865,-46.2181]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673c0"},"ibge":2921104,"name":"Medeiros Neto","capital":0,"ibgeState":29,"siafi":3723,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.3707,-40.2238]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673c1"},"ibge":4115804,"name":"Medianeira","capital":0,"ibgeState":41,"siafi":7701,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.2977,-54.0943]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673c2"},"ibge":1504455,"name":"Medicilândia","capital":0,"ibgeState":15,"siafi":589,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.44637,-52.8875]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673c3"},"ibge":3141405,"name":"Medina","capital":0,"ibgeState":31,"siafi":4827,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.2245,-41.4728]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673c4"},"ibge":4210803,"name":"Meleiro","capital":0,"ibgeState":42,"siafi":8211,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.8244,-49.6378]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673c5"},"ibge":1504505,"name":"Melgaço","capital":0,"ibgeState":15,"siafi":489,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.8032,-50.7149]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673c6"},"ibge":3302809,"name":"Mendes","capital":0,"ibgeState":33,"siafi":5855,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5245,-43.7312]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673c7"},"ibge":3141504,"name":"Mendes Pimentel","capital":0,"ibgeState":31,"siafi":4829,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.6631,-41.4052]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673c8"},"ibge":3529500,"name":"Mendonça","capital":0,"ibgeState":35,"siafi":6691,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1757,-49.5791]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673c9"},"ibge":4115853,"name":"Mercedes","capital":0,"ibgeState":41,"siafi":5531,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.4538,-54.1618]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673ca"},"ibge":3141603,"name":"Mercês","capital":0,"ibgeState":31,"siafi":4831,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1976,-43.3337]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673cb"},"ibge":3529609,"name":"Meridiano","capital":0,"ibgeState":35,"siafi":6693,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3579,-50.1811]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673cc"},"ibge":2308203,"name":"Meruoca","capital":0,"ibgeState":23,"siafi":1465,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.53974,-40.4531]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673cd"},"ibge":3529658,"name":"Mesópolis","capital":0,"ibgeState":35,"siafi":2983,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9684,-50.6326]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673ce"},"ibge":3302858,"name":"Mesquita","capital":0,"ibgeState":33,"siafi":1116,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8028,-43.4601]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673cf"},"ibge":3141702,"name":"Mesquita","capital":0,"ibgeState":31,"siafi":4833,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.224,-42.6079]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673d0"},"ibge":2705200,"name":"Messias","capital":0,"ibgeState":27,"siafi":2803,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.39384,-35.8392]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673d1"},"ibge":2407609,"name":"Messias Targino","capital":0,"ibgeState":24,"siafi":1721,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.07194,-37.5158]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673d2"},"ibge":2206209,"name":"Miguel Alves","capital":0,"ibgeState":22,"siafi":1123,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.16857,-42.8963]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673d3"},"ibge":2921203,"name":"Miguel Calmon","capital":0,"ibgeState":29,"siafi":3725,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.4299,-40.6031]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673d4"},"ibge":2206308,"name":"Miguel Leão","capital":0,"ibgeState":22,"siafi":1125,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.68077,-42.7436]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673d5"},"ibge":3302908,"name":"Miguel Pereira","capital":0,"ibgeState":33,"siafi":5857,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4572,-43.4803]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673d6"},"ibge":3529708,"name":"Miguelópolis","capital":0,"ibgeState":35,"siafi":6695,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1796,-48.031]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673d7"},"ibge":2308302,"name":"Milagres","capital":0,"ibgeState":23,"siafi":1467,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.29749,-38.9378]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673d8"},"ibge":2921302,"name":"Milagres","capital":0,"ibgeState":29,"siafi":3727,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.8646,-39.8611]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673d9"},"ibge":2106672,"name":"Milagres do Maranhão","capital":0,"ibgeState":21,"siafi":198,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.57443,-42.6131]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673da"},"ibge":2308351,"name":"Milhã","capital":0,"ibgeState":23,"siafi":1597,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.67252,-39.1875]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673db"},"ibge":2206357,"name":"Milton Brandão","capital":0,"ibgeState":22,"siafi":348,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.68295,-41.4173]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673dc"},"ibge":5213053,"name":"Mimoso de Goiás","capital":0,"ibgeState":52,"siafi":9931,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.0515,-48.1611]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673dd"},"ibge":3203403,"name":"Mimoso do Sul","capital":0,"ibgeState":32,"siafi":5667,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0628,-41.3615]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673de"},"ibge":5213087,"name":"Minaçu","capital":0,"ibgeState":52,"siafi":9647,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.5304,-48.2206]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673df"},"ibge":2705309,"name":"Minador do Negrão","capital":0,"ibgeState":27,"siafi":2805,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.31236,-36.8696]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673e0"},"ibge":4312252,"name":"Minas do Leão","capital":0,"ibgeState":43,"siafi":5773,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.1346,-52.0423]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673e1"},"ibge":3141801,"name":"Minas Novas","capital":0,"ibgeState":31,"siafi":4835,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.2156,-42.5884]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673e2"},"ibge":3141900,"name":"Minduri","capital":0,"ibgeState":31,"siafi":4837,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6797,-44.6051]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673e3"},"ibge":5213103,"name":"Mineiros","capital":0,"ibgeState":52,"siafi":9459,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.5654,-52.5537]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673e4"},"ibge":3529807,"name":"Mineiros do Tietê","capital":0,"ibgeState":35,"siafi":6697,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.412,-48.451]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673e5"},"ibge":1101203,"name":"Ministro Andreazza","capital":0,"ibgeState":11,"siafi":695,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.196,-61.5174]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673e6"},"ibge":3530003,"name":"Mira Estrela","capital":0,"ibgeState":35,"siafi":6701,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9789,-50.139]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673e7"},"ibge":3142007,"name":"Mirabela","capital":0,"ibgeState":31,"siafi":4839,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.256,-44.1602]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673e8"},"ibge":3529906,"name":"Miracatu","capital":0,"ibgeState":35,"siafi":6699,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.2766,-47.4625]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673e9"},"ibge":3303005,"name":"Miracema","capital":0,"ibgeState":33,"siafi":5859,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4148,-42.1938]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673ea"},"ibge":1713205,"name":"Miracema do Tocantins","capital":0,"ibgeState":17,"siafi":9461,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.56556,-48.393]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673eb"},"ibge":2106706,"name":"Mirador","capital":0,"ibgeState":21,"siafi":833,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.37454,-44.3683]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673ec"},"ibge":4115903,"name":"Mirador","capital":0,"ibgeState":41,"siafi":7703,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.255,-52.7761]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673ed"},"ibge":3142106,"name":"Miradouro","capital":0,"ibgeState":31,"siafi":4841,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8899,-42.3458]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673ee"},"ibge":4312302,"name":"Miraguaí","capital":0,"ibgeState":43,"siafi":8747,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.497,-53.6891]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673ef"},"ibge":3142205,"name":"Miraí","capital":0,"ibgeState":31,"siafi":4843,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2021,-42.6122]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673f0"},"ibge":2308377,"name":"Miraíma","capital":0,"ibgeState":23,"siafi":1263,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.56867,-39.9663]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673f1"},"ibge":5005608,"name":"Miranda","capital":0,"ibgeState":50,"siafi":9111,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-20.2355,-56.3746]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673f2"},"ibge":2106755,"name":"Miranda do Norte","capital":0,"ibgeState":21,"siafi":1283,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.56313,-44.5814]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673f3"},"ibge":2609303,"name":"Mirandiba","capital":0,"ibgeState":26,"siafi":2485,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.12113,-38.7388]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673f4"},"ibge":3530102,"name":"Mirandópolis","capital":0,"ibgeState":35,"siafi":6703,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1313,-51.1035]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673f5"},"ibge":2921401,"name":"Mirangaba","capital":0,"ibgeState":29,"siafi":3729,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.961,-40.574]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673f6"},"ibge":1713304,"name":"Miranorte","capital":0,"ibgeState":17,"siafi":9463,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.52907,-48.5922]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673f7"},"ibge":2921450,"name":"Mirante","capital":0,"ibgeState":29,"siafi":3297,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.2385,-40.7718]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673f8"},"ibge":1101302,"name":"Mirante da Serra","capital":0,"ibgeState":11,"siafi":697,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.029,-62.6696]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673f9"},"ibge":3530201,"name":"Mirante do Paranapanema","capital":0,"ibgeState":35,"siafi":6705,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2904,-51.9084]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673fa"},"ibge":4116000,"name":"Miraselva","capital":0,"ibgeState":41,"siafi":7705,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9657,-51.4846]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673fb"},"ibge":3530300,"name":"Mirassol","capital":0,"ibgeState":35,"siafi":6707,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8169,-49.5206]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673fc"},"ibge":5105622,"name":"Mirassol d'Oeste","capital":0,"ibgeState":51,"siafi":9177,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.6759,-58.0951]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673fd"},"ibge":3530409,"name":"Mirassolândia","capital":0,"ibgeState":35,"siafi":6709,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6179,-49.4617]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673fe"},"ibge":3142254,"name":"Miravânia","capital":0,"ibgeState":31,"siafi":652,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.7348,-44.4092]}} +{"_id":{"$oid":"66f9d5ae542d90c0536673ff"},"ibge":4210852,"name":"Mirim Doce","capital":0,"ibgeState":42,"siafi":5559,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.197,-50.0786]}} +{"_id":{"$oid":"66f9d5ae542d90c053667400"},"ibge":2106805,"name":"Mirinzal","capital":0,"ibgeState":21,"siafi":835,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.07094,-44.7787]}} +{"_id":{"$oid":"66f9d5ae542d90c053667401"},"ibge":4116059,"name":"Missal","capital":0,"ibgeState":41,"siafi":8469,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.0919,-54.2477]}} +{"_id":{"$oid":"66f9d5ae542d90c053667402"},"ibge":2308401,"name":"Missão Velha","capital":0,"ibgeState":23,"siafi":1469,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.23522,-39.143]}} +{"_id":{"$oid":"66f9d5ae542d90c053667403"},"ibge":1504604,"name":"Mocajuba","capital":0,"ibgeState":15,"siafi":491,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.5831,-49.5042]}} +{"_id":{"$oid":"66f9d5ae542d90c053667404"},"ibge":3530508,"name":"Mococa","capital":0,"ibgeState":35,"siafi":6711,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4647,-47.0024]}} +{"_id":{"$oid":"66f9d5ae542d90c053667405"},"ibge":4210902,"name":"Modelo","capital":0,"ibgeState":42,"siafi":8213,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7729,-53.04]}} +{"_id":{"$oid":"66f9d5ae542d90c053667406"},"ibge":3142304,"name":"Moeda","capital":0,"ibgeState":31,"siafi":4845,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3399,-44.0509]}} +{"_id":{"$oid":"66f9d5ae542d90c053667407"},"ibge":3142403,"name":"Moema","capital":0,"ibgeState":31,"siafi":4847,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8387,-45.4127]}} +{"_id":{"$oid":"66f9d5ae542d90c053667408"},"ibge":2509404,"name":"Mogeiro","capital":0,"ibgeState":25,"siafi":2089,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.28517,-35.4832]}} +{"_id":{"$oid":"66f9d5ae542d90c053667409"},"ibge":3530607,"name":"Mogi das Cruzes","capital":0,"ibgeState":35,"siafi":6713,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5208,-46.1854]}} +{"_id":{"$oid":"66f9d5ae542d90c05366740a"},"ibge":3530706,"name":"Mogi Guaçu","capital":0,"ibgeState":35,"siafi":6715,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3675,-46.9428]}} +{"_id":{"$oid":"66f9d5ae542d90c05366740b"},"ibge":3530805,"name":"Mogi Mirim","capital":0,"ibgeState":35,"siafi":6717,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4332,-46.9532]}} +{"_id":{"$oid":"66f9d5ae542d90c05366740c"},"ibge":5213400,"name":"Moiporá","capital":0,"ibgeState":52,"siafi":9465,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.5434,-50.739]}} +{"_id":{"$oid":"66f9d5ae542d90c05366740d"},"ibge":2804102,"name":"Moita Bonita","capital":0,"ibgeState":28,"siafi":3181,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.5769,-37.3512]}} +{"_id":{"$oid":"66f9d5ae542d90c05366740e"},"ibge":1504703,"name":"Moju","capital":0,"ibgeState":15,"siafi":493,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.88993,-48.7668]}} +{"_id":{"$oid":"66f9d5ae542d90c05366740f"},"ibge":1504752,"name":"Mojuí dos Campos","capital":0,"ibgeState":15,"siafi":1190,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.6822,-54.6425]}} +{"_id":{"$oid":"66f9d5ae542d90c053667410"},"ibge":2308500,"name":"Mombaça","capital":0,"ibgeState":23,"siafi":1471,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.73844,-39.63]}} +{"_id":{"$oid":"66f9d5ae542d90c053667411"},"ibge":3530904,"name":"Mombuca","capital":0,"ibgeState":35,"siafi":6719,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9285,-47.559]}} +{"_id":{"$oid":"66f9d5ae542d90c053667412"},"ibge":2106904,"name":"Monção","capital":0,"ibgeState":21,"siafi":837,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.48125,-45.2496]}} +{"_id":{"$oid":"66f9d5ae542d90c053667413"},"ibge":3531001,"name":"Monções","capital":0,"ibgeState":35,"siafi":6721,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8509,-50.0975]}} +{"_id":{"$oid":"66f9d5ae542d90c053667414"},"ibge":4211009,"name":"Mondaí","capital":0,"ibgeState":42,"siafi":8215,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1008,-53.4032]}} +{"_id":{"$oid":"66f9d5ae542d90c053667415"},"ibge":3531100,"name":"Mongaguá","capital":0,"ibgeState":35,"siafi":6723,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.0809,-46.6265]}} +{"_id":{"$oid":"66f9d5ae542d90c053667416"},"ibge":3142502,"name":"Monjolos","capital":0,"ibgeState":31,"siafi":4849,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.3245,-44.118]}} +{"_id":{"$oid":"66f9d5ae542d90c053667417"},"ibge":2206407,"name":"Monsenhor Gil","capital":0,"ibgeState":22,"siafi":1127,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.562,-42.6075]}} +{"_id":{"$oid":"66f9d5ae542d90c053667418"},"ibge":2206506,"name":"Monsenhor Hipólito","capital":0,"ibgeState":22,"siafi":1129,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.99275,-41.026]}} +{"_id":{"$oid":"66f9d5ae542d90c053667419"},"ibge":3142601,"name":"Monsenhor Paulo","capital":0,"ibgeState":31,"siafi":4851,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7579,-45.5391]}} +{"_id":{"$oid":"66f9d5ae542d90c05366741a"},"ibge":2308609,"name":"Monsenhor Tabosa","capital":0,"ibgeState":23,"siafi":1473,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.79102,-40.0646]}} +{"_id":{"$oid":"66f9d5ae542d90c05366741b"},"ibge":2509503,"name":"Montadas","capital":0,"ibgeState":25,"siafi":2091,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.08848,-35.9592]}} +{"_id":{"$oid":"66f9d5ae542d90c05366741c"},"ibge":3142700,"name":"Montalvânia","capital":0,"ibgeState":31,"siafi":4853,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.4197,-44.3719]}} +{"_id":{"$oid":"66f9d5ae542d90c05366741d"},"ibge":3203502,"name":"Montanha","capital":0,"ibgeState":32,"siafi":5669,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.1303,-40.3668]}} +{"_id":{"$oid":"66f9d5ae542d90c05366741e"},"ibge":2407708,"name":"Montanhas","capital":0,"ibgeState":24,"siafi":1753,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.48522,-35.2842]}} +{"_id":{"$oid":"66f9d5ae542d90c05366741f"},"ibge":4312351,"name":"Montauri","capital":0,"ibgeState":43,"siafi":7387,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6462,-52.0767]}} +{"_id":{"$oid":"66f9d5ae542d90c053667420"},"ibge":1504802,"name":"Monte Alegre","capital":0,"ibgeState":15,"siafi":495,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.99768,-54.0724]}} +{"_id":{"$oid":"66f9d5ae542d90c053667421"},"ibge":2407807,"name":"Monte Alegre","capital":0,"ibgeState":24,"siafi":1755,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.07063,-35.3253]}} +{"_id":{"$oid":"66f9d5ae542d90c053667422"},"ibge":5213509,"name":"Monte Alegre de Goiás","capital":0,"ibgeState":52,"siafi":9467,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.2552,-46.8928]}} +{"_id":{"$oid":"66f9d5ae542d90c053667423"},"ibge":3142809,"name":"Monte Alegre de Minas","capital":0,"ibgeState":31,"siafi":4855,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.869,-48.881]}} +{"_id":{"$oid":"66f9d5ae542d90c053667424"},"ibge":2804201,"name":"Monte Alegre de Sergipe","capital":0,"ibgeState":28,"siafi":3183,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.0256,-37.5616]}} +{"_id":{"$oid":"66f9d5ae542d90c053667425"},"ibge":2206605,"name":"Monte Alegre do Piauí","capital":0,"ibgeState":22,"siafi":1131,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.75364,-45.3037]}} +{"_id":{"$oid":"66f9d5ae542d90c053667426"},"ibge":3531209,"name":"Monte Alegre do Sul","capital":0,"ibgeState":35,"siafi":6725,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6817,-46.681]}} +{"_id":{"$oid":"66f9d5ae542d90c053667427"},"ibge":4312377,"name":"Monte Alegre dos Campos","capital":0,"ibgeState":43,"siafi":1000,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6805,-50.7834]}} +{"_id":{"$oid":"66f9d5ae542d90c053667428"},"ibge":3531308,"name":"Monte Alto","capital":0,"ibgeState":35,"siafi":6727,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2655,-48.4971]}} +{"_id":{"$oid":"66f9d5ae542d90c053667429"},"ibge":3531407,"name":"Monte Aprazível","capital":0,"ibgeState":35,"siafi":6729,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.768,-49.7184]}} +{"_id":{"$oid":"66f9d5ae542d90c05366742a"},"ibge":3142908,"name":"Monte Azul","capital":0,"ibgeState":31,"siafi":4857,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.1514,-42.8718]}} +{"_id":{"$oid":"66f9d5ae542d90c05366742b"},"ibge":3531506,"name":"Monte Azul Paulista","capital":0,"ibgeState":35,"siafi":6731,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9065,-48.6387]}} +{"_id":{"$oid":"66f9d5ae542d90c05366742c"},"ibge":3143005,"name":"Monte Belo","capital":0,"ibgeState":31,"siafi":4859,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3271,-46.3635]}} +{"_id":{"$oid":"66f9d5ae542d90c05366742d"},"ibge":4312385,"name":"Monte Belo do Sul","capital":0,"ibgeState":43,"siafi":5993,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.1607,-51.6333]}} +{"_id":{"$oid":"66f9d5ae542d90c05366742e"},"ibge":4211058,"name":"Monte Carlo","capital":0,"ibgeState":42,"siafi":5561,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2239,-50.9808]}} +{"_id":{"$oid":"66f9d5ae542d90c05366742f"},"ibge":3143104,"name":"Monte Carmelo","capital":0,"ibgeState":31,"siafi":4861,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7302,-47.4912]}} +{"_id":{"$oid":"66f9d5ae542d90c053667430"},"ibge":4211108,"name":"Monte Castelo","capital":0,"ibgeState":42,"siafi":8217,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.461,-50.2327]}} +{"_id":{"$oid":"66f9d5ae542d90c053667431"},"ibge":3531605,"name":"Monte Castelo","capital":0,"ibgeState":35,"siafi":6733,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2981,-51.5679]}} +{"_id":{"$oid":"66f9d5ae542d90c053667432"},"ibge":2407906,"name":"Monte das Gameleiras","capital":0,"ibgeState":24,"siafi":1757,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.43698,-35.7831]}} +{"_id":{"$oid":"66f9d5ae542d90c053667433"},"ibge":1713601,"name":"Monte do Carmo","capital":0,"ibgeState":17,"siafi":9469,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7611,-48.1114]}} +{"_id":{"$oid":"66f9d5ae542d90c053667434"},"ibge":3143153,"name":"Monte Formoso","capital":0,"ibgeState":31,"siafi":654,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.8691,-41.2473]}} +{"_id":{"$oid":"66f9d5ae542d90c053667435"},"ibge":2509602,"name":"Monte Horebe","capital":0,"ibgeState":25,"siafi":2093,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.20402,-38.5838]}} +{"_id":{"$oid":"66f9d5ae542d90c053667436"},"ibge":3531803,"name":"Monte Mor","capital":0,"ibgeState":35,"siafi":6737,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.945,-47.3122]}} +{"_id":{"$oid":"66f9d5ae542d90c053667437"},"ibge":1101401,"name":"Monte Negro","capital":0,"ibgeState":11,"siafi":685,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.2458,-63.29]}} +{"_id":{"$oid":"66f9d5ae542d90c053667438"},"ibge":2921500,"name":"Monte Santo","capital":0,"ibgeState":29,"siafi":3731,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.4374,-39.3321]}} +{"_id":{"$oid":"66f9d5ae542d90c053667439"},"ibge":3143203,"name":"Monte Santo de Minas","capital":0,"ibgeState":31,"siafi":4863,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1873,-46.9753]}} +{"_id":{"$oid":"66f9d5ae542d90c05366743a"},"ibge":1713700,"name":"Monte Santo do Tocantins","capital":0,"ibgeState":17,"siafi":90,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.0075,-48.9941]}} +{"_id":{"$oid":"66f9d5ae542d90c05366743b"},"ibge":3143401,"name":"Monte Sião","capital":0,"ibgeState":31,"siafi":4867,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4335,-46.573]}} +{"_id":{"$oid":"66f9d5ae542d90c05366743c"},"ibge":2509701,"name":"Monteiro","capital":0,"ibgeState":25,"siafi":2095,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.88363,-37.1184]}} +{"_id":{"$oid":"66f9d5ae542d90c05366743d"},"ibge":3531704,"name":"Monteiro Lobato","capital":0,"ibgeState":35,"siafi":6735,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9544,-45.8407]}} +{"_id":{"$oid":"66f9d5ae542d90c05366743e"},"ibge":2705408,"name":"Monteirópolis","capital":0,"ibgeState":27,"siafi":2807,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.60357,-37.2505]}} +{"_id":{"$oid":"66f9d5ae542d90c05366743f"},"ibge":4312401,"name":"Montenegro","capital":0,"ibgeState":43,"siafi":8749,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6824,-51.4679]}} +{"_id":{"$oid":"66f9d5ae542d90c053667440"},"ibge":2107001,"name":"Montes Altos","capital":0,"ibgeState":21,"siafi":839,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.83067,-47.0673]}} +{"_id":{"$oid":"66f9d5ae542d90c053667441"},"ibge":3143302,"name":"Montes Claros","capital":0,"ibgeState":31,"siafi":4865,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.7282,-43.8578]}} +{"_id":{"$oid":"66f9d5ae542d90c053667442"},"ibge":5213707,"name":"Montes Claros de Goiás","capital":0,"ibgeState":52,"siafi":9471,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0059,-51.3979]}} +{"_id":{"$oid":"66f9d5ae542d90c053667443"},"ibge":3143450,"name":"Montezuma","capital":0,"ibgeState":31,"siafi":2697,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.1702,-42.4941]}} +{"_id":{"$oid":"66f9d5ae542d90c053667444"},"ibge":5213756,"name":"Montividiu","capital":0,"ibgeState":52,"siafi":9933,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.4439,-51.1728]}} +{"_id":{"$oid":"66f9d5ae542d90c053667445"},"ibge":5213772,"name":"Montividiu do Norte","capital":0,"ibgeState":52,"siafi":79,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.3485,-48.6853]}} +{"_id":{"$oid":"66f9d5ae542d90c053667446"},"ibge":2308708,"name":"Morada Nova","capital":0,"ibgeState":23,"siafi":1475,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.09736,-38.3702]}} +{"_id":{"$oid":"66f9d5ae542d90c053667447"},"ibge":3143500,"name":"Morada Nova de Minas","capital":0,"ibgeState":31,"siafi":4869,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5998,-45.3584]}} +{"_id":{"$oid":"66f9d5ae542d90c053667448"},"ibge":2308807,"name":"Moraújo","capital":0,"ibgeState":23,"siafi":1477,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.46311,-40.6776]}} +{"_id":{"$oid":"66f9d5ae542d90c053667449"},"ibge":2614303,"name":"Moreilândia","capital":0,"ibgeState":26,"siafi":2585,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.61931,-39.546]}} +{"_id":{"$oid":"66f9d5ae542d90c05366744a"},"ibge":4116109,"name":"Moreira Sales","capital":0,"ibgeState":41,"siafi":7707,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.0509,-53.0102]}} +{"_id":{"$oid":"66f9d5ae542d90c05366744b"},"ibge":2609402,"name":"Moreno","capital":0,"ibgeState":26,"siafi":2487,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.10871,-35.0835]}} +{"_id":{"$oid":"66f9d5ae542d90c05366744c"},"ibge":4312427,"name":"Mormaço","capital":0,"ibgeState":43,"siafi":5933,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6968,-52.6999]}} +{"_id":{"$oid":"66f9d5ae542d90c05366744d"},"ibge":2921609,"name":"Morpará","capital":0,"ibgeState":29,"siafi":3733,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.5569,-43.2766]}} +{"_id":{"$oid":"66f9d5ae542d90c05366744e"},"ibge":4116208,"name":"Morretes","capital":0,"ibgeState":41,"siafi":7709,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4744,-48.8345]}} +{"_id":{"$oid":"66f9d5ae542d90c05366744f"},"ibge":5213806,"name":"Morrinhos","capital":0,"ibgeState":52,"siafi":9473,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.7334,-49.1059]}} +{"_id":{"$oid":"66f9d5ae542d90c053667450"},"ibge":2308906,"name":"Morrinhos","capital":0,"ibgeState":23,"siafi":1479,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.23426,-40.1233]}} +{"_id":{"$oid":"66f9d5ae542d90c053667451"},"ibge":4312443,"name":"Morrinhos do Sul","capital":0,"ibgeState":43,"siafi":5775,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3578,-49.9328]}} +{"_id":{"$oid":"66f9d5ae542d90c053667452"},"ibge":3531902,"name":"Morro Agudo","capital":0,"ibgeState":35,"siafi":6739,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7288,-48.0581]}} +{"_id":{"$oid":"66f9d5ae542d90c053667453"},"ibge":5213855,"name":"Morro Agudo de Goiás","capital":0,"ibgeState":52,"siafi":9935,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.3184,-50.0553]}} +{"_id":{"$oid":"66f9d5ae542d90c053667454"},"ibge":2206654,"name":"Morro Cabeça no Tempo","capital":0,"ibgeState":22,"siafi":350,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.71891,-43.9072]}} +{"_id":{"$oid":"66f9d5ae542d90c053667455"},"ibge":4211207,"name":"Morro da Fumaça","capital":0,"ibgeState":42,"siafi":8219,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6511,-49.2169]}} +{"_id":{"$oid":"66f9d5ae542d90c053667456"},"ibge":3143609,"name":"Morro da Garça","capital":0,"ibgeState":31,"siafi":4871,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5356,-44.601]}} +{"_id":{"$oid":"66f9d5ae542d90c053667457"},"ibge":2921708,"name":"Morro do Chapéu","capital":0,"ibgeState":29,"siafi":3735,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.5488,-41.1565]}} +{"_id":{"$oid":"66f9d5ae542d90c053667458"},"ibge":2206670,"name":"Morro do Chapéu do Piauí","capital":0,"ibgeState":22,"siafi":352,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.73337,-42.3024]}} +{"_id":{"$oid":"66f9d5ae542d90c053667459"},"ibge":3143708,"name":"Morro do Pilar","capital":0,"ibgeState":31,"siafi":4873,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2236,-43.3795]}} +{"_id":{"$oid":"66f9d5ae542d90c05366745a"},"ibge":4211256,"name":"Morro Grande","capital":0,"ibgeState":42,"siafi":5539,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.8006,-49.7214]}} +{"_id":{"$oid":"66f9d5ae542d90c05366745b"},"ibge":4312450,"name":"Morro Redondo","capital":0,"ibgeState":43,"siafi":7385,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.5887,-52.6261]}} +{"_id":{"$oid":"66f9d5ae542d90c05366745c"},"ibge":4312476,"name":"Morro Reuter","capital":0,"ibgeState":43,"siafi":6019,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5379,-51.0811]}} +{"_id":{"$oid":"66f9d5ae542d90c05366745d"},"ibge":2107100,"name":"Morros","capital":0,"ibgeState":21,"siafi":841,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.85379,-44.0357]}} +{"_id":{"$oid":"66f9d5ae542d90c05366745e"},"ibge":2921807,"name":"Mortugaba","capital":0,"ibgeState":29,"siafi":3737,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.0225,-42.3727]}} +{"_id":{"$oid":"66f9d5ae542d90c05366745f"},"ibge":3532009,"name":"Morungaba","capital":0,"ibgeState":35,"siafi":6741,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8811,-46.7896]}} +{"_id":{"$oid":"66f9d5ae542d90c053667460"},"ibge":5213905,"name":"Mossâmedes","capital":0,"ibgeState":52,"siafi":9475,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.124,-50.2136]}} +{"_id":{"$oid":"66f9d5ae542d90c053667461"},"ibge":2408003,"name":"Mossoró","capital":0,"ibgeState":24,"siafi":1759,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.18374,-37.3474]}} +{"_id":{"$oid":"66f9d5ae542d90c053667462"},"ibge":4312500,"name":"Mostardas","capital":0,"ibgeState":43,"siafi":8751,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.1054,-50.9167]}} +{"_id":{"$oid":"66f9d5ae542d90c053667463"},"ibge":3532058,"name":"Motuca","capital":0,"ibgeState":35,"siafi":7263,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5103,-48.1538]}} +{"_id":{"$oid":"66f9d5ae542d90c053667464"},"ibge":5214002,"name":"Mozarlândia","capital":0,"ibgeState":52,"siafi":9477,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.7457,-50.5713]}} +{"_id":{"$oid":"66f9d5ae542d90c053667465"},"ibge":1504901,"name":"Muaná","capital":0,"ibgeState":15,"siafi":497,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.53936,-49.2224]}} +{"_id":{"$oid":"66f9d5ae542d90c053667466"},"ibge":1400308,"name":"Mucajaí","capital":0,"ibgeState":14,"siafi":309,"ddd":95,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[2.43998,-60.9096]}} +{"_id":{"$oid":"66f9d5ae542d90c053667467"},"ibge":2309003,"name":"Mucambo","capital":0,"ibgeState":23,"siafi":1481,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.90271,-40.7452]}} +{"_id":{"$oid":"66f9d5ae542d90c053667468"},"ibge":2921906,"name":"Mucugê","capital":0,"ibgeState":29,"siafi":3739,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.0053,-41.3703]}} +{"_id":{"$oid":"66f9d5ae542d90c053667469"},"ibge":4312609,"name":"Muçum","capital":0,"ibgeState":43,"siafi":8753,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.163,-51.8714]}} +{"_id":{"$oid":"66f9d5ae542d90c05366746a"},"ibge":2922003,"name":"Mucuri","capital":0,"ibgeState":29,"siafi":3741,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.0754,-39.5565]}} +{"_id":{"$oid":"66f9d5ae542d90c05366746b"},"ibge":3203601,"name":"Mucurici","capital":0,"ibgeState":32,"siafi":5671,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.0965,-40.52]}} +{"_id":{"$oid":"66f9d5ae542d90c05366746c"},"ibge":4312617,"name":"Muitos Capões","capital":0,"ibgeState":43,"siafi":1002,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3132,-51.1836]}} +{"_id":{"$oid":"66f9d5ae542d90c05366746d"},"ibge":4312625,"name":"Muliterno","capital":0,"ibgeState":43,"siafi":5935,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3253,-51.7697]}} +{"_id":{"$oid":"66f9d5ae542d90c05366746e"},"ibge":2509800,"name":"Mulungu","capital":0,"ibgeState":25,"siafi":2097,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.02525,-35.46]}} +{"_id":{"$oid":"66f9d5ae542d90c05366746f"},"ibge":2309102,"name":"Mulungu","capital":0,"ibgeState":23,"siafi":1483,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.30294,-38.9951]}} +{"_id":{"$oid":"66f9d5ae542d90c053667470"},"ibge":2922052,"name":"Mulungu do Morro","capital":0,"ibgeState":29,"siafi":3299,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.9648,-41.6374]}} +{"_id":{"$oid":"66f9d5ae542d90c053667471"},"ibge":2922102,"name":"Mundo Novo","capital":0,"ibgeState":29,"siafi":3743,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.8541,-40.4714]}} +{"_id":{"$oid":"66f9d5ae542d90c053667472"},"ibge":5005681,"name":"Mundo Novo","capital":0,"ibgeState":50,"siafi":9179,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-23.9355,-54.281]}} +{"_id":{"$oid":"66f9d5ae542d90c053667473"},"ibge":5214051,"name":"Mundo Novo","capital":0,"ibgeState":52,"siafi":9651,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.7729,-50.2814]}} +{"_id":{"$oid":"66f9d5ae542d90c053667474"},"ibge":3143807,"name":"Munhoz","capital":0,"ibgeState":31,"siafi":4875,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6092,-46.362]}} +{"_id":{"$oid":"66f9d5ae542d90c053667475"},"ibge":4116307,"name":"Munhoz de Melo","capital":0,"ibgeState":41,"siafi":7711,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1487,-51.7737]}} +{"_id":{"$oid":"66f9d5ae542d90c053667476"},"ibge":2922201,"name":"Muniz Ferreira","capital":0,"ibgeState":29,"siafi":3745,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.0092,-39.1092]}} +{"_id":{"$oid":"66f9d5ae542d90c053667477"},"ibge":3203700,"name":"Muniz Freire","capital":0,"ibgeState":32,"siafi":5673,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4652,-41.4156]}} +{"_id":{"$oid":"66f9d5ae542d90c053667478"},"ibge":2922250,"name":"Muquém de São Francisco","capital":0,"ibgeState":29,"siafi":3005,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.065,-43.5497]}} +{"_id":{"$oid":"66f9d5ae542d90c053667479"},"ibge":3203809,"name":"Muqui","capital":0,"ibgeState":32,"siafi":5675,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9509,-41.346]}} +{"_id":{"$oid":"66f9d5ae542d90c05366747a"},"ibge":3143906,"name":"Muriaé","capital":0,"ibgeState":31,"siafi":4877,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.13,-42.3693]}} +{"_id":{"$oid":"66f9d5ae542d90c05366747b"},"ibge":2804300,"name":"Muribeca","capital":0,"ibgeState":28,"siafi":3185,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.4271,-36.9588]}} +{"_id":{"$oid":"66f9d5ae542d90c05366747c"},"ibge":2705507,"name":"Murici","capital":0,"ibgeState":27,"siafi":2809,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.30682,-35.9428]}} +{"_id":{"$oid":"66f9d5ae542d90c05366747d"},"ibge":2206696,"name":"Murici dos Portelas","capital":0,"ibgeState":22,"siafi":354,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.319,-42.094]}} +{"_id":{"$oid":"66f9d5ae542d90c05366747e"},"ibge":1713957,"name":"Muricilândia","capital":0,"ibgeState":17,"siafi":187,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.14669,-48.6091]}} +{"_id":{"$oid":"66f9d5ae542d90c05366747f"},"ibge":2922300,"name":"Muritiba","capital":0,"ibgeState":29,"siafi":3747,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.6329,-38.9921]}} +{"_id":{"$oid":"66f9d5ae542d90c053667480"},"ibge":3532108,"name":"Murutinga do Sul","capital":0,"ibgeState":35,"siafi":6743,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9908,-51.2774]}} +{"_id":{"$oid":"66f9d5ae542d90c053667481"},"ibge":2922409,"name":"Mutuípe","capital":0,"ibgeState":29,"siafi":3749,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.2284,-39.5044]}} +{"_id":{"$oid":"66f9d5ae542d90c053667482"},"ibge":3144003,"name":"Mutum","capital":0,"ibgeState":31,"siafi":4879,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8121,-41.4407]}} +{"_id":{"$oid":"66f9d5ae542d90c053667483"},"ibge":5214101,"name":"Mutunópolis","capital":0,"ibgeState":52,"siafi":9479,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.7303,-49.2745]}} +{"_id":{"$oid":"66f9d5ae542d90c053667484"},"ibge":3144102,"name":"Muzambinho","capital":0,"ibgeState":31,"siafi":4881,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3692,-46.5213]}} +{"_id":{"$oid":"66f9d5ae542d90c053667485"},"ibge":3144201,"name":"Nacip Raydan","capital":0,"ibgeState":31,"siafi":4883,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4544,-42.2481]}} +{"_id":{"$oid":"66f9d5ae542d90c053667486"},"ibge":3532157,"name":"Nantes","capital":0,"ibgeState":35,"siafi":804,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6156,-51.24]}} +{"_id":{"$oid":"66f9d5ae542d90c053667487"},"ibge":3144300,"name":"Nanuque","capital":0,"ibgeState":31,"siafi":4885,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.8481,-40.3533]}} +{"_id":{"$oid":"66f9d5ae542d90c053667488"},"ibge":4312658,"name":"Não-Me-Toque","capital":0,"ibgeState":43,"siafi":8755,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.4548,-52.8182]}} +{"_id":{"$oid":"66f9d5ae542d90c053667489"},"ibge":3144359,"name":"Naque","capital":0,"ibgeState":31,"siafi":656,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2291,-42.3312]}} +{"_id":{"$oid":"66f9d5ae542d90c05366748a"},"ibge":3532207,"name":"Narandiba","capital":0,"ibgeState":35,"siafi":6745,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4057,-51.5274]}} +{"_id":{"$oid":"66f9d5ae542d90c05366748b"},"ibge":2408102,"name":"Natal","capital":1,"ibgeState":24,"siafi":1761,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.79357,-35.1986]}} +{"_id":{"$oid":"66f9d5ae542d90c05366748c"},"ibge":3144375,"name":"Natalândia","capital":0,"ibgeState":31,"siafi":658,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.5021,-46.4874]}} +{"_id":{"$oid":"66f9d5ae542d90c05366748d"},"ibge":3144409,"name":"Natércia","capital":0,"ibgeState":31,"siafi":4887,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1158,-45.5123]}} +{"_id":{"$oid":"66f9d5ae542d90c05366748e"},"ibge":1714203,"name":"Natividade","capital":0,"ibgeState":17,"siafi":9481,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.7034,-47.7223]}} +{"_id":{"$oid":"66f9d5ae542d90c05366748f"},"ibge":3303104,"name":"Natividade","capital":0,"ibgeState":33,"siafi":5861,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.039,-41.9697]}} +{"_id":{"$oid":"66f9d5ae542d90c053667490"},"ibge":3532306,"name":"Natividade da Serra","capital":0,"ibgeState":35,"siafi":6747,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3707,-45.4468]}} +{"_id":{"$oid":"66f9d5ae542d90c053667491"},"ibge":2509909,"name":"Natuba","capital":0,"ibgeState":25,"siafi":2099,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.63514,-35.5586]}} +{"_id":{"$oid":"66f9d5ae542d90c053667492"},"ibge":4211306,"name":"Navegantes","capital":0,"ibgeState":42,"siafi":8221,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.8943,-48.6546]}} +{"_id":{"$oid":"66f9d5ae542d90c053667493"},"ibge":5005707,"name":"Naviraí","capital":0,"ibgeState":50,"siafi":9113,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-23.0618,-54.1995]}} +{"_id":{"$oid":"66f9d5ae542d90c053667494"},"ibge":2922508,"name":"Nazaré","capital":0,"ibgeState":29,"siafi":3751,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.0235,-39.0108]}} +{"_id":{"$oid":"66f9d5ae542d90c053667495"},"ibge":1714302,"name":"Nazaré","capital":0,"ibgeState":17,"siafi":9483,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.37496,-47.6643]}} +{"_id":{"$oid":"66f9d5ae542d90c053667496"},"ibge":2609501,"name":"Nazaré da Mata","capital":0,"ibgeState":26,"siafi":2489,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.74149,-35.2193]}} +{"_id":{"$oid":"66f9d5ae542d90c053667497"},"ibge":2206704,"name":"Nazaré do Piauí","capital":0,"ibgeState":22,"siafi":1133,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.97023,-42.6773]}} +{"_id":{"$oid":"66f9d5ae542d90c053667498"},"ibge":3532405,"name":"Nazaré Paulista","capital":0,"ibgeState":35,"siafi":6749,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1747,-46.3983]}} +{"_id":{"$oid":"66f9d5ae542d90c053667499"},"ibge":3144508,"name":"Nazareno","capital":0,"ibgeState":31,"siafi":4889,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2168,-44.6138]}} +{"_id":{"$oid":"66f9d5ae542d90c05366749a"},"ibge":2510006,"name":"Nazarezinho","capital":0,"ibgeState":25,"siafi":2101,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.9114,-38.322]}} +{"_id":{"$oid":"66f9d5ae542d90c05366749b"},"ibge":2206720,"name":"Nazária","capital":0,"ibgeState":22,"siafi":1180,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.35128,-42.8153]}} +{"_id":{"$oid":"66f9d5ae542d90c05366749c"},"ibge":5214408,"name":"Nazário","capital":0,"ibgeState":52,"siafi":9485,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.5808,-49.8817]}} +{"_id":{"$oid":"66f9d5ae542d90c05366749d"},"ibge":2804409,"name":"Neópolis","capital":0,"ibgeState":28,"siafi":3187,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.3215,-36.585]}} +{"_id":{"$oid":"66f9d5ae542d90c05366749e"},"ibge":3144607,"name":"Nepomuceno","capital":0,"ibgeState":31,"siafi":4891,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2324,-45.235]}} +{"_id":{"$oid":"66f9d5ae542d90c05366749f"},"ibge":5214507,"name":"Nerópolis","capital":0,"ibgeState":52,"siafi":9487,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.4047,-49.2227]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674a0"},"ibge":3532504,"name":"Neves Paulista","capital":0,"ibgeState":35,"siafi":6751,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.843,-49.6358]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674a1"},"ibge":1303007,"name":"Nhamundá","capital":0,"ibgeState":13,"siafi":263,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-2.20793,-56.7112]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674a2"},"ibge":3532603,"name":"Nhandeara","capital":0,"ibgeState":35,"siafi":6753,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6945,-50.0436]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674a3"},"ibge":4312674,"name":"Nicolau Vergueiro","capital":0,"ibgeState":43,"siafi":5937,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5298,-52.4676]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674a4"},"ibge":2922607,"name":"Nilo Peçanha","capital":0,"ibgeState":29,"siafi":3753,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.604,-39.1091]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674a5"},"ibge":3303203,"name":"Nilópolis","capital":0,"ibgeState":33,"siafi":5863,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8057,-43.4233]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674a6"},"ibge":2107209,"name":"Nina Rodrigues","capital":0,"ibgeState":21,"siafi":843,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.46788,-43.9134]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674a7"},"ibge":3144656,"name":"Ninheira","capital":0,"ibgeState":31,"siafi":660,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.3148,-41.7564]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674a8"},"ibge":5005806,"name":"Nioaque","capital":0,"ibgeState":50,"siafi":9115,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-21.1419,-55.8296]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674a9"},"ibge":3532702,"name":"Nipoã","capital":0,"ibgeState":35,"siafi":6755,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9114,-49.7833]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674aa"},"ibge":5214606,"name":"Niquelândia","capital":0,"ibgeState":52,"siafi":9489,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.4662,-48.4599]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674ab"},"ibge":2408201,"name":"Nísia Floresta","capital":0,"ibgeState":24,"siafi":1763,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.09329,-35.1991]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674ac"},"ibge":3303302,"name":"Niterói","capital":0,"ibgeState":33,"siafi":5865,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8832,-43.1034]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674ad"},"ibge":5105903,"name":"Nobres","capital":0,"ibgeState":51,"siafi":9117,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.7192,-56.3284]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674ae"},"ibge":4312708,"name":"Nonoai","capital":0,"ibgeState":43,"siafi":8757,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3689,-52.7756]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674af"},"ibge":2922656,"name":"Nordestina","capital":0,"ibgeState":29,"siafi":3979,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.8192,-39.4297]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674b0"},"ibge":1400407,"name":"Normandia","capital":0,"ibgeState":14,"siafi":311,"ddd":95,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[3.8853,-59.6204]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674b1"},"ibge":5106000,"name":"Nortelândia","capital":0,"ibgeState":51,"siafi":9119,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.454,-56.7945]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674b2"},"ibge":2804458,"name":"Nossa Senhora Aparecida","capital":0,"ibgeState":28,"siafi":3135,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.3944,-37.4517]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674b3"},"ibge":2804508,"name":"Nossa Senhora da Glória","capital":0,"ibgeState":28,"siafi":3189,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.2158,-37.4211]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674b4"},"ibge":2804607,"name":"Nossa Senhora das Dores","capital":0,"ibgeState":28,"siafi":3191,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.4854,-37.1963]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674b5"},"ibge":4116406,"name":"Nossa Senhora das Graças","capital":0,"ibgeState":41,"siafi":7713,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9129,-51.7978]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674b6"},"ibge":2804706,"name":"Nossa Senhora de Lourdes","capital":0,"ibgeState":28,"siafi":3193,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.0772,-37.0615]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674b7"},"ibge":2206753,"name":"Nossa Senhora de Nazaré","capital":0,"ibgeState":22,"siafi":356,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.63019,-42.173]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674b8"},"ibge":5106109,"name":"Nossa Senhora do Livramento","capital":0,"ibgeState":51,"siafi":9121,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.772,-56.3432]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674b9"},"ibge":2804805,"name":"Nossa Senhora do Socorro","capital":0,"ibgeState":28,"siafi":3195,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.8468,-37.1231]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674ba"},"ibge":2206803,"name":"Nossa Senhora dos Remédios","capital":0,"ibgeState":22,"siafi":1135,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.97574,-42.6184]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674bb"},"ibge":3532801,"name":"Nova Aliança","capital":0,"ibgeState":35,"siafi":6757,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0156,-49.4986]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674bc"},"ibge":4116505,"name":"Nova Aliança do Ivaí","capital":0,"ibgeState":41,"siafi":7715,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1763,-52.6032]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674bd"},"ibge":4312757,"name":"Nova Alvorada","capital":0,"ibgeState":43,"siafi":7383,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6822,-52.1631]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674be"},"ibge":5006002,"name":"Nova Alvorada do Sul","capital":0,"ibgeState":50,"siafi":143,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-21.4657,-54.3825]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674bf"},"ibge":5214705,"name":"Nova América","capital":0,"ibgeState":52,"siafi":9491,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.0206,-49.8953]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674c0"},"ibge":4116604,"name":"Nova América da Colina","capital":0,"ibgeState":41,"siafi":7717,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3308,-50.7168]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674c1"},"ibge":5006200,"name":"Nova Andradina","capital":0,"ibgeState":50,"siafi":9123,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.238,-53.3437]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674c2"},"ibge":4312807,"name":"Nova Araçá","capital":0,"ibgeState":43,"siafi":8759,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6537,-51.7458]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674c3"},"ibge":4116703,"name":"Nova Aurora","capital":0,"ibgeState":41,"siafi":7965,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.5289,-53.2575]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674c4"},"ibge":5214804,"name":"Nova Aurora","capital":0,"ibgeState":52,"siafi":9493,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.0597,-48.2552]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674c5"},"ibge":5106158,"name":"Nova Bandeirantes","capital":0,"ibgeState":51,"siafi":117,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-9.84977,-57.8139]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674c6"},"ibge":4312906,"name":"Nova Bassano","capital":0,"ibgeState":43,"siafi":8761,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.7291,-51.7072]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674c7"},"ibge":3144672,"name":"Nova Belém","capital":0,"ibgeState":31,"siafi":662,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4925,-41.1107]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674c8"},"ibge":4312955,"name":"Nova Boa Vista","capital":0,"ibgeState":43,"siafi":5953,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9926,-52.9784]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674c9"},"ibge":5106208,"name":"Nova Brasilândia","capital":0,"ibgeState":51,"siafi":8981,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.9612,-54.9685]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674ca"},"ibge":1100148,"name":"Nova Brasilândia D'Oeste","capital":0,"ibgeState":11,"siafi":41,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.7247,-62.3127]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674cb"},"ibge":4313003,"name":"Nova Bréscia","capital":0,"ibgeState":43,"siafi":8763,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.2182,-52.0319]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674cc"},"ibge":3532827,"name":"Nova Campina","capital":0,"ibgeState":35,"siafi":3061,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.1224,-48.9022]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674cd"},"ibge":2922706,"name":"Nova Canaã","capital":0,"ibgeState":29,"siafi":3755,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.7912,-40.1458]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674ce"},"ibge":5106216,"name":"Nova Canaã do Norte","capital":0,"ibgeState":51,"siafi":9889,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.558,-55.953]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674cf"},"ibge":3532843,"name":"Nova Canaã Paulista","capital":0,"ibgeState":35,"siafi":2985,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3836,-50.9483]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674d0"},"ibge":4313011,"name":"Nova Candelária","capital":0,"ibgeState":43,"siafi":1004,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6137,-54.1074]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674d1"},"ibge":4116802,"name":"Nova Cantu","capital":0,"ibgeState":41,"siafi":7719,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.6723,-52.5661]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674d2"},"ibge":3532868,"name":"Nova Castilho","capital":0,"ibgeState":35,"siafi":806,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7615,-50.3477]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674d3"},"ibge":2107258,"name":"Nova Colinas","capital":0,"ibgeState":21,"siafi":200,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.12263,-46.2607]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674d4"},"ibge":5214838,"name":"Nova Crixás","capital":0,"ibgeState":52,"siafi":9653,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.0957,-50.33]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674d5"},"ibge":2408300,"name":"Nova Cruz","capital":0,"ibgeState":24,"siafi":1765,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.47511,-35.4286]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674d6"},"ibge":3144706,"name":"Nova Era","capital":0,"ibgeState":31,"siafi":4893,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7577,-43.0333]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674d7"},"ibge":4211405,"name":"Nova Erechim","capital":0,"ibgeState":42,"siafi":8223,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.8982,-52.9066]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674d8"},"ibge":4116901,"name":"Nova Esperança","capital":0,"ibgeState":41,"siafi":7721,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.182,-52.2031]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674d9"},"ibge":1504950,"name":"Nova Esperança do Piriá","capital":0,"ibgeState":15,"siafi":391,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.26693,-46.9731]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674da"},"ibge":4116950,"name":"Nova Esperança do Sudoeste","capital":0,"ibgeState":41,"siafi":5477,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.9004,-53.2618]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674db"},"ibge":4313037,"name":"Nova Esperança do Sul","capital":0,"ibgeState":43,"siafi":7381,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4066,-54.8293]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674dc"},"ibge":3532900,"name":"Nova Europa","capital":0,"ibgeState":35,"siafi":6759,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7765,-48.5705]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674dd"},"ibge":4117008,"name":"Nova Fátima","capital":0,"ibgeState":41,"siafi":7723,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4324,-50.5665]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674de"},"ibge":2922730,"name":"Nova Fátima","capital":0,"ibgeState":29,"siafi":3007,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.6031,-39.6302]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674df"},"ibge":2510105,"name":"Nova Floresta","capital":0,"ibgeState":25,"siafi":2103,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.45056,-36.2057]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674e0"},"ibge":3303401,"name":"Nova Friburgo","capital":0,"ibgeState":33,"siafi":5867,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2932,-42.5377]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674e1"},"ibge":5214861,"name":"Nova Glória","capital":0,"ibgeState":52,"siafi":9655,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.145,-49.5737]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674e2"},"ibge":3533007,"name":"Nova Granada","capital":0,"ibgeState":35,"siafi":6761,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5321,-49.3123]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674e3"},"ibge":5108808,"name":"Nova Guarita","capital":0,"ibgeState":51,"siafi":121,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.312,-55.4061]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674e4"},"ibge":3533106,"name":"Nova Guataporanga","capital":0,"ibgeState":35,"siafi":6763,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.332,-51.6447]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674e5"},"ibge":4313060,"name":"Nova Hartz","capital":0,"ibgeState":43,"siafi":7379,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5808,-50.9051]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674e6"},"ibge":2922755,"name":"Nova Ibiá","capital":0,"ibgeState":29,"siafi":3009,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.812,-39.6182]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674e7"},"ibge":3303500,"name":"Nova Iguaçu","capital":0,"ibgeState":33,"siafi":5869,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7556,-43.4603]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674e8"},"ibge":5214879,"name":"Nova Iguaçu de Goiás","capital":0,"ibgeState":52,"siafi":87,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.2868,-49.3872]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674e9"},"ibge":3533205,"name":"Nova Independência","capital":0,"ibgeState":35,"siafi":6765,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1026,-51.4905]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674ea"},"ibge":2107308,"name":"Nova Iorque","capital":0,"ibgeState":21,"siafi":845,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.73047,-44.0471]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674eb"},"ibge":1504976,"name":"Nova Ipixuna","capital":0,"ibgeState":15,"siafi":56,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.91622,-49.0822]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674ec"},"ibge":4211454,"name":"Nova Itaberaba","capital":0,"ibgeState":42,"siafi":5589,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9428,-52.8141]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674ed"},"ibge":2922805,"name":"Nova Itarana","capital":0,"ibgeState":29,"siafi":3757,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.0241,-40.0653]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674ee"},"ibge":5106182,"name":"Nova Lacerda","capital":0,"ibgeState":51,"siafi":1040,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.4727,-59.6001]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674ef"},"ibge":4117057,"name":"Nova Laranjeiras","capital":0,"ibgeState":41,"siafi":5479,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.3054,-52.5447]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674f0"},"ibge":3144805,"name":"Nova Lima","capital":0,"ibgeState":31,"siafi":4895,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9758,-43.8509]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674f1"},"ibge":4117107,"name":"Nova Londrina","capital":0,"ibgeState":41,"siafi":7725,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7639,-52.9868]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674f2"},"ibge":3533304,"name":"Nova Luzitânia","capital":0,"ibgeState":35,"siafi":6767,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.856,-50.2617]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674f3"},"ibge":1100338,"name":"Nova Mamoré","capital":0,"ibgeState":11,"siafi":47,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.4077,-65.3346]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674f4"},"ibge":5108857,"name":"Nova Marilândia","capital":0,"ibgeState":51,"siafi":103,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.3568,-56.9696]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674f5"},"ibge":5108907,"name":"Nova Maringá","capital":0,"ibgeState":51,"siafi":111,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-13.0136,-57.0908]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674f6"},"ibge":3144904,"name":"Nova Módica","capital":0,"ibgeState":31,"siafi":4897,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4417,-41.4984]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674f7"},"ibge":5108956,"name":"Nova Monte Verde","capital":0,"ibgeState":51,"siafi":119,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-9.99998,-57.5261]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674f8"},"ibge":5106224,"name":"Nova Mutum","capital":0,"ibgeState":51,"siafi":9937,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-13.8374,-56.0743]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674f9"},"ibge":5106174,"name":"Nova Nazaré","capital":0,"ibgeState":51,"siafi":1086,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-13.9486,-51.8002]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674fa"},"ibge":3533403,"name":"Nova Odessa","capital":0,"ibgeState":35,"siafi":6769,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7832,-47.2941]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674fb"},"ibge":4117206,"name":"Nova Olímpia","capital":0,"ibgeState":41,"siafi":7967,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4703,-53.0898]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674fc"},"ibge":5106232,"name":"Nova Olímpia","capital":0,"ibgeState":51,"siafi":9893,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.7889,-57.2886]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674fd"},"ibge":1714880,"name":"Nova Olinda","capital":0,"ibgeState":17,"siafi":9663,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.63171,-48.4252]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674fe"},"ibge":2309201,"name":"Nova Olinda","capital":0,"ibgeState":23,"siafi":1485,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.08415,-39.6713]}} +{"_id":{"$oid":"66f9d5ae542d90c0536674ff"},"ibge":2510204,"name":"Nova Olinda","capital":0,"ibgeState":25,"siafi":2105,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.47232,-38.0382]}} +{"_id":{"$oid":"66f9d5ae542d90c053667500"},"ibge":2107357,"name":"Nova Olinda do Maranhão","capital":0,"ibgeState":21,"siafi":202,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.84227,-45.6953]}} +{"_id":{"$oid":"66f9d5ae542d90c053667501"},"ibge":1303106,"name":"Nova Olinda do Norte","capital":0,"ibgeState":13,"siafi":265,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.90037,-59.094]}} +{"_id":{"$oid":"66f9d5ae542d90c053667502"},"ibge":4313086,"name":"Nova Pádua","capital":0,"ibgeState":43,"siafi":5991,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.0275,-51.3098]}} +{"_id":{"$oid":"66f9d5ae542d90c053667503"},"ibge":4313102,"name":"Nova Palma","capital":0,"ibgeState":43,"siafi":8765,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.471,-53.4689]}} +{"_id":{"$oid":"66f9d5ae542d90c053667504"},"ibge":2510303,"name":"Nova Palmeira","capital":0,"ibgeState":25,"siafi":2107,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.67122,-36.422]}} +{"_id":{"$oid":"66f9d5ae542d90c053667505"},"ibge":4313201,"name":"Nova Petrópolis","capital":0,"ibgeState":43,"siafi":8767,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3741,-51.1136]}} +{"_id":{"$oid":"66f9d5ae542d90c053667506"},"ibge":3145000,"name":"Nova Ponte","capital":0,"ibgeState":31,"siafi":4899,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.1461,-47.6779]}} +{"_id":{"$oid":"66f9d5ae542d90c053667507"},"ibge":3145059,"name":"Nova Porteirinha","capital":0,"ibgeState":31,"siafi":664,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.7993,-43.2941]}} +{"_id":{"$oid":"66f9d5ae542d90c053667508"},"ibge":4313300,"name":"Nova Prata","capital":0,"ibgeState":43,"siafi":8769,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.7799,-51.6113]}} +{"_id":{"$oid":"66f9d5ae542d90c053667509"},"ibge":4117255,"name":"Nova Prata do Iguaçu","capital":0,"ibgeState":41,"siafi":7995,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.6309,-53.3469]}} +{"_id":{"$oid":"66f9d5ae542d90c05366750a"},"ibge":4313334,"name":"Nova Ramada","capital":0,"ibgeState":43,"siafi":1006,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.0667,-53.6992]}} +{"_id":{"$oid":"66f9d5ae542d90c05366750b"},"ibge":2922854,"name":"Nova Redenção","capital":0,"ibgeState":29,"siafi":3011,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.815,-41.0748]}} +{"_id":{"$oid":"66f9d5ae542d90c05366750c"},"ibge":3145109,"name":"Nova Resende","capital":0,"ibgeState":31,"siafi":4901,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1286,-46.4157]}} +{"_id":{"$oid":"66f9d5ae542d90c05366750d"},"ibge":5214903,"name":"Nova Roma","capital":0,"ibgeState":52,"siafi":9495,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.7388,-46.8734]}} +{"_id":{"$oid":"66f9d5ae542d90c05366750e"},"ibge":4313359,"name":"Nova Roma do Sul","capital":0,"ibgeState":43,"siafi":7377,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.9882,-51.4095]}} +{"_id":{"$oid":"66f9d5ae542d90c05366750f"},"ibge":1715002,"name":"Nova Rosalândia","capital":0,"ibgeState":17,"siafi":9721,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.5651,-48.9125]}} +{"_id":{"$oid":"66f9d5ae542d90c053667510"},"ibge":2309300,"name":"Nova Russas","capital":0,"ibgeState":23,"siafi":1487,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.70581,-40.5621]}} +{"_id":{"$oid":"66f9d5ae542d90c053667511"},"ibge":4117214,"name":"Nova Santa Bárbara","capital":0,"ibgeState":41,"siafi":5457,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5865,-50.7598]}} +{"_id":{"$oid":"66f9d5ae542d90c053667512"},"ibge":5106190,"name":"Nova Santa Helena","capital":0,"ibgeState":51,"siafi":1088,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.8651,-55.1872]}} +{"_id":{"$oid":"66f9d5ae542d90c053667513"},"ibge":4313375,"name":"Nova Santa Rita","capital":0,"ibgeState":43,"siafi":5757,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.8525,-51.2837]}} +{"_id":{"$oid":"66f9d5ae542d90c053667514"},"ibge":2207959,"name":"Nova Santa Rita","capital":0,"ibgeState":22,"siafi":370,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.09707,-42.0471]}} +{"_id":{"$oid":"66f9d5ae542d90c053667515"},"ibge":4117222,"name":"Nova Santa Rosa","capital":0,"ibgeState":41,"siafi":7979,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.4693,-53.9552]}} +{"_id":{"$oid":"66f9d5ae542d90c053667516"},"ibge":3145208,"name":"Nova Serrana","capital":0,"ibgeState":31,"siafi":4903,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8713,-44.9847]}} +{"_id":{"$oid":"66f9d5ae542d90c053667517"},"ibge":2922904,"name":"Nova Soure","capital":0,"ibgeState":29,"siafi":3759,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.2329,-38.4871]}} +{"_id":{"$oid":"66f9d5ae542d90c053667518"},"ibge":4117271,"name":"Nova Tebas","capital":0,"ibgeState":41,"siafi":9913,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.438,-51.9454]}} +{"_id":{"$oid":"66f9d5ae542d90c053667519"},"ibge":1505007,"name":"Nova Timboteua","capital":0,"ibgeState":15,"siafi":499,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.20874,-47.3921]}} +{"_id":{"$oid":"66f9d5ae542d90c05366751a"},"ibge":4211504,"name":"Nova Trento","capital":0,"ibgeState":42,"siafi":8225,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.278,-48.9298]}} +{"_id":{"$oid":"66f9d5ae542d90c05366751b"},"ibge":5106240,"name":"Nova Ubiratã","capital":0,"ibgeState":51,"siafi":1042,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.9834,-55.2556]}} +{"_id":{"$oid":"66f9d5ae542d90c05366751c"},"ibge":3136603,"name":"Nova União","capital":0,"ibgeState":31,"siafi":4731,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6876,-43.583]}} +{"_id":{"$oid":"66f9d5ae542d90c05366751d"},"ibge":1101435,"name":"Nova União","capital":0,"ibgeState":11,"siafi":10,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.9068,-62.5564]}} +{"_id":{"$oid":"66f9d5ae542d90c05366751e"},"ibge":3203908,"name":"Nova Venécia","capital":0,"ibgeState":32,"siafi":5677,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.715,-40.4053]}} +{"_id":{"$oid":"66f9d5ae542d90c05366751f"},"ibge":4211603,"name":"Nova Veneza","capital":0,"ibgeState":42,"siafi":8227,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6338,-49.5055]}} +{"_id":{"$oid":"66f9d5ae542d90c053667520"},"ibge":5215009,"name":"Nova Veneza","capital":0,"ibgeState":52,"siafi":9497,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.3695,-49.3168]}} +{"_id":{"$oid":"66f9d5ae542d90c053667521"},"ibge":2923001,"name":"Nova Viçosa","capital":0,"ibgeState":29,"siafi":3761,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.8926,-39.3743]}} +{"_id":{"$oid":"66f9d5ae542d90c053667522"},"ibge":5106257,"name":"Nova Xavantina","capital":0,"ibgeState":51,"siafi":9195,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.6771,-52.3502]}} +{"_id":{"$oid":"66f9d5ae542d90c053667523"},"ibge":3533254,"name":"Novais","capital":0,"ibgeState":35,"siafi":2979,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9893,-48.9141]}} +{"_id":{"$oid":"66f9d5ae542d90c053667524"},"ibge":1715101,"name":"Novo Acordo","capital":0,"ibgeState":17,"siafi":9499,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.97063,-47.6785]}} +{"_id":{"$oid":"66f9d5ae542d90c053667525"},"ibge":1303205,"name":"Novo Airão","capital":0,"ibgeState":13,"siafi":201,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-2.63637,-60.9434]}} +{"_id":{"$oid":"66f9d5ae542d90c053667526"},"ibge":1715150,"name":"Novo Alegre","capital":0,"ibgeState":17,"siafi":9703,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.9217,-46.5713]}} +{"_id":{"$oid":"66f9d5ae542d90c053667527"},"ibge":1303304,"name":"Novo Aripuanã","capital":0,"ibgeState":13,"siafi":267,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-5.12593,-60.3732]}} +{"_id":{"$oid":"66f9d5ae542d90c053667528"},"ibge":4313490,"name":"Novo Barreiro","capital":0,"ibgeState":43,"siafi":5985,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9077,-53.1103]}} +{"_id":{"$oid":"66f9d5ae542d90c053667529"},"ibge":5215207,"name":"Novo Brasil","capital":0,"ibgeState":52,"siafi":9501,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0313,-50.7113]}} +{"_id":{"$oid":"66f9d5ae542d90c05366752a"},"ibge":4313391,"name":"Novo Cabrais","capital":0,"ibgeState":43,"siafi":1008,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.7338,-52.9489]}} +{"_id":{"$oid":"66f9d5ae542d90c05366752b"},"ibge":3145307,"name":"Novo Cruzeiro","capital":0,"ibgeState":31,"siafi":4905,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.4654,-41.8826]}} +{"_id":{"$oid":"66f9d5ae542d90c05366752c"},"ibge":5215231,"name":"Novo Gama","capital":0,"ibgeState":52,"siafi":1058,"ddd":61,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0592,-48.0417]}} +{"_id":{"$oid":"66f9d5ae542d90c05366752d"},"ibge":4313409,"name":"Novo Hamburgo","capital":0,"ibgeState":43,"siafi":8771,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6875,-51.1328]}} +{"_id":{"$oid":"66f9d5ae542d90c05366752e"},"ibge":4211652,"name":"Novo Horizonte","capital":0,"ibgeState":42,"siafi":5591,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.4442,-52.8281]}} +{"_id":{"$oid":"66f9d5ae542d90c05366752f"},"ibge":3533502,"name":"Novo Horizonte","capital":0,"ibgeState":35,"siafi":6771,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4651,-49.2234]}} +{"_id":{"$oid":"66f9d5ae542d90c053667530"},"ibge":2923035,"name":"Novo Horizonte","capital":0,"ibgeState":29,"siafi":3013,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.8083,-42.1682]}} +{"_id":{"$oid":"66f9d5ae542d90c053667531"},"ibge":5106273,"name":"Novo Horizonte do Norte","capital":0,"ibgeState":51,"siafi":9903,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.4089,-57.3488]}} +{"_id":{"$oid":"66f9d5ae542d90c053667532"},"ibge":1100502,"name":"Novo Horizonte do Oeste","capital":0,"ibgeState":11,"siafi":689,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.6961,-61.9951]}} +{"_id":{"$oid":"66f9d5ae542d90c053667533"},"ibge":5006259,"name":"Novo Horizonte do Sul","capital":0,"ibgeState":50,"siafi":159,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.6693,-53.8601]}} +{"_id":{"$oid":"66f9d5ae542d90c053667534"},"ibge":4117297,"name":"Novo Itacolomi","capital":0,"ibgeState":41,"siafi":5517,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7631,-51.5079]}} +{"_id":{"$oid":"66f9d5ae542d90c053667535"},"ibge":1715259,"name":"Novo Jardim","capital":0,"ibgeState":17,"siafi":321,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.826,-46.6325]}} +{"_id":{"$oid":"66f9d5ae542d90c053667536"},"ibge":2705606,"name":"Novo Lino","capital":0,"ibgeState":27,"siafi":2811,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.94191,-35.664]}} +{"_id":{"$oid":"66f9d5ae542d90c053667537"},"ibge":4313425,"name":"Novo Machado","capital":0,"ibgeState":43,"siafi":6057,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5765,-54.5036]}} +{"_id":{"$oid":"66f9d5ae542d90c053667538"},"ibge":5106265,"name":"Novo Mundo","capital":0,"ibgeState":51,"siafi":1044,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-9.95616,-55.2029]}} +{"_id":{"$oid":"66f9d5ae542d90c053667539"},"ibge":2309409,"name":"Novo Oriente","capital":0,"ibgeState":23,"siafi":1489,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.52552,-40.7713]}} +{"_id":{"$oid":"66f9d5ae542d90c05366753a"},"ibge":3145356,"name":"Novo Oriente de Minas","capital":0,"ibgeState":31,"siafi":666,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.4089,-41.2194]}} +{"_id":{"$oid":"66f9d5ae542d90c05366753b"},"ibge":2206902,"name":"Novo Oriente do Piauí","capital":0,"ibgeState":22,"siafi":1137,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.44901,-41.9261]}} +{"_id":{"$oid":"66f9d5ae542d90c05366753c"},"ibge":5215256,"name":"Novo Planalto","capital":0,"ibgeState":52,"siafi":9735,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.2424,-49.506]}} +{"_id":{"$oid":"66f9d5ae542d90c05366753d"},"ibge":1505031,"name":"Novo Progresso","capital":0,"ibgeState":15,"siafi":633,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.14347,-55.3786]}} +{"_id":{"$oid":"66f9d5ae542d90c05366753e"},"ibge":1505064,"name":"Novo Repartimento","capital":0,"ibgeState":15,"siafi":629,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.24749,-49.9499]}} +{"_id":{"$oid":"66f9d5ae542d90c05366753f"},"ibge":2206951,"name":"Novo Santo Antônio","capital":0,"ibgeState":22,"siafi":358,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.28749,-41.9325]}} +{"_id":{"$oid":"66f9d5ae542d90c053667540"},"ibge":5106315,"name":"Novo Santo Antônio","capital":0,"ibgeState":51,"siafi":1090,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.2875,-50.9686]}} +{"_id":{"$oid":"66f9d5ae542d90c053667541"},"ibge":5106281,"name":"Novo São Joaquim","capital":0,"ibgeState":51,"siafi":9867,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.9054,-53.0194]}} +{"_id":{"$oid":"66f9d5ae542d90c053667542"},"ibge":4313441,"name":"Novo Tiradentes","capital":0,"ibgeState":43,"siafi":5973,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5649,-53.1837]}} +{"_id":{"$oid":"66f9d5ae542d90c053667543"},"ibge":2923050,"name":"Novo Triunfo","capital":0,"ibgeState":29,"siafi":3015,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.3182,-38.4014]}} +{"_id":{"$oid":"66f9d5ae542d90c053667544"},"ibge":4313466,"name":"Novo Xingu","capital":0,"ibgeState":43,"siafi":1152,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.749,-53.0639]}} +{"_id":{"$oid":"66f9d5ae542d90c053667545"},"ibge":3145372,"name":"Novorizonte","capital":0,"ibgeState":31,"siafi":668,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0162,-42.4044]}} +{"_id":{"$oid":"66f9d5ae542d90c053667546"},"ibge":3533601,"name":"Nuporanga","capital":0,"ibgeState":35,"siafi":6773,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7296,-47.7429]}} +{"_id":{"$oid":"66f9d5ae542d90c053667547"},"ibge":1505106,"name":"Óbidos","capital":0,"ibgeState":15,"siafi":501,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.90107,-55.5208]}} +{"_id":{"$oid":"66f9d5ae542d90c053667548"},"ibge":2309458,"name":"Ocara","capital":0,"ibgeState":23,"siafi":1265,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.48523,-38.5933]}} +{"_id":{"$oid":"66f9d5ae542d90c053667549"},"ibge":3533700,"name":"Ocauçu","capital":0,"ibgeState":35,"siafi":6775,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.438,-49.922]}} +{"_id":{"$oid":"66f9d5ae542d90c05366754a"},"ibge":2207009,"name":"Oeiras","capital":0,"ibgeState":22,"siafi":1139,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.01915,-42.1283]}} +{"_id":{"$oid":"66f9d5ae542d90c05366754b"},"ibge":1505205,"name":"Oeiras do Pará","capital":0,"ibgeState":15,"siafi":503,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.00358,-49.8628]}} +{"_id":{"$oid":"66f9d5ae542d90c05366754c"},"ibge":1600501,"name":"Oiapoque","capital":0,"ibgeState":16,"siafi":609,"ddd":96,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[3.84074,-51.8331]}} +{"_id":{"$oid":"66f9d5ae542d90c05366754d"},"ibge":3145406,"name":"Olaria","capital":0,"ibgeState":31,"siafi":4907,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8598,-43.9356]}} +{"_id":{"$oid":"66f9d5ae542d90c05366754e"},"ibge":3533809,"name":"Óleo","capital":0,"ibgeState":35,"siafi":6777,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9435,-49.3419]}} +{"_id":{"$oid":"66f9d5ae542d90c05366754f"},"ibge":2510402,"name":"Olho d'Água","capital":0,"ibgeState":25,"siafi":2109,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.22118,-37.7406]}} +{"_id":{"$oid":"66f9d5ae542d90c053667550"},"ibge":2107407,"name":"Olho d'Água das Cunhãs","capital":0,"ibgeState":21,"siafi":847,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.13417,-45.1163]}} +{"_id":{"$oid":"66f9d5ae542d90c053667551"},"ibge":2705705,"name":"Olho d'Água das Flores","capital":0,"ibgeState":27,"siafi":2813,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.53686,-37.2971]}} +{"_id":{"$oid":"66f9d5ae542d90c053667552"},"ibge":2705804,"name":"Olho d'Água do Casado","capital":0,"ibgeState":27,"siafi":2815,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.50357,-37.8301]}} +{"_id":{"$oid":"66f9d5ae542d90c053667553"},"ibge":2207108,"name":"Olho D'Água do Piauí","capital":0,"ibgeState":22,"siafi":360,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.84125,-42.5594]}} +{"_id":{"$oid":"66f9d5ae542d90c053667554"},"ibge":2705903,"name":"Olho d'Água Grande","capital":0,"ibgeState":27,"siafi":2817,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.0572,-36.8101]}} +{"_id":{"$oid":"66f9d5ae542d90c053667555"},"ibge":2408409,"name":"Olho-d'Água do Borges","capital":0,"ibgeState":24,"siafi":1767,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.9486,-37.7047]}} +{"_id":{"$oid":"66f9d5ae542d90c053667556"},"ibge":3145455,"name":"Olhos d'Água","capital":0,"ibgeState":31,"siafi":670,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.3982,-43.5719]}} +{"_id":{"$oid":"66f9d5ae542d90c053667557"},"ibge":3533908,"name":"Olímpia","capital":0,"ibgeState":35,"siafi":6779,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7366,-48.9106]}} +{"_id":{"$oid":"66f9d5ae542d90c053667558"},"ibge":3145505,"name":"Olímpio Noronha","capital":0,"ibgeState":31,"siafi":4909,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0685,-45.2657]}} +{"_id":{"$oid":"66f9d5ae542d90c053667559"},"ibge":2609600,"name":"Olinda","capital":0,"ibgeState":26,"siafi":2491,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.01017,-34.8545]}} +{"_id":{"$oid":"66f9d5ae542d90c05366755a"},"ibge":2107456,"name":"Olinda Nova do Maranhão","capital":0,"ibgeState":21,"siafi":204,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.99295,-44.9897]}} +{"_id":{"$oid":"66f9d5ae542d90c05366755b"},"ibge":2923100,"name":"Olindina","capital":0,"ibgeState":29,"siafi":3763,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.3497,-38.3379]}} +{"_id":{"$oid":"66f9d5ae542d90c05366755c"},"ibge":2510501,"name":"Olivedos","capital":0,"ibgeState":25,"siafi":2111,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.98434,-36.241]}} +{"_id":{"$oid":"66f9d5ae542d90c05366755d"},"ibge":3145604,"name":"Oliveira","capital":0,"ibgeState":31,"siafi":4911,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6982,-44.829]}} +{"_id":{"$oid":"66f9d5ae542d90c05366755e"},"ibge":1715507,"name":"Oliveira de Fátima","capital":0,"ibgeState":17,"siafi":92,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.707,-48.9086]}} +{"_id":{"$oid":"66f9d5ae542d90c05366755f"},"ibge":2923209,"name":"Oliveira dos Brejinhos","capital":0,"ibgeState":29,"siafi":3765,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.3132,-42.8969]}} +{"_id":{"$oid":"66f9d5ae542d90c053667560"},"ibge":3145703,"name":"Oliveira Fortes","capital":0,"ibgeState":31,"siafi":4913,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3401,-43.4499]}} +{"_id":{"$oid":"66f9d5ae542d90c053667561"},"ibge":2706000,"name":"Olivença","capital":0,"ibgeState":27,"siafi":2819,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.51954,-37.1954]}} +{"_id":{"$oid":"66f9d5ae542d90c053667562"},"ibge":3145802,"name":"Onça de Pitangui","capital":0,"ibgeState":31,"siafi":4915,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7276,-44.8058]}} +{"_id":{"$oid":"66f9d5ae542d90c053667563"},"ibge":3534005,"name":"Onda Verde","capital":0,"ibgeState":35,"siafi":6781,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6042,-49.2929]}} +{"_id":{"$oid":"66f9d5ae542d90c053667564"},"ibge":3145851,"name":"Oratórios","capital":0,"ibgeState":31,"siafi":672,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4298,-42.7977]}} +{"_id":{"$oid":"66f9d5ae542d90c053667565"},"ibge":3534104,"name":"Oriente","capital":0,"ibgeState":35,"siafi":6783,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1549,-50.0971]}} +{"_id":{"$oid":"66f9d5ae542d90c053667566"},"ibge":3534203,"name":"Orindiúva","capital":0,"ibgeState":35,"siafi":6785,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1861,-49.3464]}} +{"_id":{"$oid":"66f9d5ae542d90c053667567"},"ibge":1505304,"name":"Oriximiná","capital":0,"ibgeState":15,"siafi":505,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.75989,-55.8579]}} +{"_id":{"$oid":"66f9d5ae542d90c053667568"},"ibge":3145877,"name":"Orizânia","capital":0,"ibgeState":31,"siafi":674,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5142,-42.1991]}} +{"_id":{"$oid":"66f9d5ae542d90c053667569"},"ibge":5215306,"name":"Orizona","capital":0,"ibgeState":52,"siafi":9503,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.0334,-48.2964]}} +{"_id":{"$oid":"66f9d5ae542d90c05366756a"},"ibge":3534302,"name":"Orlândia","capital":0,"ibgeState":35,"siafi":6787,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7169,-47.8852]}} +{"_id":{"$oid":"66f9d5ae542d90c05366756b"},"ibge":4211702,"name":"Orleans","capital":0,"ibgeState":42,"siafi":8229,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3487,-49.2986]}} +{"_id":{"$oid":"66f9d5ae542d90c05366756c"},"ibge":2609709,"name":"Orobó","capital":0,"ibgeState":26,"siafi":2493,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.74553,-35.5956]}} +{"_id":{"$oid":"66f9d5ae542d90c05366756d"},"ibge":2609808,"name":"Orocó","capital":0,"ibgeState":26,"siafi":2495,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.61026,-39.6026]}} +{"_id":{"$oid":"66f9d5ae542d90c05366756e"},"ibge":2309508,"name":"Orós","capital":0,"ibgeState":23,"siafi":1491,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.25182,-38.9053]}} +{"_id":{"$oid":"66f9d5ae542d90c05366756f"},"ibge":4117305,"name":"Ortigueira","capital":0,"ibgeState":41,"siafi":7727,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.2058,-50.9185]}} +{"_id":{"$oid":"66f9d5ae542d90c053667570"},"ibge":3534401,"name":"Osasco","capital":0,"ibgeState":35,"siafi":6789,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5324,-46.7916]}} +{"_id":{"$oid":"66f9d5ae542d90c053667571"},"ibge":3534500,"name":"Oscar Bressane","capital":0,"ibgeState":35,"siafi":6791,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3149,-50.2811]}} +{"_id":{"$oid":"66f9d5ae542d90c053667572"},"ibge":4313508,"name":"Osório","capital":0,"ibgeState":43,"siafi":8773,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.8881,-50.2667]}} +{"_id":{"$oid":"66f9d5ae542d90c053667573"},"ibge":3534609,"name":"Osvaldo Cruz","capital":0,"ibgeState":35,"siafi":6793,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7968,-50.8793]}} +{"_id":{"$oid":"66f9d5ae542d90c053667574"},"ibge":4211751,"name":"Otacílio Costa","capital":0,"ibgeState":42,"siafi":8397,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4789,-50.1231]}} +{"_id":{"$oid":"66f9d5ae542d90c053667575"},"ibge":1505403,"name":"Ourém","capital":0,"ibgeState":15,"siafi":507,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.54168,-47.1126]}} +{"_id":{"$oid":"66f9d5ae542d90c053667576"},"ibge":2923308,"name":"Ouriçangas","capital":0,"ibgeState":29,"siafi":3767,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.0175,-38.6166]}} +{"_id":{"$oid":"66f9d5ae542d90c053667577"},"ibge":2609907,"name":"Ouricuri","capital":0,"ibgeState":26,"siafi":2497,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.87918,-40.08]}} +{"_id":{"$oid":"66f9d5ae542d90c053667578"},"ibge":1505437,"name":"Ourilândia do Norte","capital":0,"ibgeState":15,"siafi":591,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.7529,-51.0858]}} +{"_id":{"$oid":"66f9d5ae542d90c053667579"},"ibge":3534708,"name":"Ourinhos","capital":0,"ibgeState":35,"siafi":6795,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9797,-49.8697]}} +{"_id":{"$oid":"66f9d5ae542d90c05366757a"},"ibge":4117404,"name":"Ourizona","capital":0,"ibgeState":41,"siafi":7729,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4053,-52.1964]}} +{"_id":{"$oid":"66f9d5ae542d90c05366757b"},"ibge":4211801,"name":"Ouro","capital":0,"ibgeState":42,"siafi":8231,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3379,-51.6194]}} +{"_id":{"$oid":"66f9d5ae542d90c05366757c"},"ibge":3145901,"name":"Ouro Branco","capital":0,"ibgeState":31,"siafi":4917,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5263,-43.6962]}} +{"_id":{"$oid":"66f9d5ae542d90c05366757d"},"ibge":2408508,"name":"Ouro Branco","capital":0,"ibgeState":24,"siafi":1769,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.6958,-36.9428]}} +{"_id":{"$oid":"66f9d5ae542d90c05366757e"},"ibge":2706109,"name":"Ouro Branco","capital":0,"ibgeState":27,"siafi":2821,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.15884,-37.3556]}} +{"_id":{"$oid":"66f9d5ae542d90c05366757f"},"ibge":3146008,"name":"Ouro Fino","capital":0,"ibgeState":31,"siafi":4919,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2779,-46.3716]}} +{"_id":{"$oid":"66f9d5ae542d90c053667580"},"ibge":3146107,"name":"Ouro Preto","capital":0,"ibgeState":31,"siafi":4921,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3796,-43.512]}} +{"_id":{"$oid":"66f9d5ae542d90c053667581"},"ibge":1100155,"name":"Ouro Preto do Oeste","capital":0,"ibgeState":11,"siafi":17,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.7167,-62.2565]}} +{"_id":{"$oid":"66f9d5ae542d90c053667582"},"ibge":2510600,"name":"Ouro Velho","capital":0,"ibgeState":25,"siafi":2113,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.61604,-37.1519]}} +{"_id":{"$oid":"66f9d5ae542d90c053667583"},"ibge":4211850,"name":"Ouro Verde","capital":0,"ibgeState":42,"siafi":5741,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.692,-52.3108]}} +{"_id":{"$oid":"66f9d5ae542d90c053667584"},"ibge":3534807,"name":"Ouro Verde","capital":0,"ibgeState":35,"siafi":6797,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4872,-51.7024]}} +{"_id":{"$oid":"66f9d5ae542d90c053667585"},"ibge":5215405,"name":"Ouro Verde de Goiás","capital":0,"ibgeState":52,"siafi":9505,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.2181,-49.1942]}} +{"_id":{"$oid":"66f9d5ae542d90c053667586"},"ibge":3146206,"name":"Ouro Verde de Minas","capital":0,"ibgeState":31,"siafi":4923,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.0719,-41.2734]}} +{"_id":{"$oid":"66f9d5ae542d90c053667587"},"ibge":4117453,"name":"Ouro Verde do Oeste","capital":0,"ibgeState":41,"siafi":9965,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.7933,-53.9043]}} +{"_id":{"$oid":"66f9d5ae542d90c053667588"},"ibge":3534757,"name":"Ouroeste","capital":0,"ibgeState":35,"siafi":808,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0061,-50.3768]}} +{"_id":{"$oid":"66f9d5ae542d90c053667589"},"ibge":2923357,"name":"Ourolândia","capital":0,"ibgeState":29,"siafi":3017,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.9578,-41.0756]}} +{"_id":{"$oid":"66f9d5ae542d90c05366758a"},"ibge":5215504,"name":"Ouvidor","capital":0,"ibgeState":52,"siafi":9507,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.2277,-47.8355]}} +{"_id":{"$oid":"66f9d5ae542d90c05366758b"},"ibge":3534906,"name":"Pacaembu","capital":0,"ibgeState":35,"siafi":6799,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5627,-51.2654]}} +{"_id":{"$oid":"66f9d5ae542d90c05366758c"},"ibge":1505486,"name":"Pacajá","capital":0,"ibgeState":15,"siafi":593,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.83542,-50.6399]}} +{"_id":{"$oid":"66f9d5ae542d90c05366758d"},"ibge":2309607,"name":"Pacajus","capital":0,"ibgeState":23,"siafi":1493,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.17107,-38.465]}} +{"_id":{"$oid":"66f9d5ae542d90c05366758e"},"ibge":1400456,"name":"Pacaraima","capital":0,"ibgeState":14,"siafi":34,"ddd":95,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[4.4799,-61.1477]}} +{"_id":{"$oid":"66f9d5ae542d90c05366758f"},"ibge":2309706,"name":"Pacatuba","capital":0,"ibgeState":23,"siafi":1495,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.9784,-38.6183]}} +{"_id":{"$oid":"66f9d5ae542d90c053667590"},"ibge":2804904,"name":"Pacatuba","capital":0,"ibgeState":28,"siafi":3197,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.4538,-36.6531]}} +{"_id":{"$oid":"66f9d5ae542d90c053667591"},"ibge":2107506,"name":"Paço do Lumiar","capital":0,"ibgeState":21,"siafi":849,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.51657,-44.1019]}} +{"_id":{"$oid":"66f9d5ae542d90c053667592"},"ibge":2309805,"name":"Pacoti","capital":0,"ibgeState":23,"siafi":1497,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.22492,-38.922]}} +{"_id":{"$oid":"66f9d5ae542d90c053667593"},"ibge":2309904,"name":"Pacujá","capital":0,"ibgeState":23,"siafi":1499,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.98327,-40.6989]}} +{"_id":{"$oid":"66f9d5ae542d90c053667594"},"ibge":5215603,"name":"Padre Bernardo","capital":0,"ibgeState":52,"siafi":9509,"ddd":61,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.1605,-48.2833]}} +{"_id":{"$oid":"66f9d5ae542d90c053667595"},"ibge":3146255,"name":"Padre Carvalho","capital":0,"ibgeState":31,"siafi":676,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.3646,-42.5088]}} +{"_id":{"$oid":"66f9d5ae542d90c053667596"},"ibge":2207207,"name":"Padre Marcos","capital":0,"ibgeState":22,"siafi":1143,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.35101,-40.8997]}} +{"_id":{"$oid":"66f9d5ae542d90c053667597"},"ibge":3146305,"name":"Padre Paraíso","capital":0,"ibgeState":31,"siafi":4925,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.0758,-41.4821]}} +{"_id":{"$oid":"66f9d5ae542d90c053667598"},"ibge":2207306,"name":"Paes Landim","capital":0,"ibgeState":22,"siafi":1145,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.77375,-42.2474]}} +{"_id":{"$oid":"66f9d5ae542d90c053667599"},"ibge":3146552,"name":"Pai Pedro","capital":0,"ibgeState":31,"siafi":678,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.5271,-43.07]}} +{"_id":{"$oid":"66f9d5ae542d90c05366759a"},"ibge":4211876,"name":"Paial","capital":0,"ibgeState":42,"siafi":928,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2541,-52.4975]}} +{"_id":{"$oid":"66f9d5ae542d90c05366759b"},"ibge":4117503,"name":"Paiçandu","capital":0,"ibgeState":41,"siafi":7731,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4555,-52.046]}} +{"_id":{"$oid":"66f9d5ae542d90c05366759c"},"ibge":4313607,"name":"Paim Filho","capital":0,"ibgeState":43,"siafi":8775,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7075,-51.763]}} +{"_id":{"$oid":"66f9d5ae542d90c05366759d"},"ibge":3146404,"name":"Paineiras","capital":0,"ibgeState":31,"siafi":4927,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.8993,-45.5321]}} +{"_id":{"$oid":"66f9d5ae542d90c05366759e"},"ibge":4211892,"name":"Painel","capital":0,"ibgeState":42,"siafi":930,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9234,-50.0972]}} +{"_id":{"$oid":"66f9d5ae542d90c05366759f"},"ibge":3146503,"name":"Pains","capital":0,"ibgeState":31,"siafi":4929,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3705,-45.6627]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675a0"},"ibge":3146602,"name":"Paiva","capital":0,"ibgeState":31,"siafi":4931,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2913,-43.4088]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675a1"},"ibge":2207355,"name":"Pajeú do Piauí","capital":0,"ibgeState":22,"siafi":362,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.85508,-42.8248]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675a2"},"ibge":2706208,"name":"Palestina","capital":0,"ibgeState":27,"siafi":2823,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.67493,-37.339]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675a3"},"ibge":3535002,"name":"Palestina","capital":0,"ibgeState":35,"siafi":6801,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.39,-49.4309]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675a4"},"ibge":5215652,"name":"Palestina de Goiás","capital":0,"ibgeState":52,"siafi":9737,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.7392,-51.5309]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675a5"},"ibge":1505494,"name":"Palestina do Pará","capital":0,"ibgeState":15,"siafi":379,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.74027,-48.3181]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675a6"},"ibge":2310001,"name":"Palhano","capital":0,"ibgeState":23,"siafi":1501,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.73672,-37.9655]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675a7"},"ibge":4211900,"name":"Palhoça","capital":0,"ibgeState":42,"siafi":8233,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6455,-48.6697]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675a8"},"ibge":3146701,"name":"Palma","capital":0,"ibgeState":31,"siafi":4933,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3748,-42.3123]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675a9"},"ibge":4212007,"name":"Palma Sola","capital":0,"ibgeState":42,"siafi":8235,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.3471,-53.2771]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675aa"},"ibge":2310100,"name":"Palmácia","capital":0,"ibgeState":23,"siafi":1503,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.13831,-38.8446]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675ab"},"ibge":2610004,"name":"Palmares","capital":0,"ibgeState":26,"siafi":2499,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.68423,-35.589]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675ac"},"ibge":4313656,"name":"Palmares do Sul","capital":0,"ibgeState":43,"siafi":8967,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.2535,-50.5103]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675ad"},"ibge":3535101,"name":"Palmares Paulista","capital":0,"ibgeState":35,"siafi":6803,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0854,-48.8037]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675ae"},"ibge":4117602,"name":"Palmas","capital":0,"ibgeState":41,"siafi":7733,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.4839,-51.9888]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675af"},"ibge":1721000,"name":"Palmas","capital":1,"ibgeState":17,"siafi":9733,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.24,-48.3558]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675b0"},"ibge":2923407,"name":"Palmas de Monte Alto","capital":0,"ibgeState":29,"siafi":3769,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.2676,-43.1609]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675b1"},"ibge":4117701,"name":"Palmeira","capital":0,"ibgeState":41,"siafi":7735,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4257,-50.007]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675b2"},"ibge":4212056,"name":"Palmeira","capital":0,"ibgeState":42,"siafi":932,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.583,-50.1577]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675b3"},"ibge":3535200,"name":"Palmeira d'Oeste","capital":0,"ibgeState":35,"siafi":6805,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4148,-50.7632]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675b4"},"ibge":4313706,"name":"Palmeira das Missões","capital":0,"ibgeState":43,"siafi":8777,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9007,-53.3134]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675b5"},"ibge":2207405,"name":"Palmeira do Piauí","capital":0,"ibgeState":22,"siafi":1147,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.73076,-44.2466]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675b6"},"ibge":2706307,"name":"Palmeira dos Índios","capital":0,"ibgeState":27,"siafi":2825,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.40568,-36.6328]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675b7"},"ibge":2207504,"name":"Palmeirais","capital":0,"ibgeState":22,"siafi":1149,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.97086,-43.056]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675b8"},"ibge":2107605,"name":"Palmeirândia","capital":0,"ibgeState":21,"siafi":851,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.64433,-44.8933]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675b9"},"ibge":1715705,"name":"Palmeirante","capital":0,"ibgeState":17,"siafi":189,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.84786,-47.9242]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675ba"},"ibge":2923506,"name":"Palmeiras","capital":0,"ibgeState":29,"siafi":3771,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.5059,-41.5809]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675bb"},"ibge":5215702,"name":"Palmeiras de Goiás","capital":0,"ibgeState":52,"siafi":9511,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.8044,-49.924]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675bc"},"ibge":1713809,"name":"Palmeiras do Tocantins","capital":0,"ibgeState":17,"siafi":185,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.61658,-47.5464]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675bd"},"ibge":2610103,"name":"Palmeirina","capital":0,"ibgeState":26,"siafi":2501,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.0109,-36.3242]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675be"},"ibge":1715754,"name":"Palmeirópolis","capital":0,"ibgeState":17,"siafi":9649,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.0447,-48.4026]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675bf"},"ibge":5215801,"name":"Palmelo","capital":0,"ibgeState":52,"siafi":9513,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.3258,-48.426]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675c0"},"ibge":5215900,"name":"Palminópolis","capital":0,"ibgeState":52,"siafi":9515,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.7924,-50.1652]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675c1"},"ibge":3535309,"name":"Palmital","capital":0,"ibgeState":35,"siafi":6807,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7858,-50.218]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675c2"},"ibge":4117800,"name":"Palmital","capital":0,"ibgeState":41,"siafi":7737,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.8853,-52.2029]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675c3"},"ibge":4313805,"name":"Palmitinho","capital":0,"ibgeState":43,"siafi":8779,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3596,-53.558]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675c4"},"ibge":4212106,"name":"Palmitos","capital":0,"ibgeState":42,"siafi":8237,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0702,-53.1586]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675c5"},"ibge":3146750,"name":"Palmópolis","capital":0,"ibgeState":31,"siafi":2661,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.7364,-40.4296]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675c6"},"ibge":4117909,"name":"Palotina","capital":0,"ibgeState":41,"siafi":7739,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.2868,-53.8404]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675c7"},"ibge":5216007,"name":"Panamá","capital":0,"ibgeState":52,"siafi":9517,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.1783,-49.355]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675c8"},"ibge":4313904,"name":"Panambi","capital":0,"ibgeState":43,"siafi":8781,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.2833,-53.5023]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675c9"},"ibge":3204005,"name":"Pancas","capital":0,"ibgeState":32,"siafi":5679,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2229,-40.8534]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675ca"},"ibge":2610202,"name":"Panelas","capital":0,"ibgeState":26,"siafi":2503,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.66121,-36.0125]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675cb"},"ibge":3535408,"name":"Panorama","capital":0,"ibgeState":35,"siafi":6809,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.354,-51.8562]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675cc"},"ibge":4313953,"name":"Pantano Grande","capital":0,"ibgeState":43,"siafi":7375,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.1902,-52.3729]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675cd"},"ibge":2706406,"name":"Pão de Açúcar","capital":0,"ibgeState":27,"siafi":2827,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.74032,-37.4403]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675ce"},"ibge":3146909,"name":"Papagaios","capital":0,"ibgeState":31,"siafi":4937,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.4419,-44.7468]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675cf"},"ibge":4212205,"name":"Papanduva","capital":0,"ibgeState":42,"siafi":8239,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.3777,-50.1419]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675d0"},"ibge":2207553,"name":"Paquetá","capital":0,"ibgeState":22,"siafi":364,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.10303,-41.7]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675d1"},"ibge":3147105,"name":"Pará de Minas","capital":0,"ibgeState":31,"siafi":4941,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8534,-44.6114]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675d2"},"ibge":3303609,"name":"Paracambi","capital":0,"ibgeState":33,"siafi":5871,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6078,-43.7108]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675d3"},"ibge":3147006,"name":"Paracatu","capital":0,"ibgeState":31,"siafi":4939,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.2252,-46.8711]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675d4"},"ibge":2310209,"name":"Paracuru","capital":0,"ibgeState":23,"siafi":1505,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.41436,-39.03]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675d5"},"ibge":1505502,"name":"Paragominas","capital":0,"ibgeState":15,"siafi":509,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.00212,-47.3527]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675d6"},"ibge":3147204,"name":"Paraguaçu","capital":0,"ibgeState":31,"siafi":4943,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5465,-45.7374]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675d7"},"ibge":3535507,"name":"Paraguaçu Paulista","capital":0,"ibgeState":35,"siafi":6811,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4114,-50.5732]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675d8"},"ibge":4314001,"name":"Paraí","capital":0,"ibgeState":43,"siafi":8783,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5964,-51.7896]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675d9"},"ibge":3303708,"name":"Paraíba do Sul","capital":0,"ibgeState":33,"siafi":5873,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1585,-43.304]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675da"},"ibge":2107704,"name":"Paraibano","capital":0,"ibgeState":21,"siafi":853,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.4264,-43.9792]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675db"},"ibge":3535606,"name":"Paraibuna","capital":0,"ibgeState":35,"siafi":6813,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3872,-45.6639]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675dc"},"ibge":2310258,"name":"Paraipaba","capital":0,"ibgeState":23,"siafi":1599,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.43799,-39.1479]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675dd"},"ibge":3535705,"name":"Paraíso","capital":0,"ibgeState":35,"siafi":6815,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0159,-48.7761]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675de"},"ibge":4212239,"name":"Paraíso","capital":0,"ibgeState":42,"siafi":5747,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.62,-53.6716]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675df"},"ibge":5006275,"name":"Paraíso das Águas","capital":0,"ibgeState":50,"siafi":1196,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-19.0216,-53.0116]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675e0"},"ibge":4118006,"name":"Paraíso do Norte","capital":0,"ibgeState":41,"siafi":7741,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2824,-52.6054]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675e1"},"ibge":4314027,"name":"Paraíso do Sul","capital":0,"ibgeState":43,"siafi":7373,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6717,-53.144]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675e2"},"ibge":1716109,"name":"Paraíso do Tocantins","capital":0,"ibgeState":17,"siafi":9519,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.175,-48.8823]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675e3"},"ibge":3147303,"name":"Paraisópolis","capital":0,"ibgeState":31,"siafi":4945,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5539,-45.7803]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675e4"},"ibge":2310308,"name":"Parambu","capital":0,"ibgeState":23,"siafi":1507,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.20768,-40.6905]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675e5"},"ibge":2923605,"name":"Paramirim","capital":0,"ibgeState":29,"siafi":3773,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.4388,-42.2395]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675e6"},"ibge":2310407,"name":"Paramoti","capital":0,"ibgeState":23,"siafi":1509,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.08815,-39.2417]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675e7"},"ibge":1716208,"name":"Paranã","capital":0,"ibgeState":17,"siafi":9521,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.6167,-47.8734]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675e8"},"ibge":2408607,"name":"Paraná","capital":0,"ibgeState":24,"siafi":1771,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.47565,-38.3057]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675e9"},"ibge":4118105,"name":"Paranacity","capital":0,"ibgeState":41,"siafi":7743,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9297,-52.1549]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675ea"},"ibge":4118204,"name":"Paranaguá","capital":0,"ibgeState":41,"siafi":7745,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.5161,-48.5225]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675eb"},"ibge":5006309,"name":"Paranaíba","capital":0,"ibgeState":50,"siafi":9125,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-19.6746,-51.1909]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675ec"},"ibge":5216304,"name":"Paranaiguara","capital":0,"ibgeState":52,"siafi":9455,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.9141,-50.6539]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675ed"},"ibge":5106299,"name":"Paranaíta","capital":0,"ibgeState":51,"siafi":9885,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-9.65835,-56.4786]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675ee"},"ibge":3535804,"name":"Paranapanema","capital":0,"ibgeState":35,"siafi":6817,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3862,-48.7214]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675ef"},"ibge":4118303,"name":"Paranapoema","capital":0,"ibgeState":41,"siafi":7747,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6412,-52.0905]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675f0"},"ibge":3535903,"name":"Paranapuã","capital":0,"ibgeState":35,"siafi":6819,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1048,-50.5886]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675f1"},"ibge":2610301,"name":"Paranatama","capital":0,"ibgeState":26,"siafi":2505,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.91875,-36.6549]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675f2"},"ibge":5106307,"name":"Paranatinga","capital":0,"ibgeState":51,"siafi":8983,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.4265,-54.0524]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675f3"},"ibge":4118402,"name":"Paranavaí","capital":0,"ibgeState":41,"siafi":7749,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0816,-52.4617]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675f4"},"ibge":5006358,"name":"Paranhos","capital":0,"ibgeState":50,"siafi":9739,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-23.8911,-55.429]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675f5"},"ibge":3147402,"name":"Paraopeba","capital":0,"ibgeState":31,"siafi":4947,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2732,-44.4044]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675f6"},"ibge":3536000,"name":"Parapuã","capital":0,"ibgeState":35,"siafi":6821,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7792,-50.7949]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675f7"},"ibge":2510659,"name":"Parari","capital":0,"ibgeState":25,"siafi":494,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.30975,-36.6522]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675f8"},"ibge":2923704,"name":"Paratinga","capital":0,"ibgeState":29,"siafi":3775,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.687,-43.1798]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675f9"},"ibge":3303807,"name":"Paraty","capital":0,"ibgeState":33,"siafi":5875,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2221,-44.7175]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675fa"},"ibge":2408706,"name":"Paraú","capital":0,"ibgeState":24,"siafi":1773,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.76893,-37.1032]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675fb"},"ibge":1505536,"name":"Parauapebas","capital":0,"ibgeState":15,"siafi":595,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.06781,-49.9037]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675fc"},"ibge":5216403,"name":"Paraúna","capital":0,"ibgeState":52,"siafi":9523,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.9463,-50.4484]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675fd"},"ibge":2408805,"name":"Parazinho","capital":0,"ibgeState":24,"siafi":1775,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.22276,-35.8398]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675fe"},"ibge":3536109,"name":"Pardinho","capital":0,"ibgeState":35,"siafi":6823,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0841,-48.3679]}} +{"_id":{"$oid":"66f9d5ae542d90c0536675ff"},"ibge":4314035,"name":"Pareci Novo","capital":0,"ibgeState":43,"siafi":6041,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6365,-51.3974]}} +{"_id":{"$oid":"66f9d5ae542d90c053667600"},"ibge":1101450,"name":"Parecis","capital":0,"ibgeState":11,"siafi":12,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.1754,-61.6032]}} +{"_id":{"$oid":"66f9d5ae542d90c053667601"},"ibge":2408904,"name":"Parelhas","capital":0,"ibgeState":24,"siafi":1777,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.68491,-36.6566]}} +{"_id":{"$oid":"66f9d5ae542d90c053667602"},"ibge":2706422,"name":"Pariconha","capital":0,"ibgeState":27,"siafi":2645,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.25634,-37.9988]}} +{"_id":{"$oid":"66f9d5ae542d90c053667603"},"ibge":1303403,"name":"Parintins","capital":0,"ibgeState":13,"siafi":269,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-2.63741,-56.729]}} +{"_id":{"$oid":"66f9d5ae542d90c053667604"},"ibge":2923803,"name":"Paripiranga","capital":0,"ibgeState":29,"siafi":3777,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.6859,-37.8626]}} +{"_id":{"$oid":"66f9d5ae542d90c053667605"},"ibge":2706448,"name":"Paripueira","capital":0,"ibgeState":27,"siafi":2641,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.46313,-35.552]}} +{"_id":{"$oid":"66f9d5ae542d90c053667606"},"ibge":3536208,"name":"Pariquera-Açu","capital":0,"ibgeState":35,"siafi":6825,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.7147,-47.8742]}} +{"_id":{"$oid":"66f9d5ae542d90c053667607"},"ibge":3536257,"name":"Parisi","capital":0,"ibgeState":35,"siafi":2989,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3034,-50.0163]}} +{"_id":{"$oid":"66f9d5ae542d90c053667608"},"ibge":2207603,"name":"Parnaguá","capital":0,"ibgeState":22,"siafi":1151,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.2166,-44.63]}} +{"_id":{"$oid":"66f9d5ae542d90c053667609"},"ibge":2207702,"name":"Parnaíba","capital":0,"ibgeState":22,"siafi":1153,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.90585,-41.7754]}} +{"_id":{"$oid":"66f9d5ae542d90c05366760a"},"ibge":2403251,"name":"Parnamirim","capital":0,"ibgeState":24,"siafi":1779,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.91116,-35.271]}} +{"_id":{"$oid":"66f9d5ae542d90c05366760b"},"ibge":2610400,"name":"Parnamirim","capital":0,"ibgeState":26,"siafi":2507,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.08729,-39.5795]}} +{"_id":{"$oid":"66f9d5ae542d90c05366760c"},"ibge":2107803,"name":"Parnarama","capital":0,"ibgeState":21,"siafi":855,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.67365,-43.1011]}} +{"_id":{"$oid":"66f9d5ae542d90c05366760d"},"ibge":4314050,"name":"Parobé","capital":0,"ibgeState":43,"siafi":9825,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6243,-50.8312]}} +{"_id":{"$oid":"66f9d5ae542d90c05366760e"},"ibge":2409100,"name":"Passa e Fica","capital":0,"ibgeState":24,"siafi":1781,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.43018,-35.6442]}} +{"_id":{"$oid":"66f9d5ae542d90c05366760f"},"ibge":3147600,"name":"Passa Quatro","capital":0,"ibgeState":31,"siafi":4951,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3871,-44.9709]}} +{"_id":{"$oid":"66f9d5ae542d90c053667610"},"ibge":4314068,"name":"Passa Sete","capital":0,"ibgeState":43,"siafi":1010,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4577,-52.9599]}} +{"_id":{"$oid":"66f9d5ae542d90c053667611"},"ibge":3147709,"name":"Passa Tempo","capital":0,"ibgeState":31,"siafi":4953,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6539,-44.4926]}} +{"_id":{"$oid":"66f9d5ae542d90c053667612"},"ibge":3147808,"name":"Passa-Vinte","capital":0,"ibgeState":31,"siafi":4955,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2097,-44.2344]}} +{"_id":{"$oid":"66f9d5ae542d90c053667613"},"ibge":3147501,"name":"Passabém","capital":0,"ibgeState":31,"siafi":4949,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.3509,-43.1383]}} +{"_id":{"$oid":"66f9d5ae542d90c053667614"},"ibge":2409209,"name":"Passagem","capital":0,"ibgeState":24,"siafi":1783,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.27268,-35.37]}} +{"_id":{"$oid":"66f9d5ae542d90c053667615"},"ibge":2510709,"name":"Passagem","capital":0,"ibgeState":25,"siafi":2115,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.13467,-37.0433]}} +{"_id":{"$oid":"66f9d5ae542d90c053667616"},"ibge":2107902,"name":"Passagem Franca","capital":0,"ibgeState":21,"siafi":857,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.17745,-43.7755]}} +{"_id":{"$oid":"66f9d5ae542d90c053667617"},"ibge":2207751,"name":"Passagem Franca do Piauí","capital":0,"ibgeState":22,"siafi":1293,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.86036,-42.4436]}} +{"_id":{"$oid":"66f9d5ae542d90c053667618"},"ibge":2610509,"name":"Passira","capital":0,"ibgeState":26,"siafi":2509,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.9971,-35.5813]}} +{"_id":{"$oid":"66f9d5ae542d90c053667619"},"ibge":2706505,"name":"Passo de Camaragibe","capital":0,"ibgeState":27,"siafi":2829,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.24511,-35.4745]}} +{"_id":{"$oid":"66f9d5ae542d90c05366761a"},"ibge":4212254,"name":"Passo de Torres","capital":0,"ibgeState":42,"siafi":5541,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3099,-49.722]}} +{"_id":{"$oid":"66f9d5ae542d90c05366761b"},"ibge":4314076,"name":"Passo do Sobrado","capital":0,"ibgeState":43,"siafi":5765,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.748,-52.2748]}} +{"_id":{"$oid":"66f9d5ae542d90c05366761c"},"ibge":4314100,"name":"Passo Fundo","capital":0,"ibgeState":43,"siafi":8785,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.2576,-52.4091]}} +{"_id":{"$oid":"66f9d5ae542d90c05366761d"},"ibge":3147907,"name":"Passos","capital":0,"ibgeState":31,"siafi":4957,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7193,-46.609]}} +{"_id":{"$oid":"66f9d5ae542d90c05366761e"},"ibge":4212270,"name":"Passos Maia","capital":0,"ibgeState":42,"siafi":5743,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7829,-52.0568]}} +{"_id":{"$oid":"66f9d5ae542d90c05366761f"},"ibge":2108009,"name":"Pastos Bons","capital":0,"ibgeState":21,"siafi":859,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.60296,-44.0745]}} +{"_id":{"$oid":"66f9d5ae542d90c053667620"},"ibge":3147956,"name":"Patis","capital":0,"ibgeState":31,"siafi":680,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0773,-44.0787]}} +{"_id":{"$oid":"66f9d5ae542d90c053667621"},"ibge":4118451,"name":"Pato Bragado","capital":0,"ibgeState":41,"siafi":5533,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.6271,-54.2265]}} +{"_id":{"$oid":"66f9d5ae542d90c053667622"},"ibge":4118501,"name":"Pato Branco","capital":0,"ibgeState":41,"siafi":7751,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.2292,-52.6706]}} +{"_id":{"$oid":"66f9d5ae542d90c053667623"},"ibge":2510808,"name":"Patos","capital":0,"ibgeState":25,"siafi":2117,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.01743,-37.2747]}} +{"_id":{"$oid":"66f9d5ae542d90c053667624"},"ibge":3148004,"name":"Patos de Minas","capital":0,"ibgeState":31,"siafi":4959,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5699,-46.5013]}} +{"_id":{"$oid":"66f9d5ae542d90c053667625"},"ibge":2207777,"name":"Patos do Piauí","capital":0,"ibgeState":22,"siafi":2277,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.67231,-41.2408]}} +{"_id":{"$oid":"66f9d5ae542d90c053667626"},"ibge":3148103,"name":"Patrocínio","capital":0,"ibgeState":31,"siafi":4961,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.9379,-46.9934]}} +{"_id":{"$oid":"66f9d5ae542d90c053667627"},"ibge":3148202,"name":"Patrocínio do Muriaé","capital":0,"ibgeState":31,"siafi":4963,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1544,-42.2125]}} +{"_id":{"$oid":"66f9d5ae542d90c053667628"},"ibge":3536307,"name":"Patrocínio Paulista","capital":0,"ibgeState":35,"siafi":6827,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6384,-47.2801]}} +{"_id":{"$oid":"66f9d5ae542d90c053667629"},"ibge":2409308,"name":"Patu","capital":0,"ibgeState":24,"siafi":1785,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.10656,-37.6356]}} +{"_id":{"$oid":"66f9d5ae542d90c05366762a"},"ibge":3303856,"name":"Paty do Alferes","capital":0,"ibgeState":33,"siafi":6005,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4309,-43.4285]}} +{"_id":{"$oid":"66f9d5ae542d90c05366762b"},"ibge":2923902,"name":"Pau Brasil","capital":0,"ibgeState":29,"siafi":3779,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.4572,-39.6458]}} +{"_id":{"$oid":"66f9d5ae542d90c05366762c"},"ibge":1505551,"name":"Pau d'Arco","capital":0,"ibgeState":15,"siafi":387,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.59772,-46.9268]}} +{"_id":{"$oid":"66f9d5ae542d90c05366762d"},"ibge":1716307,"name":"Pau D'Arco","capital":0,"ibgeState":17,"siafi":191,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.53919,-49.367]}} +{"_id":{"$oid":"66f9d5ae542d90c05366762e"},"ibge":2207793,"name":"Pau D'Arco do Piauí","capital":0,"ibgeState":22,"siafi":1104,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.26072,-42.3908]}} +{"_id":{"$oid":"66f9d5ae542d90c05366762f"},"ibge":2409407,"name":"Pau dos Ferros","capital":0,"ibgeState":24,"siafi":1787,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.10498,-38.2077]}} +{"_id":{"$oid":"66f9d5ae542d90c053667630"},"ibge":2610608,"name":"Paudalho","capital":0,"ibgeState":26,"siafi":2511,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.90287,-35.1716]}} +{"_id":{"$oid":"66f9d5ae542d90c053667631"},"ibge":1303502,"name":"Pauini","capital":0,"ibgeState":13,"siafi":271,"ddd":97,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-7.71311,-66.992]}} +{"_id":{"$oid":"66f9d5ae542d90c053667632"},"ibge":3148301,"name":"Paula Cândido","capital":0,"ibgeState":31,"siafi":4965,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8754,-42.9752]}} +{"_id":{"$oid":"66f9d5ae542d90c053667633"},"ibge":4118600,"name":"Paula Freitas","capital":0,"ibgeState":41,"siafi":7753,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.2105,-50.931]}} +{"_id":{"$oid":"66f9d5ae542d90c053667634"},"ibge":3536406,"name":"Paulicéia","capital":0,"ibgeState":35,"siafi":6829,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3153,-51.8321]}} +{"_id":{"$oid":"66f9d5ae542d90c053667635"},"ibge":3536505,"name":"Paulínia","capital":0,"ibgeState":35,"siafi":6831,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7542,-47.1488]}} +{"_id":{"$oid":"66f9d5ae542d90c053667636"},"ibge":2108058,"name":"Paulino Neves","capital":0,"ibgeState":21,"siafi":206,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.72094,-42.5258]}} +{"_id":{"$oid":"66f9d5ae542d90c053667637"},"ibge":2510907,"name":"Paulista","capital":0,"ibgeState":25,"siafi":2119,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.59138,-37.6185]}} +{"_id":{"$oid":"66f9d5ae542d90c053667638"},"ibge":2610707,"name":"Paulista","capital":0,"ibgeState":26,"siafi":2513,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.93401,-34.8684]}} +{"_id":{"$oid":"66f9d5ae542d90c053667639"},"ibge":2207801,"name":"Paulistana","capital":0,"ibgeState":22,"siafi":1155,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.13436,-41.1431]}} +{"_id":{"$oid":"66f9d5ae542d90c05366763a"},"ibge":3536570,"name":"Paulistânia","capital":0,"ibgeState":35,"siafi":810,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5768,-49.4008]}} +{"_id":{"$oid":"66f9d5ae542d90c05366763b"},"ibge":3148400,"name":"Paulistas","capital":0,"ibgeState":31,"siafi":4967,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4276,-42.8628]}} +{"_id":{"$oid":"66f9d5ae542d90c05366763c"},"ibge":2924009,"name":"Paulo Afonso","capital":0,"ibgeState":29,"siafi":3781,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.3983,-38.2216]}} +{"_id":{"$oid":"66f9d5ae542d90c05366763d"},"ibge":4314134,"name":"Paulo Bento","capital":0,"ibgeState":43,"siafi":1154,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7051,-52.4169]}} +{"_id":{"$oid":"66f9d5ae542d90c05366763e"},"ibge":3536604,"name":"Paulo de Faria","capital":0,"ibgeState":35,"siafi":6833,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0296,-49.4]}} +{"_id":{"$oid":"66f9d5ae542d90c05366763f"},"ibge":4118709,"name":"Paulo Frontin","capital":0,"ibgeState":41,"siafi":7755,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.0466,-50.8304]}} +{"_id":{"$oid":"66f9d5ae542d90c053667640"},"ibge":2706604,"name":"Paulo Jacinto","capital":0,"ibgeState":27,"siafi":2831,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.36792,-36.3672]}} +{"_id":{"$oid":"66f9d5ae542d90c053667641"},"ibge":4212304,"name":"Paulo Lopes","capital":0,"ibgeState":42,"siafi":8241,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9607,-48.6864]}} +{"_id":{"$oid":"66f9d5ae542d90c053667642"},"ibge":2108108,"name":"Paulo Ramos","capital":0,"ibgeState":21,"siafi":959,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.44485,-45.2398]}} +{"_id":{"$oid":"66f9d5ae542d90c053667643"},"ibge":3148509,"name":"Pavão","capital":0,"ibgeState":31,"siafi":4969,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.4267,-41.0035]}} +{"_id":{"$oid":"66f9d5ae542d90c053667644"},"ibge":4314159,"name":"Paverama","capital":0,"ibgeState":43,"siafi":7371,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5486,-51.7339]}} +{"_id":{"$oid":"66f9d5ae542d90c053667645"},"ibge":2207850,"name":"Pavussu","capital":0,"ibgeState":22,"siafi":366,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.96059,-43.2284]}} +{"_id":{"$oid":"66f9d5ae542d90c053667646"},"ibge":2924058,"name":"Pé de Serra","capital":0,"ibgeState":29,"siafi":3981,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.8313,-39.611]}} +{"_id":{"$oid":"66f9d5ae542d90c053667647"},"ibge":4118808,"name":"Peabiru","capital":0,"ibgeState":41,"siafi":7757,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.914,-52.3431]}} +{"_id":{"$oid":"66f9d5ae542d90c053667648"},"ibge":3148608,"name":"Peçanha","capital":0,"ibgeState":31,"siafi":4971,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5441,-42.5583]}} +{"_id":{"$oid":"66f9d5ae542d90c053667649"},"ibge":3536703,"name":"Pederneiras","capital":0,"ibgeState":35,"siafi":6835,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3511,-48.7781]}} +{"_id":{"$oid":"66f9d5ae542d90c05366764a"},"ibge":2610806,"name":"Pedra","capital":0,"ibgeState":26,"siafi":2515,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.49641,-36.94]}} +{"_id":{"$oid":"66f9d5ae542d90c05366764b"},"ibge":3148707,"name":"Pedra Azul","capital":0,"ibgeState":31,"siafi":4973,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0086,-41.2909]}} +{"_id":{"$oid":"66f9d5ae542d90c05366764c"},"ibge":3536802,"name":"Pedra Bela","capital":0,"ibgeState":35,"siafi":6837,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7902,-46.4455]}} +{"_id":{"$oid":"66f9d5ae542d90c05366764d"},"ibge":3148756,"name":"Pedra Bonita","capital":0,"ibgeState":31,"siafi":682,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5219,-42.3304]}} +{"_id":{"$oid":"66f9d5ae542d90c05366764e"},"ibge":2511004,"name":"Pedra Branca","capital":0,"ibgeState":25,"siafi":2121,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.42169,-38.0689]}} +{"_id":{"$oid":"66f9d5ae542d90c05366764f"},"ibge":2310506,"name":"Pedra Branca","capital":0,"ibgeState":23,"siafi":1511,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.45341,-39.7078]}} +{"_id":{"$oid":"66f9d5ae542d90c053667650"},"ibge":1600154,"name":"Pedra Branca do Amapari","capital":0,"ibgeState":16,"siafi":663,"ddd":96,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[0.777424,-51.9503]}} +{"_id":{"$oid":"66f9d5ae542d90c053667651"},"ibge":3148806,"name":"Pedra do Anta","capital":0,"ibgeState":31,"siafi":4975,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5968,-42.7123]}} +{"_id":{"$oid":"66f9d5ae542d90c053667652"},"ibge":3148905,"name":"Pedra do Indaiá","capital":0,"ibgeState":31,"siafi":4977,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2563,-45.2107]}} +{"_id":{"$oid":"66f9d5ae542d90c053667653"},"ibge":3149002,"name":"Pedra Dourada","capital":0,"ibgeState":31,"siafi":4979,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8266,-42.1515]}} +{"_id":{"$oid":"66f9d5ae542d90c053667654"},"ibge":2409506,"name":"Pedra Grande","capital":0,"ibgeState":24,"siafi":1789,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.14988,-35.876]}} +{"_id":{"$oid":"66f9d5ae542d90c053667655"},"ibge":2511103,"name":"Pedra Lavrada","capital":0,"ibgeState":25,"siafi":2123,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.74997,-36.4758]}} +{"_id":{"$oid":"66f9d5ae542d90c053667656"},"ibge":2805000,"name":"Pedra Mole","capital":0,"ibgeState":28,"siafi":3199,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.6134,-37.6922]}} +{"_id":{"$oid":"66f9d5ae542d90c053667657"},"ibge":2409605,"name":"Pedra Preta","capital":0,"ibgeState":24,"siafi":1791,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.57352,-36.1084]}} +{"_id":{"$oid":"66f9d5ae542d90c053667658"},"ibge":5106372,"name":"Pedra Preta","capital":0,"ibgeState":51,"siafi":9181,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-16.6245,-54.4722]}} +{"_id":{"$oid":"66f9d5ae542d90c053667659"},"ibge":3149101,"name":"Pedralva","capital":0,"ibgeState":31,"siafi":4981,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2386,-45.4654]}} +{"_id":{"$oid":"66f9d5ae542d90c05366765a"},"ibge":3536901,"name":"Pedranópolis","capital":0,"ibgeState":35,"siafi":6839,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2474,-50.1129]}} +{"_id":{"$oid":"66f9d5ae542d90c05366765b"},"ibge":2924108,"name":"Pedrão","capital":0,"ibgeState":29,"siafi":3783,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.1491,-38.6487]}} +{"_id":{"$oid":"66f9d5ae542d90c05366765c"},"ibge":4314175,"name":"Pedras Altas","capital":0,"ibgeState":43,"siafi":1156,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.7365,-53.5814]}} +{"_id":{"$oid":"66f9d5ae542d90c05366765d"},"ibge":2511202,"name":"Pedras de Fogo","capital":0,"ibgeState":25,"siafi":2125,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.39107,-35.1065]}} +{"_id":{"$oid":"66f9d5ae542d90c05366765e"},"ibge":3149150,"name":"Pedras de Maria da Cruz","capital":0,"ibgeState":31,"siafi":2899,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.6032,-44.391]}} +{"_id":{"$oid":"66f9d5ae542d90c05366765f"},"ibge":4212403,"name":"Pedras Grandes","capital":0,"ibgeState":42,"siafi":8243,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.4339,-49.1949]}} +{"_id":{"$oid":"66f9d5ae542d90c053667660"},"ibge":3537008,"name":"Pedregulho","capital":0,"ibgeState":35,"siafi":6841,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2535,-47.4775]}} +{"_id":{"$oid":"66f9d5ae542d90c053667661"},"ibge":3537107,"name":"Pedreira","capital":0,"ibgeState":35,"siafi":6843,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7413,-46.8948]}} +{"_id":{"$oid":"66f9d5ae542d90c053667662"},"ibge":2108207,"name":"Pedreiras","capital":0,"ibgeState":21,"siafi":861,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.56482,-44.6006]}} +{"_id":{"$oid":"66f9d5ae542d90c053667663"},"ibge":2805109,"name":"Pedrinhas","capital":0,"ibgeState":28,"siafi":3201,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.1902,-37.6775]}} +{"_id":{"$oid":"66f9d5ae542d90c053667664"},"ibge":3537156,"name":"Pedrinhas Paulista","capital":0,"ibgeState":35,"siafi":2963,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8174,-50.7933]}} +{"_id":{"$oid":"66f9d5ae542d90c053667665"},"ibge":3149200,"name":"Pedrinópolis","capital":0,"ibgeState":31,"siafi":4983,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2241,-47.4579]}} +{"_id":{"$oid":"66f9d5ae542d90c053667666"},"ibge":1716505,"name":"Pedro Afonso","capital":0,"ibgeState":17,"siafi":9525,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.97034,-48.1729]}} +{"_id":{"$oid":"66f9d5ae542d90c053667667"},"ibge":2924207,"name":"Pedro Alexandre","capital":0,"ibgeState":29,"siafi":3785,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.012,-37.8932]}} +{"_id":{"$oid":"66f9d5ae542d90c053667668"},"ibge":2409704,"name":"Pedro Avelino","capital":0,"ibgeState":24,"siafi":1793,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.5161,-36.3867]}} +{"_id":{"$oid":"66f9d5ae542d90c053667669"},"ibge":3204054,"name":"Pedro Canário","capital":0,"ibgeState":32,"siafi":5715,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.3004,-39.9574]}} +{"_id":{"$oid":"66f9d5ae542d90c05366766a"},"ibge":3537206,"name":"Pedro de Toledo","capital":0,"ibgeState":35,"siafi":6845,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.2764,-47.2354]}} +{"_id":{"$oid":"66f9d5ae542d90c05366766b"},"ibge":2108256,"name":"Pedro do Rosário","capital":0,"ibgeState":21,"siafi":208,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.97272,-45.3493]}} +{"_id":{"$oid":"66f9d5ae542d90c05366766c"},"ibge":5006408,"name":"Pedro Gomes","capital":0,"ibgeState":50,"siafi":9127,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-18.0996,-54.5507]}} +{"_id":{"$oid":"66f9d5ae542d90c05366766d"},"ibge":2207900,"name":"Pedro II","capital":0,"ibgeState":22,"siafi":1157,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.42585,-41.4482]}} +{"_id":{"$oid":"66f9d5ae542d90c05366766e"},"ibge":2207934,"name":"Pedro Laurentino","capital":0,"ibgeState":22,"siafi":368,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.06807,-42.2847]}} +{"_id":{"$oid":"66f9d5ae542d90c05366766f"},"ibge":3149309,"name":"Pedro Leopoldo","capital":0,"ibgeState":31,"siafi":4985,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6308,-44.0383]}} +{"_id":{"$oid":"66f9d5ae542d90c053667670"},"ibge":4314209,"name":"Pedro Osório","capital":0,"ibgeState":43,"siafi":8787,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.8642,-52.8184]}} +{"_id":{"$oid":"66f9d5ae542d90c053667671"},"ibge":2512721,"name":"Pedro Régis","capital":0,"ibgeState":25,"siafi":500,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.63323,-35.2966]}} +{"_id":{"$oid":"66f9d5ae542d90c053667672"},"ibge":3149408,"name":"Pedro Teixeira","capital":0,"ibgeState":31,"siafi":4987,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7076,-43.743]}} +{"_id":{"$oid":"66f9d5ae542d90c053667673"},"ibge":2409803,"name":"Pedro Velho","capital":0,"ibgeState":24,"siafi":1795,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.4356,-35.2195]}} +{"_id":{"$oid":"66f9d5ae542d90c053667674"},"ibge":1716604,"name":"Peixe","capital":0,"ibgeState":17,"siafi":9527,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.0254,-48.5395]}} +{"_id":{"$oid":"66f9d5ae542d90c053667675"},"ibge":1505601,"name":"Peixe-Boi","capital":0,"ibgeState":15,"siafi":511,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.19382,-47.324]}} +{"_id":{"$oid":"66f9d5ae542d90c053667676"},"ibge":5106422,"name":"Peixoto de Azevedo","capital":0,"ibgeState":51,"siafi":9891,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.2262,-54.9794]}} +{"_id":{"$oid":"66f9d5ae542d90c053667677"},"ibge":4314308,"name":"Pejuçara","capital":0,"ibgeState":43,"siafi":8789,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.4283,-53.6579]}} +{"_id":{"$oid":"66f9d5ae542d90c053667678"},"ibge":4314407,"name":"Pelotas","capital":0,"ibgeState":43,"siafi":8791,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.7649,-52.3371]}} +{"_id":{"$oid":"66f9d5ae542d90c053667679"},"ibge":2310605,"name":"Penaforte","capital":0,"ibgeState":23,"siafi":1513,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.82163,-39.0707]}} +{"_id":{"$oid":"66f9d5ae542d90c05366767a"},"ibge":2108306,"name":"Penalva","capital":0,"ibgeState":21,"siafi":863,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.27674,-45.1768]}} +{"_id":{"$oid":"66f9d5ae542d90c05366767b"},"ibge":3537305,"name":"Penápolis","capital":0,"ibgeState":35,"siafi":6847,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4148,-50.0769]}} +{"_id":{"$oid":"66f9d5ae542d90c05366767c"},"ibge":2409902,"name":"Pendências","capital":0,"ibgeState":24,"siafi":1797,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.2564,-36.7095]}} +{"_id":{"$oid":"66f9d5ae542d90c05366767d"},"ibge":2706703,"name":"Penedo","capital":0,"ibgeState":27,"siafi":2833,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.2874,-36.5819]}} +{"_id":{"$oid":"66f9d5ae542d90c05366767e"},"ibge":4212502,"name":"Penha","capital":0,"ibgeState":42,"siafi":8245,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7754,-48.6465]}} +{"_id":{"$oid":"66f9d5ae542d90c05366767f"},"ibge":2310704,"name":"Pentecoste","capital":0,"ibgeState":23,"siafi":1515,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.79274,-39.2692]}} +{"_id":{"$oid":"66f9d5ae542d90c053667680"},"ibge":3149507,"name":"Pequeri","capital":0,"ibgeState":31,"siafi":4989,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8341,-43.1145]}} +{"_id":{"$oid":"66f9d5ae542d90c053667681"},"ibge":3149606,"name":"Pequi","capital":0,"ibgeState":31,"siafi":4991,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6284,-44.6604]}} +{"_id":{"$oid":"66f9d5ae542d90c053667682"},"ibge":1716653,"name":"Pequizeiro","capital":0,"ibgeState":17,"siafi":9705,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.5932,-48.9327]}} +{"_id":{"$oid":"66f9d5ae542d90c053667683"},"ibge":3149705,"name":"Perdigão","capital":0,"ibgeState":31,"siafi":4993,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9411,-45.078]}} +{"_id":{"$oid":"66f9d5ae542d90c053667684"},"ibge":3149804,"name":"Perdizes","capital":0,"ibgeState":31,"siafi":4995,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.3434,-47.2963]}} +{"_id":{"$oid":"66f9d5ae542d90c053667685"},"ibge":3149903,"name":"Perdões","capital":0,"ibgeState":31,"siafi":4997,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0932,-45.0896]}} +{"_id":{"$oid":"66f9d5ae542d90c053667686"},"ibge":3537404,"name":"Pereira Barreto","capital":0,"ibgeState":35,"siafi":6849,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6368,-51.1123]}} +{"_id":{"$oid":"66f9d5ae542d90c053667687"},"ibge":3537503,"name":"Pereiras","capital":0,"ibgeState":35,"siafi":6851,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0804,-47.972]}} +{"_id":{"$oid":"66f9d5ae542d90c053667688"},"ibge":2310803,"name":"Pereiro","capital":0,"ibgeState":23,"siafi":1517,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.03576,-38.4624]}} +{"_id":{"$oid":"66f9d5ae542d90c053667689"},"ibge":2108405,"name":"Peri Mirim","capital":0,"ibgeState":21,"siafi":865,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.57676,-44.8504]}} +{"_id":{"$oid":"66f9d5ae542d90c05366768a"},"ibge":3149952,"name":"Periquito","capital":0,"ibgeState":31,"siafi":684,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.1573,-42.2333]}} +{"_id":{"$oid":"66f9d5ae542d90c05366768b"},"ibge":4212601,"name":"Peritiba","capital":0,"ibgeState":42,"siafi":8247,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3754,-51.9018]}} +{"_id":{"$oid":"66f9d5ae542d90c05366768c"},"ibge":2108454,"name":"Peritoró","capital":0,"ibgeState":21,"siafi":210,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.37459,-44.3369]}} +{"_id":{"$oid":"66f9d5ae542d90c05366768d"},"ibge":4118857,"name":"Perobal","capital":0,"ibgeState":41,"siafi":868,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8949,-53.4098]}} +{"_id":{"$oid":"66f9d5ae542d90c05366768e"},"ibge":4118907,"name":"Pérola","capital":0,"ibgeState":41,"siafi":7969,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8039,-53.6834]}} +{"_id":{"$oid":"66f9d5ae542d90c05366768f"},"ibge":4119004,"name":"Pérola d'Oeste","capital":0,"ibgeState":41,"siafi":7759,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.8278,-53.7433]}} +{"_id":{"$oid":"66f9d5ae542d90c053667690"},"ibge":5216452,"name":"Perolândia","capital":0,"ibgeState":52,"siafi":75,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.5258,-52.065]}} +{"_id":{"$oid":"66f9d5ae542d90c053667691"},"ibge":3537602,"name":"Peruíbe","capital":0,"ibgeState":35,"siafi":6853,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.312,-47.0012]}} +{"_id":{"$oid":"66f9d5ae542d90c053667692"},"ibge":3150000,"name":"Pescador","capital":0,"ibgeState":31,"siafi":4999,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.357,-41.6006]}} +{"_id":{"$oid":"66f9d5ae542d90c053667693"},"ibge":4212650,"name":"Pescaria Brava","capital":0,"ibgeState":42,"siafi":1194,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3966,-48.8864]}} +{"_id":{"$oid":"66f9d5ae542d90c053667694"},"ibge":2610905,"name":"Pesqueira","capital":0,"ibgeState":26,"siafi":2517,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.35797,-36.6978]}} +{"_id":{"$oid":"66f9d5ae542d90c053667695"},"ibge":2611002,"name":"Petrolândia","capital":0,"ibgeState":26,"siafi":2519,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.06863,-38.3027]}} +{"_id":{"$oid":"66f9d5ae542d90c053667696"},"ibge":4212700,"name":"Petrolândia","capital":0,"ibgeState":42,"siafi":8249,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5346,-49.6937]}} +{"_id":{"$oid":"66f9d5ae542d90c053667697"},"ibge":2611101,"name":"Petrolina","capital":0,"ibgeState":26,"siafi":2521,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.38866,-40.5027]}} +{"_id":{"$oid":"66f9d5ae542d90c053667698"},"ibge":5216809,"name":"Petrolina de Goiás","capital":0,"ibgeState":52,"siafi":9531,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0968,-49.3364]}} +{"_id":{"$oid":"66f9d5ae542d90c053667699"},"ibge":3303906,"name":"Petrópolis","capital":0,"ibgeState":33,"siafi":5877,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.52,-43.1926]}} +{"_id":{"$oid":"66f9d5ae542d90c05366769a"},"ibge":2706802,"name":"Piaçabuçu","capital":0,"ibgeState":27,"siafi":2835,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.406,-36.434]}} +{"_id":{"$oid":"66f9d5ae542d90c05366769b"},"ibge":3537701,"name":"Piacatu","capital":0,"ibgeState":35,"siafi":6855,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5921,-50.6003]}} +{"_id":{"$oid":"66f9d5ae542d90c05366769c"},"ibge":2511301,"name":"Piancó","capital":0,"ibgeState":25,"siafi":2127,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.19282,-37.9289]}} +{"_id":{"$oid":"66f9d5ae542d90c05366769d"},"ibge":2924306,"name":"Piatã","capital":0,"ibgeState":29,"siafi":3787,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.1465,-41.7702]}} +{"_id":{"$oid":"66f9d5ae542d90c05366769e"},"ibge":3150109,"name":"Piau","capital":0,"ibgeState":31,"siafi":5001,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5096,-43.313]}} +{"_id":{"$oid":"66f9d5ae542d90c05366769f"},"ibge":4314423,"name":"Picada Café","capital":0,"ibgeState":43,"siafi":6021,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4464,-51.1367]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676a0"},"ibge":1505635,"name":"Piçarra","capital":0,"ibgeState":15,"siafi":58,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.43778,-48.8716]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676a1"},"ibge":2208007,"name":"Picos","capital":0,"ibgeState":22,"siafi":1159,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.07721,-41.467]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676a2"},"ibge":2511400,"name":"Picuí","capital":0,"ibgeState":25,"siafi":2129,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.50845,-36.3497]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676a3"},"ibge":3537800,"name":"Piedade","capital":0,"ibgeState":35,"siafi":6857,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7139,-47.4256]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676a4"},"ibge":3150158,"name":"Piedade de Caratinga","capital":0,"ibgeState":31,"siafi":686,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7593,-42.0756]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676a5"},"ibge":3150208,"name":"Piedade de Ponte Nova","capital":0,"ibgeState":31,"siafi":5003,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2438,-42.7379]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676a6"},"ibge":3150307,"name":"Piedade do Rio Grande","capital":0,"ibgeState":31,"siafi":5005,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.469,-44.1938]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676a7"},"ibge":3150406,"name":"Piedade dos Gerais","capital":0,"ibgeState":31,"siafi":5007,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4715,-44.2243]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676a8"},"ibge":4119103,"name":"Piên","capital":0,"ibgeState":41,"siafi":7761,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.0965,-49.4336]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676a9"},"ibge":2924405,"name":"Pilão Arcado","capital":0,"ibgeState":29,"siafi":3789,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.0051,-42.4936]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676aa"},"ibge":2511509,"name":"Pilar","capital":0,"ibgeState":25,"siafi":2131,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.26403,-35.2523]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676ab"},"ibge":2706901,"name":"Pilar","capital":0,"ibgeState":27,"siafi":2837,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.60135,-35.9543]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676ac"},"ibge":5216908,"name":"Pilar de Goiás","capital":0,"ibgeState":52,"siafi":9535,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.7608,-49.5784]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676ad"},"ibge":3537909,"name":"Pilar do Sul","capital":0,"ibgeState":35,"siafi":6859,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8077,-47.7222]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676ae"},"ibge":2410009,"name":"Pilões","capital":0,"ibgeState":24,"siafi":1799,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.26364,-38.0461]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676af"},"ibge":2511608,"name":"Pilões","capital":0,"ibgeState":25,"siafi":2133,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.86827,-35.613]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676b0"},"ibge":2511707,"name":"Pilõezinhos","capital":0,"ibgeState":25,"siafi":2135,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.84277,-35.531]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676b1"},"ibge":3150505,"name":"Pimenta","capital":0,"ibgeState":31,"siafi":5009,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4827,-45.8049]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676b2"},"ibge":1100189,"name":"Pimenta Bueno","capital":0,"ibgeState":11,"siafi":11,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.672,-61.198]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676b3"},"ibge":2208106,"name":"Pimenteiras","capital":0,"ibgeState":22,"siafi":1161,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.23839,-41.4113]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676b4"},"ibge":1101468,"name":"Pimenteiras do Oeste","capital":0,"ibgeState":11,"siafi":14,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-13.4823,-61.0471]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676b5"},"ibge":2924504,"name":"Pindaí","capital":0,"ibgeState":29,"siafi":3791,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.4921,-42.686]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676b6"},"ibge":3538006,"name":"Pindamonhangaba","capital":0,"ibgeState":35,"siafi":6861,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9246,-45.4613]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676b7"},"ibge":2108504,"name":"Pindaré-Mirim","capital":0,"ibgeState":21,"siafi":867,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.60985,-45.342]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676b8"},"ibge":2707008,"name":"Pindoba","capital":0,"ibgeState":27,"siafi":2839,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.47382,-36.2918]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676b9"},"ibge":2924603,"name":"Pindobaçu","capital":0,"ibgeState":29,"siafi":3793,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7433,-40.3675]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676ba"},"ibge":3538105,"name":"Pindorama","capital":0,"ibgeState":35,"siafi":6863,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1853,-48.9086]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676bb"},"ibge":1717008,"name":"Pindorama do Tocantins","capital":0,"ibgeState":17,"siafi":9537,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.1311,-47.5726]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676bc"},"ibge":2310852,"name":"Pindoretama","capital":0,"ibgeState":23,"siafi":1267,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.01584,-38.3061]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676bd"},"ibge":3150539,"name":"Pingo-d'Água","capital":0,"ibgeState":31,"siafi":688,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7287,-42.4095]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676be"},"ibge":4119152,"name":"Pinhais","capital":0,"ibgeState":41,"siafi":5453,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4429,-49.1927]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676bf"},"ibge":4314456,"name":"Pinhal","capital":0,"ibgeState":43,"siafi":7369,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.508,-53.2082]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676c0"},"ibge":4314464,"name":"Pinhal da Serra","capital":0,"ibgeState":43,"siafi":1158,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.8751,-51.1673]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676c1"},"ibge":4119251,"name":"Pinhal de São Bento","capital":0,"ibgeState":41,"siafi":5495,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.0324,-53.482]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676c2"},"ibge":4314472,"name":"Pinhal Grande","capital":0,"ibgeState":43,"siafi":5787,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.345,-53.3206]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676c3"},"ibge":4119202,"name":"Pinhalão","capital":0,"ibgeState":41,"siafi":7763,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7982,-50.0536]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676c4"},"ibge":3538204,"name":"Pinhalzinho","capital":0,"ibgeState":35,"siafi":6867,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7811,-46.5897]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676c5"},"ibge":4212908,"name":"Pinhalzinho","capital":0,"ibgeState":42,"siafi":8253,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.8495,-52.9913]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676c6"},"ibge":2805208,"name":"Pinhão","capital":0,"ibgeState":28,"siafi":3203,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.5677,-37.7242]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676c7"},"ibge":4119301,"name":"Pinhão","capital":0,"ibgeState":41,"siafi":7765,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.6944,-51.6536]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676c8"},"ibge":3303955,"name":"Pinheiral","capital":0,"ibgeState":33,"siafi":778,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5172,-44.0022]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676c9"},"ibge":4314498,"name":"Pinheirinho do Vale","capital":0,"ibgeState":43,"siafi":5975,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2109,-53.608]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676ca"},"ibge":2108603,"name":"Pinheiro","capital":0,"ibgeState":21,"siafi":869,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.52224,-45.0788]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676cb"},"ibge":4314506,"name":"Pinheiro Machado","capital":0,"ibgeState":43,"siafi":8793,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.5794,-53.3798]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676cc"},"ibge":4213005,"name":"Pinheiro Preto","capital":0,"ibgeState":42,"siafi":8255,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0483,-51.2243]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676cd"},"ibge":3204104,"name":"Pinheiros","capital":0,"ibgeState":32,"siafi":5681,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4141,-40.2171]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676ce"},"ibge":2924652,"name":"Pintadas","capital":0,"ibgeState":29,"siafi":3983,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.8117,-39.9009]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676cf"},"ibge":4314548,"name":"Pinto Bandeira","capital":0,"ibgeState":43,"siafi":1160,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.0975,-51.4503]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676d0"},"ibge":3150570,"name":"Pintópolis","capital":0,"ibgeState":31,"siafi":690,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0572,-45.1402]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676d1"},"ibge":2208205,"name":"Pio IX","capital":0,"ibgeState":22,"siafi":1163,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.83002,-40.6083]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676d2"},"ibge":2108702,"name":"Pio XII","capital":0,"ibgeState":21,"siafi":871,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.89315,-45.1759]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676d3"},"ibge":3538303,"name":"Piquerobi","capital":0,"ibgeState":35,"siafi":6869,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8747,-51.7282]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676d4"},"ibge":2310902,"name":"Piquet Carneiro","capital":0,"ibgeState":23,"siafi":1519,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.80025,-39.417]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676d5"},"ibge":3538501,"name":"Piquete","capital":0,"ibgeState":35,"siafi":6871,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6069,-45.1869]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676d6"},"ibge":3538600,"name":"Piracaia","capital":0,"ibgeState":35,"siafi":6873,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0525,-46.3594]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676d7"},"ibge":5217104,"name":"Piracanjuba","capital":0,"ibgeState":52,"siafi":9539,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.302,-49.017]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676d8"},"ibge":3150604,"name":"Piracema","capital":0,"ibgeState":31,"siafi":5011,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5089,-44.4783]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676d9"},"ibge":3538709,"name":"Piracicaba","capital":0,"ibgeState":35,"siafi":6875,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7338,-47.6476]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676da"},"ibge":2208304,"name":"Piracuruca","capital":0,"ibgeState":22,"siafi":1165,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.93335,-41.7088]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676db"},"ibge":3304003,"name":"Piraí","capital":0,"ibgeState":33,"siafi":5879,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6215,-43.9081]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676dc"},"ibge":2924678,"name":"Piraí do Norte","capital":0,"ibgeState":29,"siafi":3019,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.759,-39.3836]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676dd"},"ibge":4119400,"name":"Piraí do Sul","capital":0,"ibgeState":41,"siafi":7767,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.5306,-49.9433]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676de"},"ibge":3538808,"name":"Piraju","capital":0,"ibgeState":35,"siafi":6877,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1981,-49.3803]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676df"},"ibge":3150703,"name":"Pirajuba","capital":0,"ibgeState":31,"siafi":5013,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9092,-48.7027]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676e0"},"ibge":3538907,"name":"Pirajuí","capital":0,"ibgeState":35,"siafi":6879,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.999,-49.4608]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676e1"},"ibge":2805307,"name":"Pirambu","capital":0,"ibgeState":28,"siafi":3205,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7215,-36.8544]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676e2"},"ibge":3150802,"name":"Piranga","capital":0,"ibgeState":31,"siafi":5015,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6834,-43.2967]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676e3"},"ibge":3539004,"name":"Pirangi","capital":0,"ibgeState":35,"siafi":6881,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0886,-48.6607]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676e4"},"ibge":3150901,"name":"Piranguçu","capital":0,"ibgeState":31,"siafi":5017,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5249,-45.4945]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676e5"},"ibge":3151008,"name":"Piranguinho","capital":0,"ibgeState":31,"siafi":5019,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.395,-45.5324]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676e6"},"ibge":2707107,"name":"Piranhas","capital":0,"ibgeState":27,"siafi":2841,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.624,-37.757]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676e7"},"ibge":5217203,"name":"Piranhas","capital":0,"ibgeState":52,"siafi":9541,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.4258,-51.8235]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676e8"},"ibge":2108801,"name":"Pirapemas","capital":0,"ibgeState":21,"siafi":873,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.72041,-44.2216]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676e9"},"ibge":3151107,"name":"Pirapetinga","capital":0,"ibgeState":31,"siafi":5021,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6554,-42.3434]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676ea"},"ibge":4314555,"name":"Pirapó","capital":0,"ibgeState":43,"siafi":7367,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.0439,-55.2001]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676eb"},"ibge":3151206,"name":"Pirapora","capital":0,"ibgeState":31,"siafi":5023,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.3392,-44.934]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676ec"},"ibge":3539103,"name":"Pirapora do Bom Jesus","capital":0,"ibgeState":35,"siafi":6883,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3965,-46.9991]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676ed"},"ibge":3539202,"name":"Pirapozinho","capital":0,"ibgeState":35,"siafi":6885,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2711,-51.4976]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676ee"},"ibge":4119509,"name":"Piraquara","capital":0,"ibgeState":41,"siafi":7769,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4422,-49.0624]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676ef"},"ibge":1717206,"name":"Piraquê","capital":0,"ibgeState":17,"siafi":355,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.77302,-48.2958]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676f0"},"ibge":3539301,"name":"Pirassununga","capital":0,"ibgeState":35,"siafi":6887,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.996,-47.4257]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676f1"},"ibge":4314605,"name":"Piratini","capital":0,"ibgeState":43,"siafi":8795,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.4473,-53.0973]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676f2"},"ibge":3539400,"name":"Piratininga","capital":0,"ibgeState":35,"siafi":6889,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4142,-49.1339]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676f3"},"ibge":4213104,"name":"Piratuba","capital":0,"ibgeState":42,"siafi":8257,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4242,-51.7668]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676f4"},"ibge":3151305,"name":"Piraúba","capital":0,"ibgeState":31,"siafi":5025,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2825,-43.0172]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676f5"},"ibge":5217302,"name":"Pirenópolis","capital":0,"ibgeState":52,"siafi":9543,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.8507,-48.9584]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676f6"},"ibge":5217401,"name":"Pires do Rio","capital":0,"ibgeState":52,"siafi":9545,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.3019,-48.2768]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676f7"},"ibge":2310951,"name":"Pires Ferreira","capital":0,"ibgeState":23,"siafi":1269,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.23922,-40.6442]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676f8"},"ibge":2924702,"name":"Piripá","capital":0,"ibgeState":29,"siafi":3795,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.9444,-41.7168]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676f9"},"ibge":2208403,"name":"Piripiri","capital":0,"ibgeState":22,"siafi":1167,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.27157,-41.7716]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676fa"},"ibge":2924801,"name":"Piritiba","capital":0,"ibgeState":29,"siafi":3797,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.73,-40.5587]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676fb"},"ibge":2511806,"name":"Pirpirituba","capital":0,"ibgeState":25,"siafi":2137,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.77922,-35.4906]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676fc"},"ibge":4119608,"name":"Pitanga","capital":0,"ibgeState":41,"siafi":7771,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.7588,-51.7596]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676fd"},"ibge":3539509,"name":"Pitangueiras","capital":0,"ibgeState":35,"siafi":6891,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0132,-48.221]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676fe"},"ibge":4119657,"name":"Pitangueiras","capital":0,"ibgeState":41,"siafi":5461,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2281,-51.5873]}} +{"_id":{"$oid":"66f9d5ae542d90c0536676ff"},"ibge":3151404,"name":"Pitangui","capital":0,"ibgeState":31,"siafi":5027,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6741,-44.8964]}} +{"_id":{"$oid":"66f9d5ae542d90c053667700"},"ibge":2511905,"name":"Pitimbu","capital":0,"ibgeState":25,"siafi":2139,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.4664,-34.8151]}} +{"_id":{"$oid":"66f9d5ae542d90c053667701"},"ibge":1717503,"name":"Pium","capital":0,"ibgeState":17,"siafi":9547,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.442,-49.1876]}} +{"_id":{"$oid":"66f9d5ae542d90c053667702"},"ibge":3204203,"name":"Piúma","capital":0,"ibgeState":32,"siafi":5683,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8334,-40.7268]}} +{"_id":{"$oid":"66f9d5ae542d90c053667703"},"ibge":3151503,"name":"Piumhi","capital":0,"ibgeState":31,"siafi":5029,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4762,-45.9589]}} +{"_id":{"$oid":"66f9d5ae542d90c053667704"},"ibge":1505650,"name":"Placas","capital":0,"ibgeState":15,"siafi":60,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.86813,-54.2124]}} +{"_id":{"$oid":"66f9d5ae542d90c053667705"},"ibge":1200385,"name":"Plácido de Castro","capital":0,"ibgeState":12,"siafi":151,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-10.2806,-67.1371]}} +{"_id":{"$oid":"66f9d5ae542d90c053667706"},"ibge":5217609,"name":"Planaltina","capital":0,"ibgeState":52,"siafi":9595,"ddd":61,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.452,-47.6089]}} +{"_id":{"$oid":"66f9d5ae542d90c053667707"},"ibge":4119707,"name":"Planaltina do Paraná","capital":0,"ibgeState":41,"siafi":7773,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0101,-52.9162]}} +{"_id":{"$oid":"66f9d5ae542d90c053667708"},"ibge":2924900,"name":"Planaltino","capital":0,"ibgeState":29,"siafi":3799,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.2618,-40.3695]}} +{"_id":{"$oid":"66f9d5ae542d90c053667709"},"ibge":2925006,"name":"Planalto","capital":0,"ibgeState":29,"siafi":3801,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.6654,-40.4718]}} +{"_id":{"$oid":"66f9d5ae542d90c05366770a"},"ibge":4314704,"name":"Planalto","capital":0,"ibgeState":43,"siafi":8797,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3297,-53.0575]}} +{"_id":{"$oid":"66f9d5ae542d90c05366770b"},"ibge":3539608,"name":"Planalto","capital":0,"ibgeState":35,"siafi":6893,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0342,-49.933]}} +{"_id":{"$oid":"66f9d5ae542d90c05366770c"},"ibge":4119806,"name":"Planalto","capital":0,"ibgeState":41,"siafi":7775,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.7211,-53.7642]}} +{"_id":{"$oid":"66f9d5ae542d90c05366770d"},"ibge":4213153,"name":"Planalto Alegre","capital":0,"ibgeState":42,"siafi":5593,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0704,-52.867]}} +{"_id":{"$oid":"66f9d5ae542d90c05366770e"},"ibge":5106455,"name":"Planalto da Serra","capital":0,"ibgeState":51,"siafi":91,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.6518,-54.7819]}} +{"_id":{"$oid":"66f9d5ae542d90c05366770f"},"ibge":3151602,"name":"Planura","capital":0,"ibgeState":31,"siafi":5031,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1376,-48.7]}} +{"_id":{"$oid":"66f9d5ae542d90c053667710"},"ibge":3539707,"name":"Platina","capital":0,"ibgeState":35,"siafi":6895,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6371,-50.2104]}} +{"_id":{"$oid":"66f9d5ae542d90c053667711"},"ibge":3539806,"name":"Poá","capital":0,"ibgeState":35,"siafi":6897,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5333,-46.3473]}} +{"_id":{"$oid":"66f9d5ae542d90c053667712"},"ibge":2611200,"name":"Poção","capital":0,"ibgeState":26,"siafi":2523,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.18726,-36.7111]}} +{"_id":{"$oid":"66f9d5ae542d90c053667713"},"ibge":2108900,"name":"Poção de Pedras","capital":0,"ibgeState":21,"siafi":875,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.74626,-44.9432]}} +{"_id":{"$oid":"66f9d5ae542d90c053667714"},"ibge":2512002,"name":"Pocinhos","capital":0,"ibgeState":25,"siafi":2141,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.06658,-36.0668]}} +{"_id":{"$oid":"66f9d5ae542d90c053667715"},"ibge":2410108,"name":"Poço Branco","capital":0,"ibgeState":24,"siafi":1801,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.62233,-35.6635]}} +{"_id":{"$oid":"66f9d5ae542d90c053667716"},"ibge":2512036,"name":"Poço Dantas","capital":0,"ibgeState":25,"siafi":496,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.39876,-38.4909]}} +{"_id":{"$oid":"66f9d5ae542d90c053667717"},"ibge":4314753,"name":"Poço das Antas","capital":0,"ibgeState":43,"siafi":7365,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4481,-51.6719]}} +{"_id":{"$oid":"66f9d5ae542d90c053667718"},"ibge":2707206,"name":"Poço das Trincheiras","capital":0,"ibgeState":27,"siafi":2843,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.30742,-37.2889]}} +{"_id":{"$oid":"66f9d5ae542d90c053667719"},"ibge":2512077,"name":"Poço de José de Moura","capital":0,"ibgeState":25,"siafi":498,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.56401,-38.5111]}} +{"_id":{"$oid":"66f9d5ae542d90c05366771a"},"ibge":3151701,"name":"Poço Fundo","capital":0,"ibgeState":31,"siafi":5033,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.78,-45.9658]}} +{"_id":{"$oid":"66f9d5ae542d90c05366771b"},"ibge":2805406,"name":"Poço Redondo","capital":0,"ibgeState":28,"siafi":3207,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.80616,-37.6833]}} +{"_id":{"$oid":"66f9d5ae542d90c05366771c"},"ibge":2805505,"name":"Poço Verde","capital":0,"ibgeState":28,"siafi":3209,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7151,-38.1813]}} +{"_id":{"$oid":"66f9d5ae542d90c05366771d"},"ibge":2925105,"name":"Poções","capital":0,"ibgeState":29,"siafi":3803,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.5234,-40.3634]}} +{"_id":{"$oid":"66f9d5ae542d90c05366771e"},"ibge":5106505,"name":"Poconé","capital":0,"ibgeState":51,"siafi":9129,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-16.266,-56.6261]}} +{"_id":{"$oid":"66f9d5ae542d90c05366771f"},"ibge":3151800,"name":"Poços de Caldas","capital":0,"ibgeState":31,"siafi":5035,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.78,-46.5692]}} +{"_id":{"$oid":"66f9d5ae542d90c053667720"},"ibge":3151909,"name":"Pocrane","capital":0,"ibgeState":31,"siafi":5037,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6208,-41.6334]}} +{"_id":{"$oid":"66f9d5ae542d90c053667721"},"ibge":2925204,"name":"Pojuca","capital":0,"ibgeState":29,"siafi":3805,"ddd":71,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.4303,-38.3374]}} +{"_id":{"$oid":"66f9d5ae542d90c053667722"},"ibge":3539905,"name":"Poloni","capital":0,"ibgeState":35,"siafi":6899,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7829,-49.8258]}} +{"_id":{"$oid":"66f9d5ae542d90c053667723"},"ibge":2512101,"name":"Pombal","capital":0,"ibgeState":25,"siafi":2143,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.76606,-37.8003]}} +{"_id":{"$oid":"66f9d5ae542d90c053667724"},"ibge":2611309,"name":"Pombos","capital":0,"ibgeState":26,"siafi":2525,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.13982,-35.3967]}} +{"_id":{"$oid":"66f9d5ae542d90c053667725"},"ibge":4213203,"name":"Pomerode","capital":0,"ibgeState":42,"siafi":8259,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7384,-49.1785]}} +{"_id":{"$oid":"66f9d5ae542d90c053667726"},"ibge":3540002,"name":"Pompéia","capital":0,"ibgeState":35,"siafi":6901,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.107,-50.176]}} +{"_id":{"$oid":"66f9d5ae542d90c053667727"},"ibge":3152006,"name":"Pompéu","capital":0,"ibgeState":31,"siafi":5039,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2257,-45.0141]}} +{"_id":{"$oid":"66f9d5ae542d90c053667728"},"ibge":3540101,"name":"Pongaí","capital":0,"ibgeState":35,"siafi":6903,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7396,-49.3604]}} +{"_id":{"$oid":"66f9d5ae542d90c053667729"},"ibge":1505700,"name":"Ponta de Pedras","capital":0,"ibgeState":15,"siafi":513,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.39587,-48.8661]}} +{"_id":{"$oid":"66f9d5ae542d90c05366772a"},"ibge":4119905,"name":"Ponta Grossa","capital":0,"ibgeState":41,"siafi":7777,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.0916,-50.1668]}} +{"_id":{"$oid":"66f9d5ae542d90c05366772b"},"ibge":5006606,"name":"Ponta Porã","capital":0,"ibgeState":50,"siafi":9131,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.5296,-55.7203]}} +{"_id":{"$oid":"66f9d5ae542d90c05366772c"},"ibge":3540200,"name":"Pontal","capital":0,"ibgeState":35,"siafi":6905,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0216,-48.0423]}} +{"_id":{"$oid":"66f9d5ae542d90c05366772d"},"ibge":5106653,"name":"Pontal do Araguaia","capital":0,"ibgeState":51,"siafi":95,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.9274,-52.3273]}} +{"_id":{"$oid":"66f9d5ae542d90c05366772e"},"ibge":4119954,"name":"Pontal do Paraná","capital":0,"ibgeState":41,"siafi":870,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.6735,-48.5111]}} +{"_id":{"$oid":"66f9d5ae542d90c05366772f"},"ibge":5217708,"name":"Pontalina","capital":0,"ibgeState":52,"siafi":9549,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.5225,-49.4489]}} +{"_id":{"$oid":"66f9d5ae542d90c053667730"},"ibge":3540259,"name":"Pontalinda","capital":0,"ibgeState":35,"siafi":2987,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4396,-50.5258]}} +{"_id":{"$oid":"66f9d5ae542d90c053667731"},"ibge":4314779,"name":"Pontão","capital":0,"ibgeState":43,"siafi":5939,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.0585,-52.6791]}} +{"_id":{"$oid":"66f9d5ae542d90c053667732"},"ibge":4213302,"name":"Ponte Alta","capital":0,"ibgeState":42,"siafi":8261,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4835,-50.3764]}} +{"_id":{"$oid":"66f9d5ae542d90c053667733"},"ibge":1717800,"name":"Ponte Alta do Bom Jesus","capital":0,"ibgeState":17,"siafi":9551,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.0853,-46.4825]}} +{"_id":{"$oid":"66f9d5ae542d90c053667734"},"ibge":4213351,"name":"Ponte Alta do Norte","capital":0,"ibgeState":42,"siafi":5569,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1591,-50.4659]}} +{"_id":{"$oid":"66f9d5ae542d90c053667735"},"ibge":1717909,"name":"Ponte Alta do Tocantins","capital":0,"ibgeState":17,"siafi":9553,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7481,-47.5276]}} +{"_id":{"$oid":"66f9d5ae542d90c053667736"},"ibge":5106703,"name":"Ponte Branca","capital":0,"ibgeState":51,"siafi":9133,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-16.7584,-52.8369]}} +{"_id":{"$oid":"66f9d5ae542d90c053667737"},"ibge":3152105,"name":"Ponte Nova","capital":0,"ibgeState":31,"siafi":5041,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4111,-42.8978]}} +{"_id":{"$oid":"66f9d5ae542d90c053667738"},"ibge":4314787,"name":"Ponte Preta","capital":0,"ibgeState":43,"siafi":5967,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6587,-52.4848]}} +{"_id":{"$oid":"66f9d5ae542d90c053667739"},"ibge":4213401,"name":"Ponte Serrada","capital":0,"ibgeState":42,"siafi":8263,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.8733,-52.0112]}} +{"_id":{"$oid":"66f9d5ae542d90c05366773a"},"ibge":5106752,"name":"Pontes e Lacerda","capital":0,"ibgeState":51,"siafi":8999,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.2219,-59.3435]}} +{"_id":{"$oid":"66f9d5ae542d90c05366773b"},"ibge":3540309,"name":"Pontes Gestal","capital":0,"ibgeState":35,"siafi":6907,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1727,-49.7064]}} +{"_id":{"$oid":"66f9d5ae542d90c05366773c"},"ibge":3204252,"name":"Ponto Belo","capital":0,"ibgeState":32,"siafi":762,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.1253,-40.5458]}} +{"_id":{"$oid":"66f9d5ae542d90c05366773d"},"ibge":3152131,"name":"Ponto Chique","capital":0,"ibgeState":31,"siafi":692,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.6282,-45.0588]}} +{"_id":{"$oid":"66f9d5ae542d90c05366773e"},"ibge":3152170,"name":"Ponto dos Volantes","capital":0,"ibgeState":31,"siafi":694,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.7473,-41.5025]}} +{"_id":{"$oid":"66f9d5ae542d90c05366773f"},"ibge":2925253,"name":"Ponto Novo","capital":0,"ibgeState":29,"siafi":3021,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.8653,-40.1311]}} +{"_id":{"$oid":"66f9d5ae542d90c053667740"},"ibge":3540408,"name":"Populina","capital":0,"ibgeState":35,"siafi":6909,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9453,-50.538]}} +{"_id":{"$oid":"66f9d5ae542d90c053667741"},"ibge":2311009,"name":"Poranga","capital":0,"ibgeState":23,"siafi":1521,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.74672,-40.9205]}} +{"_id":{"$oid":"66f9d5ae542d90c053667742"},"ibge":3540507,"name":"Porangaba","capital":0,"ibgeState":35,"siafi":6911,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1761,-48.1195]}} +{"_id":{"$oid":"66f9d5ae542d90c053667743"},"ibge":5218003,"name":"Porangatu","capital":0,"ibgeState":52,"siafi":9555,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.4391,-49.1503]}} +{"_id":{"$oid":"66f9d5ae542d90c053667744"},"ibge":3304102,"name":"Porciúncula","capital":0,"ibgeState":33,"siafi":5881,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9632,-42.0465]}} +{"_id":{"$oid":"66f9d5ae542d90c053667745"},"ibge":4120002,"name":"Porecatu","capital":0,"ibgeState":41,"siafi":7779,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7537,-51.3795]}} +{"_id":{"$oid":"66f9d5ae542d90c053667746"},"ibge":2410207,"name":"Portalegre","capital":0,"ibgeState":24,"siafi":1803,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.02064,-37.9865]}} +{"_id":{"$oid":"66f9d5ae542d90c053667747"},"ibge":4314803,"name":"Portão","capital":0,"ibgeState":43,"siafi":8799,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.7015,-51.2429]}} +{"_id":{"$oid":"66f9d5ae542d90c053667748"},"ibge":5218052,"name":"Porteirão","capital":0,"ibgeState":52,"siafi":1060,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.8143,-50.1653]}} +{"_id":{"$oid":"66f9d5ae542d90c053667749"},"ibge":2311108,"name":"Porteiras","capital":0,"ibgeState":23,"siafi":1523,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.52265,-39.114]}} +{"_id":{"$oid":"66f9d5ae542d90c05366774a"},"ibge":3152204,"name":"Porteirinha","capital":0,"ibgeState":31,"siafi":5043,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.7404,-43.0281]}} +{"_id":{"$oid":"66f9d5ae542d90c05366774b"},"ibge":1505809,"name":"Portel","capital":0,"ibgeState":15,"siafi":515,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.93639,-50.8194]}} +{"_id":{"$oid":"66f9d5ae542d90c05366774c"},"ibge":5218102,"name":"Portelândia","capital":0,"ibgeState":52,"siafi":9557,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.3554,-52.6799]}} +{"_id":{"$oid":"66f9d5ae542d90c05366774d"},"ibge":2208502,"name":"Porto","capital":0,"ibgeState":22,"siafi":1169,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.88815,-42.6998]}} +{"_id":{"$oid":"66f9d5ae542d90c05366774e"},"ibge":1200807,"name":"Porto Acre","capital":0,"ibgeState":12,"siafi":649,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-9.58138,-67.5478]}} +{"_id":{"$oid":"66f9d5ae542d90c05366774f"},"ibge":4314902,"name":"Porto Alegre","capital":1,"ibgeState":43,"siafi":8801,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.0318,-51.2065]}} +{"_id":{"$oid":"66f9d5ae542d90c053667750"},"ibge":5106778,"name":"Porto Alegre do Norte","capital":0,"ibgeState":51,"siafi":9895,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.8761,-51.6357]}} +{"_id":{"$oid":"66f9d5ae542d90c053667751"},"ibge":2208551,"name":"Porto Alegre do Piauí","capital":0,"ibgeState":22,"siafi":372,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.96423,-44.1837]}} +{"_id":{"$oid":"66f9d5ae542d90c053667752"},"ibge":1718006,"name":"Porto Alegre do Tocantins","capital":0,"ibgeState":17,"siafi":9723,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.618,-47.0621]}} +{"_id":{"$oid":"66f9d5ae542d90c053667753"},"ibge":4120101,"name":"Porto Amazonas","capital":0,"ibgeState":41,"siafi":7781,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.54,-49.8946]}} +{"_id":{"$oid":"66f9d5ae542d90c053667754"},"ibge":4120150,"name":"Porto Barreiro","capital":0,"ibgeState":41,"siafi":872,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.5477,-52.4067]}} +{"_id":{"$oid":"66f9d5ae542d90c053667755"},"ibge":4213500,"name":"Porto Belo","capital":0,"ibgeState":42,"siafi":8265,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1586,-48.5469]}} +{"_id":{"$oid":"66f9d5ae542d90c053667756"},"ibge":2707305,"name":"Porto Calvo","capital":0,"ibgeState":27,"siafi":2845,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.05195,-35.3987]}} +{"_id":{"$oid":"66f9d5ae542d90c053667757"},"ibge":2805604,"name":"Porto da Folha","capital":0,"ibgeState":28,"siafi":3211,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.91626,-37.2842]}} +{"_id":{"$oid":"66f9d5ae542d90c053667758"},"ibge":1505908,"name":"Porto de Moz","capital":0,"ibgeState":15,"siafi":517,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.74691,-52.2361]}} +{"_id":{"$oid":"66f9d5ae542d90c053667759"},"ibge":2707404,"name":"Porto de Pedras","capital":0,"ibgeState":27,"siafi":2847,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.16006,-35.3049]}} +{"_id":{"$oid":"66f9d5ae542d90c05366775a"},"ibge":2410256,"name":"Porto do Mangue","capital":0,"ibgeState":24,"siafi":426,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.05441,-36.7887]}} +{"_id":{"$oid":"66f9d5ae542d90c05366775b"},"ibge":5106802,"name":"Porto dos Gaúchos","capital":0,"ibgeState":51,"siafi":9135,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.533,-57.4132]}} +{"_id":{"$oid":"66f9d5ae542d90c05366775c"},"ibge":5106828,"name":"Porto Esperidião","capital":0,"ibgeState":51,"siafi":9875,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.857,-58.4619]}} +{"_id":{"$oid":"66f9d5ae542d90c05366775d"},"ibge":5106851,"name":"Porto Estrela","capital":0,"ibgeState":51,"siafi":101,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.3235,-57.2204]}} +{"_id":{"$oid":"66f9d5ae542d90c05366775e"},"ibge":3540606,"name":"Porto Feliz","capital":0,"ibgeState":35,"siafi":6913,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2093,-47.5251]}} +{"_id":{"$oid":"66f9d5ae542d90c05366775f"},"ibge":3540705,"name":"Porto Ferreira","capital":0,"ibgeState":35,"siafi":6915,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8498,-47.487]}} +{"_id":{"$oid":"66f9d5ae542d90c053667760"},"ibge":3152303,"name":"Porto Firme","capital":0,"ibgeState":31,"siafi":5045,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6642,-43.0834]}} +{"_id":{"$oid":"66f9d5ae542d90c053667761"},"ibge":2109007,"name":"Porto Franco","capital":0,"ibgeState":21,"siafi":877,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.34149,-47.3962]}} +{"_id":{"$oid":"66f9d5ae542d90c053667762"},"ibge":1600535,"name":"Porto Grande","capital":0,"ibgeState":16,"siafi":671,"ddd":96,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[0.71243,-51.4155]}} +{"_id":{"$oid":"66f9d5ae542d90c053667763"},"ibge":4315008,"name":"Porto Lucena","capital":0,"ibgeState":43,"siafi":8803,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.8569,-55.01]}} +{"_id":{"$oid":"66f9d5ae542d90c053667764"},"ibge":4315057,"name":"Porto Mauá","capital":0,"ibgeState":43,"siafi":6065,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5796,-54.6657]}} +{"_id":{"$oid":"66f9d5ae542d90c053667765"},"ibge":5006903,"name":"Porto Murtinho","capital":0,"ibgeState":50,"siafi":9137,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-21.6981,-57.8836]}} +{"_id":{"$oid":"66f9d5ae542d90c053667766"},"ibge":1718204,"name":"Porto Nacional","capital":0,"ibgeState":17,"siafi":9559,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7027,-48.408]}} +{"_id":{"$oid":"66f9d5ae542d90c053667767"},"ibge":3304110,"name":"Porto Real","capital":0,"ibgeState":33,"siafi":780,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4175,-44.2952]}} +{"_id":{"$oid":"66f9d5ae542d90c053667768"},"ibge":2707503,"name":"Porto Real do Colégio","capital":0,"ibgeState":27,"siafi":2849,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.1849,-36.8376]}} +{"_id":{"$oid":"66f9d5ae542d90c053667769"},"ibge":4120200,"name":"Porto Rico","capital":0,"ibgeState":41,"siafi":7783,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7747,-53.2677]}} +{"_id":{"$oid":"66f9d5ae542d90c05366776a"},"ibge":2109056,"name":"Porto Rico do Maranhão","capital":0,"ibgeState":21,"siafi":212,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.85925,-44.5842]}} +{"_id":{"$oid":"66f9d5ae542d90c05366776b"},"ibge":2925303,"name":"Porto Seguro","capital":0,"ibgeState":29,"siafi":3807,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.4435,-39.0643]}} +{"_id":{"$oid":"66f9d5ae542d90c05366776c"},"ibge":4213609,"name":"Porto União","capital":0,"ibgeState":42,"siafi":8267,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.2451,-51.0759]}} +{"_id":{"$oid":"66f9d5ae542d90c05366776d"},"ibge":1100205,"name":"Porto Velho","capital":1,"ibgeState":11,"siafi":3,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-8.76077,-63.8999]}} +{"_id":{"$oid":"66f9d5ae542d90c05366776e"},"ibge":4315073,"name":"Porto Vera Cruz","capital":0,"ibgeState":43,"siafi":6067,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7405,-54.8994]}} +{"_id":{"$oid":"66f9d5ae542d90c05366776f"},"ibge":4120309,"name":"Porto Vitória","capital":0,"ibgeState":41,"siafi":7785,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.1674,-51.231]}} +{"_id":{"$oid":"66f9d5ae542d90c053667770"},"ibge":1200393,"name":"Porto Walter","capital":0,"ibgeState":12,"siafi":657,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-8.26323,-72.7537]}} +{"_id":{"$oid":"66f9d5ae542d90c053667771"},"ibge":4315107,"name":"Porto Xavier","capital":0,"ibgeState":43,"siafi":8805,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9082,-55.1379]}} +{"_id":{"$oid":"66f9d5ae542d90c053667772"},"ibge":5218300,"name":"Posse","capital":0,"ibgeState":52,"siafi":9561,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.0859,-46.3704]}} +{"_id":{"$oid":"66f9d5ae542d90c053667773"},"ibge":3152402,"name":"Poté","capital":0,"ibgeState":31,"siafi":5047,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.8077,-41.786]}} +{"_id":{"$oid":"66f9d5ae542d90c053667774"},"ibge":2311207,"name":"Potengi","capital":0,"ibgeState":23,"siafi":1525,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.09154,-40.0233]}} +{"_id":{"$oid":"66f9d5ae542d90c053667775"},"ibge":3540754,"name":"Potim","capital":0,"ibgeState":35,"siafi":2993,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8343,-45.2552]}} +{"_id":{"$oid":"66f9d5ae542d90c053667776"},"ibge":2925402,"name":"Potiraguá","capital":0,"ibgeState":29,"siafi":3809,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.5943,-39.8638]}} +{"_id":{"$oid":"66f9d5ae542d90c053667777"},"ibge":3540804,"name":"Potirendaba","capital":0,"ibgeState":35,"siafi":6917,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0428,-49.3815]}} +{"_id":{"$oid":"66f9d5ae542d90c053667778"},"ibge":2311231,"name":"Potiretama","capital":0,"ibgeState":23,"siafi":1271,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.71287,-38.1578]}} +{"_id":{"$oid":"66f9d5ae542d90c053667779"},"ibge":3152501,"name":"Pouso Alegre","capital":0,"ibgeState":31,"siafi":5049,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2266,-45.9389]}} +{"_id":{"$oid":"66f9d5ae542d90c05366777a"},"ibge":3152600,"name":"Pouso Alto","capital":0,"ibgeState":31,"siafi":5051,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1964,-44.9748]}} +{"_id":{"$oid":"66f9d5ae542d90c05366777b"},"ibge":4315131,"name":"Pouso Novo","capital":0,"ibgeState":43,"siafi":7363,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.1738,-52.2136]}} +{"_id":{"$oid":"66f9d5ae542d90c05366777c"},"ibge":4213708,"name":"Pouso Redondo","capital":0,"ibgeState":42,"siafi":8269,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2567,-49.9301]}} +{"_id":{"$oid":"66f9d5ae542d90c05366777d"},"ibge":5107008,"name":"Poxoréu","capital":0,"ibgeState":51,"siafi":9139,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.8299,-54.4208]}} +{"_id":{"$oid":"66f9d5ae542d90c05366777e"},"ibge":3540853,"name":"Pracinha","capital":0,"ibgeState":35,"siafi":812,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8496,-51.0868]}} +{"_id":{"$oid":"66f9d5ae542d90c05366777f"},"ibge":1600550,"name":"Pracuúba","capital":0,"ibgeState":16,"siafi":673,"ddd":96,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[1.74543,-50.7892]}} +{"_id":{"$oid":"66f9d5ae542d90c053667780"},"ibge":2925501,"name":"Prado","capital":0,"ibgeState":29,"siafi":3811,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.3364,-39.2227]}} +{"_id":{"$oid":"66f9d5ae542d90c053667781"},"ibge":4120333,"name":"Prado Ferreira","capital":0,"ibgeState":41,"siafi":874,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0357,-51.4429]}} +{"_id":{"$oid":"66f9d5ae542d90c053667782"},"ibge":3540903,"name":"Pradópolis","capital":0,"ibgeState":35,"siafi":6919,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3626,-48.0679]}} +{"_id":{"$oid":"66f9d5ae542d90c053667783"},"ibge":3152709,"name":"Prados","capital":0,"ibgeState":31,"siafi":5053,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0597,-44.0778]}} +{"_id":{"$oid":"66f9d5ae542d90c053667784"},"ibge":3541000,"name":"Praia Grande","capital":0,"ibgeState":35,"siafi":6921,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.0084,-46.4121]}} +{"_id":{"$oid":"66f9d5ae542d90c053667785"},"ibge":4213807,"name":"Praia Grande","capital":0,"ibgeState":42,"siafi":8271,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.1918,-49.9525]}} +{"_id":{"$oid":"66f9d5ae542d90c053667786"},"ibge":1718303,"name":"Praia Norte","capital":0,"ibgeState":17,"siafi":9725,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.39281,-47.8111]}} +{"_id":{"$oid":"66f9d5ae542d90c053667787"},"ibge":1506005,"name":"Prainha","capital":0,"ibgeState":15,"siafi":519,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.798,-53.4779]}} +{"_id":{"$oid":"66f9d5ae542d90c053667788"},"ibge":4120358,"name":"Pranchita","capital":0,"ibgeState":41,"siafi":7991,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.0209,-53.7397]}} +{"_id":{"$oid":"66f9d5ae542d90c053667789"},"ibge":3152808,"name":"Prata","capital":0,"ibgeState":31,"siafi":5055,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.3086,-48.9276]}} +{"_id":{"$oid":"66f9d5ae542d90c05366778a"},"ibge":2512200,"name":"Prata","capital":0,"ibgeState":25,"siafi":2145,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.68826,-37.0801]}} +{"_id":{"$oid":"66f9d5ae542d90c05366778b"},"ibge":2208601,"name":"Prata do Piauí","capital":0,"ibgeState":22,"siafi":1171,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.67265,-42.2046]}} +{"_id":{"$oid":"66f9d5ae542d90c05366778c"},"ibge":3541059,"name":"Pratânia","capital":0,"ibgeState":35,"siafi":814,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8112,-48.6636]}} +{"_id":{"$oid":"66f9d5ae542d90c05366778d"},"ibge":3152907,"name":"Pratápolis","capital":0,"ibgeState":31,"siafi":5057,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7411,-46.8624]}} +{"_id":{"$oid":"66f9d5ae542d90c05366778e"},"ibge":3153004,"name":"Pratinha","capital":0,"ibgeState":31,"siafi":5059,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.739,-46.3755]}} +{"_id":{"$oid":"66f9d5ae542d90c05366778f"},"ibge":3541109,"name":"Presidente Alves","capital":0,"ibgeState":35,"siafi":6923,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0999,-49.4381]}} +{"_id":{"$oid":"66f9d5ae542d90c053667790"},"ibge":3541208,"name":"Presidente Bernardes","capital":0,"ibgeState":35,"siafi":6925,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0082,-51.5565]}} +{"_id":{"$oid":"66f9d5ae542d90c053667791"},"ibge":3153103,"name":"Presidente Bernardes","capital":0,"ibgeState":31,"siafi":5061,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7656,-43.1895]}} +{"_id":{"$oid":"66f9d5ae542d90c053667792"},"ibge":4213906,"name":"Presidente Castello Branco","capital":0,"ibgeState":42,"siafi":8273,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2218,-51.8089]}} +{"_id":{"$oid":"66f9d5ae542d90c053667793"},"ibge":4120408,"name":"Presidente Castelo Branco","capital":0,"ibgeState":41,"siafi":7787,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2782,-52.1536]}} +{"_id":{"$oid":"66f9d5ae542d90c053667794"},"ibge":2925600,"name":"Presidente Dutra","capital":0,"ibgeState":29,"siafi":3813,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.2923,-41.9843]}} +{"_id":{"$oid":"66f9d5ae542d90c053667795"},"ibge":2109106,"name":"Presidente Dutra","capital":0,"ibgeState":21,"siafi":879,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.2898,-44.495]}} +{"_id":{"$oid":"66f9d5ae542d90c053667796"},"ibge":3541307,"name":"Presidente Epitácio","capital":0,"ibgeState":35,"siafi":6927,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7651,-52.1111]}} +{"_id":{"$oid":"66f9d5ae542d90c053667797"},"ibge":1303536,"name":"Presidente Figueiredo","capital":0,"ibgeState":13,"siafi":9841,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-2.02981,-60.0234]}} +{"_id":{"$oid":"66f9d5ae542d90c053667798"},"ibge":4214003,"name":"Presidente Getúlio","capital":0,"ibgeState":42,"siafi":8275,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0474,-49.6246]}} +{"_id":{"$oid":"66f9d5ae542d90c053667799"},"ibge":2925709,"name":"Presidente Jânio Quadros","capital":0,"ibgeState":29,"siafi":3815,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.6885,-41.6798]}} +{"_id":{"$oid":"66f9d5ae542d90c05366779a"},"ibge":3153202,"name":"Presidente Juscelino","capital":0,"ibgeState":31,"siafi":5063,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.6401,-44.06]}} +{"_id":{"$oid":"66f9d5ae542d90c05366779b"},"ibge":2109205,"name":"Presidente Juscelino","capital":0,"ibgeState":21,"siafi":881,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.91872,-44.0715]}} +{"_id":{"$oid":"66f9d5ae542d90c05366779c"},"ibge":1718402,"name":"Presidente Kennedy","capital":0,"ibgeState":17,"siafi":9629,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.5406,-48.5062]}} +{"_id":{"$oid":"66f9d5ae542d90c05366779d"},"ibge":3204302,"name":"Presidente Kennedy","capital":0,"ibgeState":32,"siafi":5685,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0964,-41.0468]}} +{"_id":{"$oid":"66f9d5ae542d90c05366779e"},"ibge":3153301,"name":"Presidente Kubitschek","capital":0,"ibgeState":31,"siafi":5065,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.6193,-43.5628]}} +{"_id":{"$oid":"66f9d5ae542d90c05366779f"},"ibge":4315149,"name":"Presidente Lucena","capital":0,"ibgeState":43,"siafi":6023,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5175,-51.1798]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677a0"},"ibge":1100254,"name":"Presidente Médici","capital":0,"ibgeState":11,"siafi":19,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.169,-61.8986]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677a1"},"ibge":2109239,"name":"Presidente Médici","capital":0,"ibgeState":21,"siafi":214,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.38991,-45.82]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677a2"},"ibge":4214102,"name":"Presidente Nereu","capital":0,"ibgeState":42,"siafi":8277,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2768,-49.3889]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677a3"},"ibge":3153400,"name":"Presidente Olegário","capital":0,"ibgeState":31,"siafi":5067,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4096,-46.4165]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677a4"},"ibge":3541406,"name":"Presidente Prudente","capital":0,"ibgeState":35,"siafi":6929,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1207,-51.3925]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677a5"},"ibge":2109270,"name":"Presidente Sarney","capital":0,"ibgeState":21,"siafi":216,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.58799,-45.3595]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677a6"},"ibge":2925758,"name":"Presidente Tancredo Neves","capital":0,"ibgeState":29,"siafi":3023,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.4471,-39.4203]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677a7"},"ibge":2109304,"name":"Presidente Vargas","capital":0,"ibgeState":21,"siafi":883,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.40787,-44.0234]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677a8"},"ibge":3541505,"name":"Presidente Venceslau","capital":0,"ibgeState":35,"siafi":6931,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8732,-51.8447]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677a9"},"ibge":2611408,"name":"Primavera","capital":0,"ibgeState":26,"siafi":2527,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.32999,-35.3544]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677aa"},"ibge":1506104,"name":"Primavera","capital":0,"ibgeState":15,"siafi":521,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.945439,-47.1253]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677ab"},"ibge":1101476,"name":"Primavera de Rondônia","capital":0,"ibgeState":11,"siafi":16,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.8295,-61.3153]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677ac"},"ibge":5107040,"name":"Primavera do Leste","capital":0,"ibgeState":51,"siafi":9871,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.544,-54.2811]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677ad"},"ibge":2109403,"name":"Primeira Cruz","capital":0,"ibgeState":21,"siafi":885,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.50568,-43.4232]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677ae"},"ibge":4120507,"name":"Primeiro de Maio","capital":0,"ibgeState":41,"siafi":7789,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8517,-51.0293]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677af"},"ibge":4214151,"name":"Princesa","capital":0,"ibgeState":42,"siafi":934,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.4441,-53.5994]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677b0"},"ibge":2512309,"name":"Princesa Isabel","capital":0,"ibgeState":25,"siafi":2147,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.73175,-37.9886]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677b1"},"ibge":5218391,"name":"Professor Jamil","capital":0,"ibgeState":52,"siafi":51,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.2497,-49.244]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677b2"},"ibge":4315156,"name":"Progresso","capital":0,"ibgeState":43,"siafi":7361,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.2441,-52.3197]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677b3"},"ibge":3541604,"name":"Promissão","capital":0,"ibgeState":35,"siafi":6933,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5356,-49.8599]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677b4"},"ibge":2805703,"name":"Propriá","capital":0,"ibgeState":28,"siafi":3213,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.2138,-36.8442]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677b5"},"ibge":4315172,"name":"Protásio Alves","capital":0,"ibgeState":43,"siafi":7359,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.7572,-51.4757]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677b6"},"ibge":3153608,"name":"Prudente de Morais","capital":0,"ibgeState":31,"siafi":5071,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.4742,-44.1591]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677b7"},"ibge":4120606,"name":"Prudentópolis","capital":0,"ibgeState":41,"siafi":7791,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.2111,-50.9754]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677b8"},"ibge":1718451,"name":"Pugmil","capital":0,"ibgeState":17,"siafi":94,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.424,-48.8957]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677b9"},"ibge":2410405,"name":"Pureza","capital":0,"ibgeState":24,"siafi":1807,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.46393,-35.5554]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677ba"},"ibge":4315206,"name":"Putinga","capital":0,"ibgeState":43,"siafi":8807,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.0045,-52.1569]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677bb"},"ibge":2512408,"name":"Puxinanã","capital":0,"ibgeState":25,"siafi":2149,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.15479,-35.9543]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677bc"},"ibge":3541653,"name":"Quadra","capital":0,"ibgeState":35,"siafi":816,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2993,-48.0547]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677bd"},"ibge":4315305,"name":"Quaraí","capital":0,"ibgeState":43,"siafi":8809,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.384,-56.4483]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677be"},"ibge":3153707,"name":"Quartel Geral","capital":0,"ibgeState":31,"siafi":5073,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2703,-45.5569]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677bf"},"ibge":4120655,"name":"Quarto Centenário","capital":0,"ibgeState":41,"siafi":876,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.2775,-53.0759]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677c0"},"ibge":3541703,"name":"Quatá","capital":0,"ibgeState":35,"siafi":6935,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2456,-50.6966]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677c1"},"ibge":4120705,"name":"Quatiguá","capital":0,"ibgeState":41,"siafi":7793,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5671,-49.916]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677c2"},"ibge":1506112,"name":"Quatipuru","capital":0,"ibgeState":15,"siafi":62,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.899604,-47.0134]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677c3"},"ibge":3304128,"name":"Quatis","capital":0,"ibgeState":33,"siafi":2923,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4045,-44.2597]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677c4"},"ibge":4120804,"name":"Quatro Barras","capital":0,"ibgeState":41,"siafi":7795,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.3673,-49.0763]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677c5"},"ibge":4315313,"name":"Quatro Irmãos","capital":0,"ibgeState":43,"siafi":1162,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.8257,-52.4424]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677c6"},"ibge":4120853,"name":"Quatro Pontes","capital":0,"ibgeState":41,"siafi":5535,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.5752,-53.9759]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677c7"},"ibge":2707602,"name":"Quebrangulo","capital":0,"ibgeState":27,"siafi":2851,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.32001,-36.4692]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677c8"},"ibge":4120903,"name":"Quedas do Iguaçu","capital":0,"ibgeState":41,"siafi":7955,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4492,-52.9102]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677c9"},"ibge":2208650,"name":"Queimada Nova","capital":0,"ibgeState":22,"siafi":2279,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.57064,-41.4106]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677ca"},"ibge":2512507,"name":"Queimadas","capital":0,"ibgeState":25,"siafi":2151,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.35029,-35.9031]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677cb"},"ibge":2925808,"name":"Queimadas","capital":0,"ibgeState":29,"siafi":3817,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.9736,-39.6293]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677cc"},"ibge":3304144,"name":"Queimados","capital":0,"ibgeState":33,"siafi":2911,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7102,-43.5518]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677cd"},"ibge":3541802,"name":"Queiroz","capital":0,"ibgeState":35,"siafi":6937,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7969,-50.2415]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677ce"},"ibge":3541901,"name":"Queluz","capital":0,"ibgeState":35,"siafi":6939,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5312,-44.7781]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677cf"},"ibge":3153806,"name":"Queluzito","capital":0,"ibgeState":31,"siafi":5075,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7416,-43.8851]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677d0"},"ibge":5107065,"name":"Querência","capital":0,"ibgeState":51,"siafi":97,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.6093,-52.1821]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677d1"},"ibge":4121000,"name":"Querência do Norte","capital":0,"ibgeState":41,"siafi":7797,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0838,-53.483]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677d2"},"ibge":4315321,"name":"Quevedos","capital":0,"ibgeState":43,"siafi":5789,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3504,-54.0789]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677d3"},"ibge":2925907,"name":"Quijingue","capital":0,"ibgeState":29,"siafi":3819,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7505,-39.2137]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677d4"},"ibge":4214201,"name":"Quilombo","capital":0,"ibgeState":42,"siafi":8279,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7264,-52.724]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677d5"},"ibge":4121109,"name":"Quinta do Sol","capital":0,"ibgeState":41,"siafi":7799,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8533,-52.1309]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677d6"},"ibge":3542008,"name":"Quintana","capital":0,"ibgeState":35,"siafi":6941,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0692,-50.307]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677d7"},"ibge":4315354,"name":"Quinze de Novembro","capital":0,"ibgeState":43,"siafi":7357,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.7466,-53.1011]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677d8"},"ibge":2611507,"name":"Quipapá","capital":0,"ibgeState":26,"siafi":2529,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.81175,-36.0137]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677d9"},"ibge":5218508,"name":"Quirinópolis","capital":0,"ibgeState":52,"siafi":9563,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4472,-50.4547]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677da"},"ibge":3304151,"name":"Quissamã","capital":0,"ibgeState":33,"siafi":6007,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1031,-41.4693]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677db"},"ibge":4121208,"name":"Quitandinha","capital":0,"ibgeState":41,"siafi":7801,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.8734,-49.4973]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677dc"},"ibge":2311264,"name":"Quiterianópolis","capital":0,"ibgeState":23,"siafi":9917,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.8425,-40.7002]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677dd"},"ibge":2512606,"name":"Quixabá","capital":0,"ibgeState":25,"siafi":2153,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.0224,-37.1458]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677de"},"ibge":2611533,"name":"Quixaba","capital":0,"ibgeState":26,"siafi":2637,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.70734,-37.8446]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677df"},"ibge":2925931,"name":"Quixabeira","capital":0,"ibgeState":29,"siafi":3025,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.4031,-40.12]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677e0"},"ibge":2311306,"name":"Quixadá","capital":0,"ibgeState":23,"siafi":1527,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.9663,-39.0155]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677e1"},"ibge":2311355,"name":"Quixelô","capital":0,"ibgeState":23,"siafi":9853,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.24637,-39.2011]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677e2"},"ibge":2311405,"name":"Quixeramobim","capital":0,"ibgeState":23,"siafi":1529,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.19067,-39.2889]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677e3"},"ibge":2311504,"name":"Quixeré","capital":0,"ibgeState":23,"siafi":1531,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.07148,-37.9802]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677e4"},"ibge":2410504,"name":"Rafael Fernandes","capital":0,"ibgeState":24,"siafi":1809,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.18987,-38.2211]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677e5"},"ibge":2410603,"name":"Rafael Godeiro","capital":0,"ibgeState":24,"siafi":1893,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.07244,-37.716]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677e6"},"ibge":2925956,"name":"Rafael Jambeiro","capital":0,"ibgeState":29,"siafi":3985,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.4053,-39.5007]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677e7"},"ibge":3542107,"name":"Rafard","capital":0,"ibgeState":35,"siafi":6943,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0105,-47.5318]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677e8"},"ibge":4121257,"name":"Ramilândia","capital":0,"ibgeState":41,"siafi":5527,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.1195,-54.023]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677e9"},"ibge":3542206,"name":"Rancharia","capital":0,"ibgeState":35,"siafi":6945,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2269,-50.893]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677ea"},"ibge":4121307,"name":"Rancho Alegre","capital":0,"ibgeState":41,"siafi":7803,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0676,-50.9145]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677eb"},"ibge":4121356,"name":"Rancho Alegre D'Oeste","capital":0,"ibgeState":41,"siafi":5513,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.3065,-52.9552]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677ec"},"ibge":4214300,"name":"Rancho Queimado","capital":0,"ibgeState":42,"siafi":8281,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6727,-49.0191]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677ed"},"ibge":2109452,"name":"Raposa","capital":0,"ibgeState":21,"siafi":218,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.4254,-44.0973]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677ee"},"ibge":3153905,"name":"Raposos","capital":0,"ibgeState":31,"siafi":5077,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9636,-43.8079]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677ef"},"ibge":3154002,"name":"Raul Soares","capital":0,"ibgeState":31,"siafi":5079,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1061,-42.4502]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677f0"},"ibge":4121406,"name":"Realeza","capital":0,"ibgeState":41,"siafi":7805,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.7711,-53.526]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677f1"},"ibge":4121505,"name":"Rebouças","capital":0,"ibgeState":41,"siafi":7807,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.6232,-50.6877]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677f2"},"ibge":2611606,"name":"Recife","capital":1,"ibgeState":26,"siafi":2531,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.04666,-34.8771]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677f3"},"ibge":3154101,"name":"Recreio","capital":0,"ibgeState":31,"siafi":5081,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5289,-42.4676]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677f4"},"ibge":1718501,"name":"Recursolândia","capital":0,"ibgeState":17,"siafi":357,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.7227,-47.2421]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677f5"},"ibge":1506138,"name":"Redenção","capital":0,"ibgeState":15,"siafi":567,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.02529,-50.0317]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677f6"},"ibge":2311603,"name":"Redenção","capital":0,"ibgeState":23,"siafi":1533,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.21587,-38.7277]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677f7"},"ibge":3542305,"name":"Redenção da Serra","capital":0,"ibgeState":35,"siafi":6947,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2638,-45.5422]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677f8"},"ibge":2208700,"name":"Redenção do Gurguéia","capital":0,"ibgeState":22,"siafi":1173,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.47937,-44.5811]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677f9"},"ibge":4315404,"name":"Redentora","capital":0,"ibgeState":43,"siafi":8811,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.664,-53.6407]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677fa"},"ibge":3154150,"name":"Reduto","capital":0,"ibgeState":31,"siafi":696,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2401,-41.9848]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677fb"},"ibge":2208809,"name":"Regeneração","capital":0,"ibgeState":22,"siafi":1175,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.23115,-42.6842]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677fc"},"ibge":3542404,"name":"Regente Feijó","capital":0,"ibgeState":35,"siafi":6949,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2181,-51.3055]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677fd"},"ibge":3542503,"name":"Reginópolis","capital":0,"ibgeState":35,"siafi":6951,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8914,-49.2268]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677fe"},"ibge":3542602,"name":"Registro","capital":0,"ibgeState":35,"siafi":6953,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.4979,-47.8449]}} +{"_id":{"$oid":"66f9d5ae542d90c0536677ff"},"ibge":4315453,"name":"Relvado","capital":0,"ibgeState":43,"siafi":7355,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.1164,-52.0778]}} +{"_id":{"$oid":"66f9d5ae542d90c053667800"},"ibge":2926004,"name":"Remanso","capital":0,"ibgeState":29,"siafi":3821,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.61944,-42.0848]}} +{"_id":{"$oid":"66f9d5ae542d90c053667801"},"ibge":2512705,"name":"Remígio","capital":0,"ibgeState":25,"siafi":2155,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.94992,-35.8011]}} +{"_id":{"$oid":"66f9d5ae542d90c053667802"},"ibge":4121604,"name":"Renascença","capital":0,"ibgeState":41,"siafi":7809,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.1588,-52.9703]}} +{"_id":{"$oid":"66f9d5ae542d90c053667803"},"ibge":2311702,"name":"Reriutaba","capital":0,"ibgeState":23,"siafi":1535,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.14191,-40.5759]}} +{"_id":{"$oid":"66f9d5ae542d90c053667804"},"ibge":3304201,"name":"Resende","capital":0,"ibgeState":33,"siafi":5883,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4705,-44.4509]}} +{"_id":{"$oid":"66f9d5ae542d90c053667805"},"ibge":3154200,"name":"Resende Costa","capital":0,"ibgeState":31,"siafi":5083,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9171,-44.2407]}} +{"_id":{"$oid":"66f9d5ae542d90c053667806"},"ibge":4121703,"name":"Reserva","capital":0,"ibgeState":41,"siafi":7811,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.6492,-50.8466]}} +{"_id":{"$oid":"66f9d5ae542d90c053667807"},"ibge":5107156,"name":"Reserva do Cabaçal","capital":0,"ibgeState":51,"siafi":9879,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.0743,-58.4585]}} +{"_id":{"$oid":"66f9d5ae542d90c053667808"},"ibge":4121752,"name":"Reserva do Iguaçu","capital":0,"ibgeState":41,"siafi":878,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.8319,-52.0272]}} +{"_id":{"$oid":"66f9d5ae542d90c053667809"},"ibge":3154309,"name":"Resplendor","capital":0,"ibgeState":31,"siafi":5085,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.3194,-41.2462]}} +{"_id":{"$oid":"66f9d5ae542d90c05366780a"},"ibge":3154408,"name":"Ressaquinha","capital":0,"ibgeState":31,"siafi":5087,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0642,-43.7598]}} +{"_id":{"$oid":"66f9d5ae542d90c05366780b"},"ibge":3542701,"name":"Restinga","capital":0,"ibgeState":35,"siafi":6955,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6056,-47.4833]}} +{"_id":{"$oid":"66f9d5ae542d90c05366780c"},"ibge":4315503,"name":"Restinga Sêca","capital":0,"ibgeState":43,"siafi":8813,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.8188,-53.3807]}} +{"_id":{"$oid":"66f9d5ae542d90c05366780d"},"ibge":2926103,"name":"Retirolândia","capital":0,"ibgeState":29,"siafi":3823,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.4832,-39.4234]}} +{"_id":{"$oid":"66f9d5ae542d90c05366780e"},"ibge":2512747,"name":"Riachão","capital":0,"ibgeState":25,"siafi":502,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.54269,-35.661]}} +{"_id":{"$oid":"66f9d5ae542d90c05366780f"},"ibge":2109502,"name":"Riachão","capital":0,"ibgeState":21,"siafi":887,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.35819,-46.6225]}} +{"_id":{"$oid":"66f9d5ae542d90c053667810"},"ibge":2926202,"name":"Riachão das Neves","capital":0,"ibgeState":29,"siafi":3825,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.7508,-44.9143]}} +{"_id":{"$oid":"66f9d5ae542d90c053667811"},"ibge":2512754,"name":"Riachão do Bacamarte","capital":0,"ibgeState":25,"siafi":504,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.25347,-35.6693]}} +{"_id":{"$oid":"66f9d5ae542d90c053667812"},"ibge":2805802,"name":"Riachão do Dantas","capital":0,"ibgeState":28,"siafi":3215,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.0729,-37.731]}} +{"_id":{"$oid":"66f9d5ae542d90c053667813"},"ibge":2926301,"name":"Riachão do Jacuípe","capital":0,"ibgeState":29,"siafi":3827,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.8067,-39.3818]}} +{"_id":{"$oid":"66f9d5ae542d90c053667814"},"ibge":2512762,"name":"Riachão do Poço","capital":0,"ibgeState":25,"siafi":506,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.14173,-35.2914]}} +{"_id":{"$oid":"66f9d5ae542d90c053667815"},"ibge":1718550,"name":"Riachinho","capital":0,"ibgeState":17,"siafi":193,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.44005,-48.1371]}} +{"_id":{"$oid":"66f9d5ae542d90c053667816"},"ibge":3154457,"name":"Riachinho","capital":0,"ibgeState":31,"siafi":2901,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.2258,-45.9888]}} +{"_id":{"$oid":"66f9d5ae542d90c053667817"},"ibge":2410702,"name":"Riacho da Cruz","capital":0,"ibgeState":24,"siafi":1811,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.92654,-37.949]}} +{"_id":{"$oid":"66f9d5ae542d90c053667818"},"ibge":2611705,"name":"Riacho das Almas","capital":0,"ibgeState":26,"siafi":2533,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.13742,-35.8648]}} +{"_id":{"$oid":"66f9d5ae542d90c053667819"},"ibge":2410801,"name":"Riacho de Santana","capital":0,"ibgeState":24,"siafi":1813,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.25139,-38.3116]}} +{"_id":{"$oid":"66f9d5ae542d90c05366781a"},"ibge":2926400,"name":"Riacho de Santana","capital":0,"ibgeState":29,"siafi":3829,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.6059,-42.9397]}} +{"_id":{"$oid":"66f9d5ae542d90c05366781b"},"ibge":2512788,"name":"Riacho de Santo Antônio","capital":0,"ibgeState":25,"siafi":508,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.68023,-36.157]}} +{"_id":{"$oid":"66f9d5ae542d90c05366781c"},"ibge":2512804,"name":"Riacho dos Cavalos","capital":0,"ibgeState":25,"siafi":2157,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.44067,-37.6483]}} +{"_id":{"$oid":"66f9d5ae542d90c05366781d"},"ibge":3154507,"name":"Riacho dos Machados","capital":0,"ibgeState":31,"siafi":5089,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0091,-43.0488]}} +{"_id":{"$oid":"66f9d5ae542d90c05366781e"},"ibge":2208858,"name":"Riacho Frio","capital":0,"ibgeState":22,"siafi":374,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.1244,-44.9503]}} +{"_id":{"$oid":"66f9d5ae542d90c05366781f"},"ibge":2410900,"name":"Riachuelo","capital":0,"ibgeState":24,"siafi":1815,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.82156,-35.8215]}} +{"_id":{"$oid":"66f9d5ae542d90c053667820"},"ibge":2805901,"name":"Riachuelo","capital":0,"ibgeState":28,"siafi":3217,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.735,-37.1966]}} +{"_id":{"$oid":"66f9d5ae542d90c053667821"},"ibge":5218607,"name":"Rialma","capital":0,"ibgeState":52,"siafi":9565,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.3145,-49.5814]}} +{"_id":{"$oid":"66f9d5ae542d90c053667822"},"ibge":5218706,"name":"Rianápolis","capital":0,"ibgeState":52,"siafi":9567,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.4456,-49.5114]}} +{"_id":{"$oid":"66f9d5ae542d90c053667823"},"ibge":2109551,"name":"Ribamar Fiquene","capital":0,"ibgeState":21,"siafi":220,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.93067,-47.3888]}} +{"_id":{"$oid":"66f9d5ae542d90c053667824"},"ibge":5007109,"name":"Ribas do Rio Pardo","capital":0,"ibgeState":50,"siafi":9141,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-20.4445,-53.7588]}} +{"_id":{"$oid":"66f9d5ae542d90c053667825"},"ibge":3542800,"name":"Ribeira","capital":0,"ibgeState":35,"siafi":6957,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.6517,-49.0044]}} +{"_id":{"$oid":"66f9d5ae542d90c053667826"},"ibge":2926509,"name":"Ribeira do Amparo","capital":0,"ibgeState":29,"siafi":3831,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.0421,-38.4242]}} +{"_id":{"$oid":"66f9d5ae542d90c053667827"},"ibge":2208874,"name":"Ribeira do Piauí","capital":0,"ibgeState":22,"siafi":376,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.69028,-42.7128]}} +{"_id":{"$oid":"66f9d5ae542d90c053667828"},"ibge":2926608,"name":"Ribeira do Pombal","capital":0,"ibgeState":29,"siafi":3833,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.8373,-38.5382]}} +{"_id":{"$oid":"66f9d5ae542d90c053667829"},"ibge":2611804,"name":"Ribeirão","capital":0,"ibgeState":26,"siafi":2535,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.50957,-35.3698]}} +{"_id":{"$oid":"66f9d5ae542d90c05366782a"},"ibge":3542909,"name":"Ribeirão Bonito","capital":0,"ibgeState":35,"siafi":6959,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0685,-48.182]}} +{"_id":{"$oid":"66f9d5ae542d90c05366782b"},"ibge":3543006,"name":"Ribeirão Branco","capital":0,"ibgeState":35,"siafi":6961,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.2206,-48.7635]}} +{"_id":{"$oid":"66f9d5ae542d90c05366782c"},"ibge":5107180,"name":"Ribeirão Cascalheira","capital":0,"ibgeState":51,"siafi":9741,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.9367,-51.8244]}} +{"_id":{"$oid":"66f9d5ae542d90c05366782d"},"ibge":4121802,"name":"Ribeirão Claro","capital":0,"ibgeState":41,"siafi":7813,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1941,-49.7597]}} +{"_id":{"$oid":"66f9d5ae542d90c05366782e"},"ibge":3543105,"name":"Ribeirão Corrente","capital":0,"ibgeState":35,"siafi":6963,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4579,-47.5904]}} +{"_id":{"$oid":"66f9d5ae542d90c05366782f"},"ibge":3154606,"name":"Ribeirão das Neves","capital":0,"ibgeState":31,"siafi":5091,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7621,-44.0844]}} +{"_id":{"$oid":"66f9d5ae542d90c053667830"},"ibge":2926657,"name":"Ribeirão do Largo","capital":0,"ibgeState":29,"siafi":3027,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.4508,-40.7441]}} +{"_id":{"$oid":"66f9d5ae542d90c053667831"},"ibge":4121901,"name":"Ribeirão do Pinhal","capital":0,"ibgeState":41,"siafi":7815,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4091,-50.3601]}} +{"_id":{"$oid":"66f9d5ae542d90c053667832"},"ibge":3543204,"name":"Ribeirão do Sul","capital":0,"ibgeState":35,"siafi":6965,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.789,-49.933]}} +{"_id":{"$oid":"66f9d5ae542d90c053667833"},"ibge":3543238,"name":"Ribeirão dos Índios","capital":0,"ibgeState":35,"siafi":818,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8382,-51.6103]}} +{"_id":{"$oid":"66f9d5ae542d90c053667834"},"ibge":3543253,"name":"Ribeirão Grande","capital":0,"ibgeState":35,"siafi":3057,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.1011,-48.3679]}} +{"_id":{"$oid":"66f9d5ae542d90c053667835"},"ibge":3543303,"name":"Ribeirão Pires","capital":0,"ibgeState":35,"siafi":6967,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7067,-46.4058]}} +{"_id":{"$oid":"66f9d5ae542d90c053667836"},"ibge":3543402,"name":"Ribeirão Preto","capital":0,"ibgeState":35,"siafi":6969,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1699,-47.8099]}} +{"_id":{"$oid":"66f9d5ae542d90c053667837"},"ibge":3154705,"name":"Ribeirão Vermelho","capital":0,"ibgeState":31,"siafi":5093,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1879,-45.0637]}} +{"_id":{"$oid":"66f9d5ae542d90c053667838"},"ibge":5107198,"name":"Ribeirãozinho","capital":0,"ibgeState":51,"siafi":99,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-16.4856,-52.6924]}} +{"_id":{"$oid":"66f9d5ae542d90c053667839"},"ibge":2208908,"name":"Ribeiro Gonçalves","capital":0,"ibgeState":22,"siafi":1177,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.55651,-45.2447]}} +{"_id":{"$oid":"66f9d5ae542d90c05366783a"},"ibge":2806008,"name":"Ribeirópolis","capital":0,"ibgeState":28,"siafi":3219,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.5357,-37.438]}} +{"_id":{"$oid":"66f9d5ae542d90c05366783b"},"ibge":3543600,"name":"Rifaina","capital":0,"ibgeState":35,"siafi":6973,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0803,-47.4291]}} +{"_id":{"$oid":"66f9d5ae542d90c05366783c"},"ibge":3543709,"name":"Rincão","capital":0,"ibgeState":35,"siafi":6975,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5894,-48.0728]}} +{"_id":{"$oid":"66f9d5ae542d90c05366783d"},"ibge":3543808,"name":"Rinópolis","capital":0,"ibgeState":35,"siafi":6977,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7284,-50.7239]}} +{"_id":{"$oid":"66f9d5ae542d90c05366783e"},"ibge":3154804,"name":"Rio Acima","capital":0,"ibgeState":31,"siafi":5095,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0876,-43.7878]}} +{"_id":{"$oid":"66f9d5ae542d90c05366783f"},"ibge":4122008,"name":"Rio Azul","capital":0,"ibgeState":41,"siafi":7817,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.7306,-50.7985]}} +{"_id":{"$oid":"66f9d5ae542d90c053667840"},"ibge":3204351,"name":"Rio Bananal","capital":0,"ibgeState":32,"siafi":5711,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2719,-40.3366]}} +{"_id":{"$oid":"66f9d5ae542d90c053667841"},"ibge":4122107,"name":"Rio Bom","capital":0,"ibgeState":41,"siafi":7819,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7606,-51.4122]}} +{"_id":{"$oid":"66f9d5ae542d90c053667842"},"ibge":3304300,"name":"Rio Bonito","capital":0,"ibgeState":33,"siafi":5885,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7181,-42.6276]}} +{"_id":{"$oid":"66f9d5ae542d90c053667843"},"ibge":4122156,"name":"Rio Bonito do Iguaçu","capital":0,"ibgeState":41,"siafi":5481,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4874,-52.5292]}} +{"_id":{"$oid":"66f9d5ae542d90c053667844"},"ibge":5107206,"name":"Rio Branco","capital":0,"ibgeState":51,"siafi":8995,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.2483,-58.1259]}} +{"_id":{"$oid":"66f9d5ae542d90c053667845"},"ibge":1200401,"name":"Rio Branco","capital":1,"ibgeState":12,"siafi":139,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-9.97499,-67.8243]}} +{"_id":{"$oid":"66f9d5ae542d90c053667846"},"ibge":4122172,"name":"Rio Branco do Ivaí","capital":0,"ibgeState":41,"siafi":880,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.3244,-51.3187]}} +{"_id":{"$oid":"66f9d5ae542d90c053667847"},"ibge":4122206,"name":"Rio Branco do Sul","capital":0,"ibgeState":41,"siafi":7821,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.1892,-49.3115]}} +{"_id":{"$oid":"66f9d5ae542d90c053667848"},"ibge":5007208,"name":"Rio Brilhante","capital":0,"ibgeState":50,"siafi":9143,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-21.8033,-54.5427]}} +{"_id":{"$oid":"66f9d5ae542d90c053667849"},"ibge":3154903,"name":"Rio Casca","capital":0,"ibgeState":31,"siafi":5097,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2285,-42.6462]}} +{"_id":{"$oid":"66f9d5ae542d90c05366784a"},"ibge":3304409,"name":"Rio Claro","capital":0,"ibgeState":33,"siafi":5887,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.72,-44.1419]}} +{"_id":{"$oid":"66f9d5ae542d90c05366784b"},"ibge":3543907,"name":"Rio Claro","capital":0,"ibgeState":35,"siafi":6979,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3984,-47.5546]}} +{"_id":{"$oid":"66f9d5ae542d90c05366784c"},"ibge":1100262,"name":"Rio Crespo","capital":0,"ibgeState":11,"siafi":687,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-9.69965,-62.9011]}} +{"_id":{"$oid":"66f9d5ae542d90c05366784d"},"ibge":1718659,"name":"Rio da Conceição","capital":0,"ibgeState":17,"siafi":323,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.3949,-46.8847]}} +{"_id":{"$oid":"66f9d5ae542d90c05366784e"},"ibge":4214409,"name":"Rio das Antas","capital":0,"ibgeState":42,"siafi":8283,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.8946,-51.0674]}} +{"_id":{"$oid":"66f9d5ae542d90c05366784f"},"ibge":3304508,"name":"Rio das Flores","capital":0,"ibgeState":33,"siafi":5889,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1692,-43.5856]}} +{"_id":{"$oid":"66f9d5ae542d90c053667850"},"ibge":3304524,"name":"Rio das Ostras","capital":0,"ibgeState":33,"siafi":2921,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5174,-41.9475]}} +{"_id":{"$oid":"66f9d5ae542d90c053667851"},"ibge":3544004,"name":"Rio das Pedras","capital":0,"ibgeState":35,"siafi":6981,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8417,-47.6047]}} +{"_id":{"$oid":"66f9d5ae542d90c053667852"},"ibge":2926707,"name":"Rio de Contas","capital":0,"ibgeState":29,"siafi":3835,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.5852,-41.8048]}} +{"_id":{"$oid":"66f9d5ae542d90c053667853"},"ibge":3304557,"name":"Rio de Janeiro","capital":1,"ibgeState":33,"siafi":6001,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9129,-43.2003]}} +{"_id":{"$oid":"66f9d5ae542d90c053667854"},"ibge":2926806,"name":"Rio do Antônio","capital":0,"ibgeState":29,"siafi":3837,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.4071,-42.0721]}} +{"_id":{"$oid":"66f9d5ae542d90c053667855"},"ibge":4214508,"name":"Rio do Campo","capital":0,"ibgeState":42,"siafi":8285,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9452,-50.136]}} +{"_id":{"$oid":"66f9d5ae542d90c053667856"},"ibge":2408953,"name":"Rio do Fogo","capital":0,"ibgeState":24,"siafi":422,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.2765,-35.3794]}} +{"_id":{"$oid":"66f9d5ae542d90c053667857"},"ibge":4214607,"name":"Rio do Oeste","capital":0,"ibgeState":42,"siafi":8287,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1952,-49.7989]}} +{"_id":{"$oid":"66f9d5ae542d90c053667858"},"ibge":2926905,"name":"Rio do Pires","capital":0,"ibgeState":29,"siafi":3839,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.1185,-42.2902]}} +{"_id":{"$oid":"66f9d5ae542d90c053667859"},"ibge":3155108,"name":"Rio do Prado","capital":0,"ibgeState":31,"siafi":5101,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.6056,-40.5714]}} +{"_id":{"$oid":"66f9d5ae542d90c05366785a"},"ibge":4214805,"name":"Rio do Sul","capital":0,"ibgeState":42,"siafi":8291,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2156,-49.643]}} +{"_id":{"$oid":"66f9d5ae542d90c05366785b"},"ibge":3155009,"name":"Rio Doce","capital":0,"ibgeState":31,"siafi":5099,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2412,-42.8995]}} +{"_id":{"$oid":"66f9d5ae542d90c05366785c"},"ibge":1718709,"name":"Rio dos Bois","capital":0,"ibgeState":17,"siafi":359,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.34425,-48.5245]}} +{"_id":{"$oid":"66f9d5ae542d90c05366785d"},"ibge":4214706,"name":"Rio dos Cedros","capital":0,"ibgeState":42,"siafi":8289,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7398,-49.2718]}} +{"_id":{"$oid":"66f9d5ae542d90c05366785e"},"ibge":4315552,"name":"Rio dos Índios","capital":0,"ibgeState":43,"siafi":5955,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2973,-52.8417]}} +{"_id":{"$oid":"66f9d5ae542d90c05366785f"},"ibge":3155207,"name":"Rio Espera","capital":0,"ibgeState":31,"siafi":5103,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.855,-43.4721]}} +{"_id":{"$oid":"66f9d5ae542d90c053667860"},"ibge":2611903,"name":"Rio Formoso","capital":0,"ibgeState":26,"siafi":2537,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.6592,-35.1532]}} +{"_id":{"$oid":"66f9d5ae542d90c053667861"},"ibge":4214904,"name":"Rio Fortuna","capital":0,"ibgeState":42,"siafi":8293,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.1244,-49.1068]}} +{"_id":{"$oid":"66f9d5ae542d90c053667862"},"ibge":4315602,"name":"Rio Grande","capital":0,"ibgeState":43,"siafi":8815,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-32.0349,-52.1071]}} +{"_id":{"$oid":"66f9d5ae542d90c053667863"},"ibge":3544103,"name":"Rio Grande da Serra","capital":0,"ibgeState":35,"siafi":6983,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7437,-46.3971]}} +{"_id":{"$oid":"66f9d5ae542d90c053667864"},"ibge":2209005,"name":"Rio Grande do Piauí","capital":0,"ibgeState":22,"siafi":1179,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.78029,-43.1369]}} +{"_id":{"$oid":"66f9d5ae542d90c053667865"},"ibge":2707701,"name":"Rio Largo","capital":0,"ibgeState":27,"siafi":2853,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.47783,-35.8394]}} +{"_id":{"$oid":"66f9d5ae542d90c053667866"},"ibge":3155306,"name":"Rio Manso","capital":0,"ibgeState":31,"siafi":5105,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2666,-44.3069]}} +{"_id":{"$oid":"66f9d5ae542d90c053667867"},"ibge":1506161,"name":"Rio Maria","capital":0,"ibgeState":15,"siafi":569,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.31236,-50.0379]}} +{"_id":{"$oid":"66f9d5ae542d90c053667868"},"ibge":4215000,"name":"Rio Negrinho","capital":0,"ibgeState":42,"siafi":8295,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.2591,-49.5177]}} +{"_id":{"$oid":"66f9d5ae542d90c053667869"},"ibge":5007307,"name":"Rio Negro","capital":0,"ibgeState":50,"siafi":9145,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-19.447,-54.9859]}} +{"_id":{"$oid":"66f9d5ae542d90c05366786a"},"ibge":4122305,"name":"Rio Negro","capital":0,"ibgeState":41,"siafi":7823,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.095,-49.7982]}} +{"_id":{"$oid":"66f9d5ae542d90c05366786b"},"ibge":3155405,"name":"Rio Novo","capital":0,"ibgeState":31,"siafi":5107,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4649,-43.1168]}} +{"_id":{"$oid":"66f9d5ae542d90c05366786c"},"ibge":3204401,"name":"Rio Novo do Sul","capital":0,"ibgeState":32,"siafi":5687,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8556,-40.9388]}} +{"_id":{"$oid":"66f9d5ae542d90c05366786d"},"ibge":3155504,"name":"Rio Paranaíba","capital":0,"ibgeState":31,"siafi":5109,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.1861,-46.2455]}} +{"_id":{"$oid":"66f9d5ae542d90c05366786e"},"ibge":4315701,"name":"Rio Pardo","capital":0,"ibgeState":43,"siafi":8817,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.988,-52.3711]}} +{"_id":{"$oid":"66f9d5ae542d90c05366786f"},"ibge":3155603,"name":"Rio Pardo de Minas","capital":0,"ibgeState":31,"siafi":5111,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.616,-42.5405]}} +{"_id":{"$oid":"66f9d5ae542d90c053667870"},"ibge":3155702,"name":"Rio Piracicaba","capital":0,"ibgeState":31,"siafi":5113,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9284,-43.1829]}} +{"_id":{"$oid":"66f9d5ae542d90c053667871"},"ibge":3155801,"name":"Rio Pomba","capital":0,"ibgeState":31,"siafi":5115,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2712,-43.1696]}} +{"_id":{"$oid":"66f9d5ae542d90c053667872"},"ibge":3155900,"name":"Rio Preto","capital":0,"ibgeState":31,"siafi":5117,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0861,-43.8293]}} +{"_id":{"$oid":"66f9d5ae542d90c053667873"},"ibge":1303569,"name":"Rio Preto da Eva","capital":0,"ibgeState":13,"siafi":9843,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-2.7045,-59.6858]}} +{"_id":{"$oid":"66f9d5ae542d90c053667874"},"ibge":5218789,"name":"Rio Quente","capital":0,"ibgeState":52,"siafi":9995,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.774,-48.7725]}} +{"_id":{"$oid":"66f9d5ae542d90c053667875"},"ibge":2927002,"name":"Rio Real","capital":0,"ibgeState":29,"siafi":3841,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.4814,-37.9332]}} +{"_id":{"$oid":"66f9d5ae542d90c053667876"},"ibge":4215059,"name":"Rio Rufino","capital":0,"ibgeState":42,"siafi":5571,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.8592,-49.7754]}} +{"_id":{"$oid":"66f9d5ae542d90c053667877"},"ibge":1718758,"name":"Rio Sono","capital":0,"ibgeState":17,"siafi":9679,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.35002,-47.888]}} +{"_id":{"$oid":"66f9d5ae542d90c053667878"},"ibge":2512903,"name":"Rio Tinto","capital":0,"ibgeState":25,"siafi":2159,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.80383,-35.0776]}} +{"_id":{"$oid":"66f9d5ae542d90c053667879"},"ibge":5218805,"name":"Rio Verde","capital":0,"ibgeState":52,"siafi":9571,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.7923,-50.9192]}} +{"_id":{"$oid":"66f9d5ae542d90c05366787a"},"ibge":5007406,"name":"Rio Verde de Mato Grosso","capital":0,"ibgeState":50,"siafi":9147,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-18.9249,-54.8434]}} +{"_id":{"$oid":"66f9d5ae542d90c05366787b"},"ibge":3156007,"name":"Rio Vermelho","capital":0,"ibgeState":31,"siafi":5119,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.2922,-43.0018]}} +{"_id":{"$oid":"66f9d5ae542d90c05366787c"},"ibge":3544202,"name":"Riolândia","capital":0,"ibgeState":35,"siafi":6985,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9868,-49.6836]}} +{"_id":{"$oid":"66f9d5ae542d90c05366787d"},"ibge":4315750,"name":"Riozinho","capital":0,"ibgeState":43,"siafi":7353,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.639,-50.4488]}} +{"_id":{"$oid":"66f9d5ae542d90c05366787e"},"ibge":4215075,"name":"Riqueza","capital":0,"ibgeState":42,"siafi":5749,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0653,-53.3265]}} +{"_id":{"$oid":"66f9d5ae542d90c05366787f"},"ibge":3156106,"name":"Ritápolis","capital":0,"ibgeState":31,"siafi":5121,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0276,-44.3204]}} +{"_id":{"$oid":"66f9d5ae542d90c053667880"},"ibge":3543501,"name":"Riversul","capital":0,"ibgeState":35,"siafi":6971,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.829,-49.429]}} +{"_id":{"$oid":"66f9d5ae542d90c053667881"},"ibge":4315800,"name":"Roca Sales","capital":0,"ibgeState":43,"siafi":8819,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.2884,-51.8658]}} +{"_id":{"$oid":"66f9d5ae542d90c053667882"},"ibge":5007505,"name":"Rochedo","capital":0,"ibgeState":50,"siafi":9149,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-19.9565,-54.8848]}} +{"_id":{"$oid":"66f9d5ae542d90c053667883"},"ibge":3156205,"name":"Rochedo de Minas","capital":0,"ibgeState":31,"siafi":5123,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6284,-43.0165]}} +{"_id":{"$oid":"66f9d5ae542d90c053667884"},"ibge":4215109,"name":"Rodeio","capital":0,"ibgeState":42,"siafi":8297,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9243,-49.3649]}} +{"_id":{"$oid":"66f9d5ae542d90c053667885"},"ibge":4315909,"name":"Rodeio Bonito","capital":0,"ibgeState":43,"siafi":8821,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4742,-53.1706]}} +{"_id":{"$oid":"66f9d5ae542d90c053667886"},"ibge":3156304,"name":"Rodeiro","capital":0,"ibgeState":31,"siafi":5125,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2035,-42.8586]}} +{"_id":{"$oid":"66f9d5ae542d90c053667887"},"ibge":2927101,"name":"Rodelas","capital":0,"ibgeState":29,"siafi":3843,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.85021,-38.78]}} +{"_id":{"$oid":"66f9d5ae542d90c053667888"},"ibge":2411007,"name":"Rodolfo Fernandes","capital":0,"ibgeState":24,"siafi":1817,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.78393,-38.0579]}} +{"_id":{"$oid":"66f9d5ae542d90c053667889"},"ibge":1200427,"name":"Rodrigues Alves","capital":0,"ibgeState":12,"siafi":659,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-7.73864,-72.661]}} +{"_id":{"$oid":"66f9d5ae542d90c05366788a"},"ibge":4315958,"name":"Rolador","capital":0,"ibgeState":43,"siafi":1164,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.2566,-54.8186]}} +{"_id":{"$oid":"66f9d5ae542d90c05366788b"},"ibge":4122404,"name":"Rolândia","capital":0,"ibgeState":41,"siafi":7825,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3101,-51.3659]}} +{"_id":{"$oid":"66f9d5ae542d90c05366788c"},"ibge":4316006,"name":"Rolante","capital":0,"ibgeState":43,"siafi":8823,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6462,-50.5819]}} +{"_id":{"$oid":"66f9d5ae542d90c05366788d"},"ibge":1100288,"name":"Rolim de Moura","capital":0,"ibgeState":11,"siafi":29,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.7271,-61.7714]}} +{"_id":{"$oid":"66f9d5ae542d90c05366788e"},"ibge":3156403,"name":"Romaria","capital":0,"ibgeState":31,"siafi":5127,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.8838,-47.5782]}} +{"_id":{"$oid":"66f9d5ae542d90c05366788f"},"ibge":4215208,"name":"Romelândia","capital":0,"ibgeState":42,"siafi":8299,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.6809,-53.3172]}} +{"_id":{"$oid":"66f9d5ae542d90c053667890"},"ibge":4122503,"name":"Roncador","capital":0,"ibgeState":41,"siafi":7827,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.5958,-52.2716]}} +{"_id":{"$oid":"66f9d5ae542d90c053667891"},"ibge":4316105,"name":"Ronda Alta","capital":0,"ibgeState":43,"siafi":8825,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7758,-52.8056]}} +{"_id":{"$oid":"66f9d5ae542d90c053667892"},"ibge":4316204,"name":"Rondinha","capital":0,"ibgeState":43,"siafi":8827,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.8315,-52.9081]}} +{"_id":{"$oid":"66f9d5ae542d90c053667893"},"ibge":5107578,"name":"Rondolândia","capital":0,"ibgeState":51,"siafi":1092,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.8376,-61.4697]}} +{"_id":{"$oid":"66f9d5ae542d90c053667894"},"ibge":4122602,"name":"Rondon","capital":0,"ibgeState":41,"siafi":7829,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.412,-52.7659]}} +{"_id":{"$oid":"66f9d5ae542d90c053667895"},"ibge":1506187,"name":"Rondon do Pará","capital":0,"ibgeState":15,"siafi":573,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.77793,-48.067]}} +{"_id":{"$oid":"66f9d5ae542d90c053667896"},"ibge":5107602,"name":"Rondonópolis","capital":0,"ibgeState":51,"siafi":9151,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-16.4673,-54.6372]}} +{"_id":{"$oid":"66f9d5ae542d90c053667897"},"ibge":4316303,"name":"Roque Gonzales","capital":0,"ibgeState":43,"siafi":8829,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.1297,-55.0266]}} +{"_id":{"$oid":"66f9d5ae542d90c053667898"},"ibge":1400472,"name":"Rorainópolis","capital":0,"ibgeState":14,"siafi":36,"ddd":95,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[0.939956,-60.4389]}} +{"_id":{"$oid":"66f9d5ae542d90c053667899"},"ibge":3544251,"name":"Rosana","capital":0,"ibgeState":35,"siafi":7265,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5782,-53.0603]}} +{"_id":{"$oid":"66f9d5ae542d90c05366789a"},"ibge":2109601,"name":"Rosário","capital":0,"ibgeState":21,"siafi":891,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.93444,-44.2531]}} +{"_id":{"$oid":"66f9d5ae542d90c05366789b"},"ibge":3156452,"name":"Rosário da Limeira","capital":0,"ibgeState":31,"siafi":698,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9812,-42.5112]}} +{"_id":{"$oid":"66f9d5ae542d90c05366789c"},"ibge":2806107,"name":"Rosário do Catete","capital":0,"ibgeState":28,"siafi":3221,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.6904,-37.0357]}} +{"_id":{"$oid":"66f9d5ae542d90c05366789d"},"ibge":4122651,"name":"Rosário do Ivaí","capital":0,"ibgeState":41,"siafi":8473,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.2682,-51.272]}} +{"_id":{"$oid":"66f9d5ae542d90c05366789e"},"ibge":4316402,"name":"Rosário do Sul","capital":0,"ibgeState":43,"siafi":8831,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.2515,-54.9221]}} +{"_id":{"$oid":"66f9d5ae542d90c05366789f"},"ibge":5107701,"name":"Rosário Oeste","capital":0,"ibgeState":51,"siafi":9153,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.8259,-56.4236]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678a0"},"ibge":3544301,"name":"Roseira","capital":0,"ibgeState":35,"siafi":6987,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8938,-45.307]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678a1"},"ibge":2707800,"name":"Roteiro","capital":0,"ibgeState":27,"siafi":2855,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.83503,-35.9782]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678a2"},"ibge":3156502,"name":"Rubelita","capital":0,"ibgeState":31,"siafi":5129,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.4053,-42.261]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678a3"},"ibge":3544400,"name":"Rubiácea","capital":0,"ibgeState":35,"siafi":6989,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3006,-50.7296]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678a4"},"ibge":5218904,"name":"Rubiataba","capital":0,"ibgeState":52,"siafi":9573,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.1617,-49.8048]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678a5"},"ibge":3156601,"name":"Rubim","capital":0,"ibgeState":31,"siafi":5131,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.3775,-40.5397]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678a6"},"ibge":3544509,"name":"Rubinéia","capital":0,"ibgeState":35,"siafi":6991,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1759,-51.007]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678a7"},"ibge":1506195,"name":"Rurópolis","capital":0,"ibgeState":15,"siafi":597,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.10028,-54.9092]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678a8"},"ibge":2311801,"name":"Russas","capital":0,"ibgeState":23,"siafi":1537,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.92673,-37.9721]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678a9"},"ibge":2411106,"name":"Ruy Barbosa","capital":0,"ibgeState":24,"siafi":1819,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.88745,-35.933]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678aa"},"ibge":2927200,"name":"Ruy Barbosa","capital":0,"ibgeState":29,"siafi":3845,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.2816,-40.4931]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678ab"},"ibge":3156700,"name":"Sabará","capital":0,"ibgeState":31,"siafi":5133,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.884,-43.8263]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678ac"},"ibge":4122701,"name":"Sabáudia","capital":0,"ibgeState":41,"siafi":7831,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3155,-51.555]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678ad"},"ibge":3544608,"name":"Sabino","capital":0,"ibgeState":35,"siafi":6993,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4593,-49.5755]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678ae"},"ibge":3156809,"name":"Sabinópolis","capital":0,"ibgeState":31,"siafi":5135,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.6653,-43.0752]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678af"},"ibge":2311900,"name":"Saboeiro","capital":0,"ibgeState":23,"siafi":1539,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.5346,-39.9017]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678b0"},"ibge":3156908,"name":"Sacramento","capital":0,"ibgeState":31,"siafi":5137,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8622,-47.4508]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678b1"},"ibge":4316428,"name":"Sagrada Família","capital":0,"ibgeState":43,"siafi":5987,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7085,-53.1351]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678b2"},"ibge":3544707,"name":"Sagres","capital":0,"ibgeState":35,"siafi":6995,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8823,-50.9594]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678b3"},"ibge":2612000,"name":"Sairé","capital":0,"ibgeState":26,"siafi":2539,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.32864,-35.6967]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678b4"},"ibge":4316436,"name":"Saldanha Marinho","capital":0,"ibgeState":43,"siafi":7339,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3941,-53.097]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678b5"},"ibge":3544806,"name":"Sales","capital":0,"ibgeState":35,"siafi":6997,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3427,-49.4897]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678b6"},"ibge":3544905,"name":"Sales Oliveira","capital":0,"ibgeState":35,"siafi":6999,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7696,-47.8369]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678b7"},"ibge":3545001,"name":"Salesópolis","capital":0,"ibgeState":35,"siafi":7001,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5288,-45.8465]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678b8"},"ibge":4215307,"name":"Salete","capital":0,"ibgeState":42,"siafi":8301,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9798,-49.9988]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678b9"},"ibge":2513000,"name":"Salgadinho","capital":0,"ibgeState":25,"siafi":2161,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.10098,-36.8458]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678ba"},"ibge":2612109,"name":"Salgadinho","capital":0,"ibgeState":26,"siafi":2541,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.9269,-35.6503]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678bb"},"ibge":2806206,"name":"Salgado","capital":0,"ibgeState":28,"siafi":3223,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.0288,-37.4804]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678bc"},"ibge":2513109,"name":"Salgado de São Félix","capital":0,"ibgeState":25,"siafi":2163,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.35337,-35.4305]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678bd"},"ibge":4122800,"name":"Salgado Filho","capital":0,"ibgeState":41,"siafi":7833,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.1777,-53.3631]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678be"},"ibge":2612208,"name":"Salgueiro","capital":0,"ibgeState":26,"siafi":2543,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.07373,-39.1247]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678bf"},"ibge":3157005,"name":"Salinas","capital":0,"ibgeState":31,"siafi":5139,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.1753,-42.2964]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678c0"},"ibge":2927309,"name":"Salinas da Margarida","capital":0,"ibgeState":29,"siafi":3847,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.873,-38.7562]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678c1"},"ibge":1506203,"name":"Salinópolis","capital":0,"ibgeState":15,"siafi":523,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.630815,-47.3465]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678c2"},"ibge":2311959,"name":"Salitre","capital":0,"ibgeState":23,"siafi":1273,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.28398,-40.45]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678c3"},"ibge":3545100,"name":"Salmourão","capital":0,"ibgeState":35,"siafi":7003,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6267,-50.8614]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678c4"},"ibge":2612307,"name":"Saloá","capital":0,"ibgeState":26,"siafi":2545,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.9723,-36.691]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678c5"},"ibge":4215356,"name":"Saltinho","capital":0,"ibgeState":42,"siafi":936,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.6049,-53.0578]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678c6"},"ibge":3545159,"name":"Saltinho","capital":0,"ibgeState":35,"siafi":5445,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8442,-47.6754]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678c7"},"ibge":3545209,"name":"Salto","capital":0,"ibgeState":35,"siafi":7005,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1996,-47.2931]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678c8"},"ibge":3157104,"name":"Salto da Divisa","capital":0,"ibgeState":31,"siafi":5141,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0063,-39.9391]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678c9"},"ibge":3545308,"name":"Salto de Pirapora","capital":0,"ibgeState":35,"siafi":7007,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6474,-47.5743]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678ca"},"ibge":5107750,"name":"Salto do Céu","capital":0,"ibgeState":51,"siafi":8997,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.1303,-58.1317]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678cb"},"ibge":4122909,"name":"Salto do Itararé","capital":0,"ibgeState":41,"siafi":7835,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6074,-49.6354]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678cc"},"ibge":4316451,"name":"Salto do Jacuí","capital":0,"ibgeState":43,"siafi":8975,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.0951,-53.2133]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678cd"},"ibge":4123006,"name":"Salto do Lontra","capital":0,"ibgeState":41,"siafi":7837,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.7813,-53.3135]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678ce"},"ibge":3545407,"name":"Salto Grande","capital":0,"ibgeState":35,"siafi":7009,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8894,-49.9831]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678cf"},"ibge":4215406,"name":"Salto Veloso","capital":0,"ibgeState":42,"siafi":8303,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.903,-51.4043]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678d0"},"ibge":2927408,"name":"Salvador","capital":1,"ibgeState":29,"siafi":3849,"ddd":71,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.9718,-38.5011]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678d1"},"ibge":4316477,"name":"Salvador das Missões","capital":0,"ibgeState":43,"siafi":6061,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.1233,-54.8373]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678d2"},"ibge":4316501,"name":"Salvador do Sul","capital":0,"ibgeState":43,"siafi":8833,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4386,-51.5077]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678d3"},"ibge":1506302,"name":"Salvaterra","capital":0,"ibgeState":15,"siafi":525,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.758444,-48.5139]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678d4"},"ibge":2109700,"name":"Sambaíba","capital":0,"ibgeState":21,"siafi":893,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.13447,-45.3515]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678d5"},"ibge":1718808,"name":"Sampaio","capital":0,"ibgeState":17,"siafi":9727,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.35423,-47.8782]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678d6"},"ibge":4316600,"name":"Sananduva","capital":0,"ibgeState":43,"siafi":8835,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.947,-51.8079]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678d7"},"ibge":5219001,"name":"Sanclerlândia","capital":0,"ibgeState":52,"siafi":9575,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.197,-50.3124]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678d8"},"ibge":1718840,"name":"Sandolândia","capital":0,"ibgeState":17,"siafi":331,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.538,-49.9242]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678d9"},"ibge":3545506,"name":"Sandovalina","capital":0,"ibgeState":35,"siafi":7011,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4551,-51.7648]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678da"},"ibge":4215455,"name":"Sangão","capital":0,"ibgeState":42,"siafi":5547,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6326,-49.1322]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678db"},"ibge":2612406,"name":"Sanharó","capital":0,"ibgeState":26,"siafi":2547,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.36097,-36.5696]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678dc"},"ibge":4317103,"name":"Sant'Ana do Livramento","capital":0,"ibgeState":43,"siafi":8845,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.8773,-55.5392]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678dd"},"ibge":3545605,"name":"Santa Adélia","capital":0,"ibgeState":35,"siafi":7013,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2427,-48.8063]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678de"},"ibge":3545704,"name":"Santa Albertina","capital":0,"ibgeState":35,"siafi":7015,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0311,-50.7297]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678df"},"ibge":4123105,"name":"Santa Amélia","capital":0,"ibgeState":41,"siafi":7839,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2654,-50.4288]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678e0"},"ibge":2927507,"name":"Santa Bárbara","capital":0,"ibgeState":29,"siafi":3851,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.9515,-38.9681]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678e1"},"ibge":3157203,"name":"Santa Bárbara","capital":0,"ibgeState":31,"siafi":5143,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9604,-43.4101]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678e2"},"ibge":3545803,"name":"Santa Bárbara d'Oeste","capital":0,"ibgeState":35,"siafi":7017,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7553,-47.4143]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678e3"},"ibge":5219100,"name":"Santa Bárbara de Goiás","capital":0,"ibgeState":52,"siafi":9577,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.5714,-49.6954]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678e4"},"ibge":3157252,"name":"Santa Bárbara do Leste","capital":0,"ibgeState":31,"siafi":2667,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9753,-42.1457]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678e5"},"ibge":3157278,"name":"Santa Bárbara do Monte Verde","capital":0,"ibgeState":31,"siafi":700,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9592,-43.7027]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678e6"},"ibge":1506351,"name":"Santa Bárbara do Pará","capital":0,"ibgeState":15,"siafi":369,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.19219,-48.238]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678e7"},"ibge":4316709,"name":"Santa Bárbara do Sul","capital":0,"ibgeState":43,"siafi":8837,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3653,-53.251]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678e8"},"ibge":3157302,"name":"Santa Bárbara do Tugúrio","capital":0,"ibgeState":31,"siafi":5145,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2431,-43.5607]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678e9"},"ibge":3546009,"name":"Santa Branca","capital":0,"ibgeState":35,"siafi":7021,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3933,-45.8875]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678ea"},"ibge":2927606,"name":"Santa Brígida","capital":0,"ibgeState":29,"siafi":3853,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.73227,-38.1209]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678eb"},"ibge":5107248,"name":"Santa Carmem","capital":0,"ibgeState":51,"siafi":123,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.9125,-55.2263]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678ec"},"ibge":4215505,"name":"Santa Cecília","capital":0,"ibgeState":42,"siafi":8305,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9592,-50.4252]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678ed"},"ibge":2513158,"name":"Santa Cecília","capital":0,"ibgeState":25,"siafi":510,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.7389,-35.8764]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678ee"},"ibge":4123204,"name":"Santa Cecília do Pavão","capital":0,"ibgeState":41,"siafi":7841,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5201,-50.7835]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678ef"},"ibge":4316733,"name":"Santa Cecília do Sul","capital":0,"ibgeState":43,"siafi":1166,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.1609,-51.9279]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678f0"},"ibge":3546108,"name":"Santa Clara d'Oeste","capital":0,"ibgeState":35,"siafi":7023,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.09,-50.9491]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678f1"},"ibge":4316758,"name":"Santa Clara do Sul","capital":0,"ibgeState":43,"siafi":6033,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4747,-52.0843]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678f2"},"ibge":2411205,"name":"Santa Cruz","capital":0,"ibgeState":24,"siafi":1823,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.22475,-36.0193]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678f3"},"ibge":2513208,"name":"Santa Cruz","capital":0,"ibgeState":25,"siafi":2165,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.5237,-38.0617]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678f4"},"ibge":2612455,"name":"Santa Cruz","capital":0,"ibgeState":26,"siafi":2297,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.24153,-40.3434]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678f5"},"ibge":2927705,"name":"Santa Cruz Cabrália","capital":0,"ibgeState":29,"siafi":3855,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.2825,-39.0295]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678f6"},"ibge":2612471,"name":"Santa Cruz da Baixa Verde","capital":0,"ibgeState":26,"siafi":2639,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.81339,-38.1476]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678f7"},"ibge":3546207,"name":"Santa Cruz da Conceição","capital":0,"ibgeState":35,"siafi":7025,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1405,-47.4512]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678f8"},"ibge":3546256,"name":"Santa Cruz da Esperança","capital":0,"ibgeState":35,"siafi":820,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2951,-47.4304]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678f9"},"ibge":2927804,"name":"Santa Cruz da Vitória","capital":0,"ibgeState":29,"siafi":3857,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.964,-39.8115]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678fa"},"ibge":3546306,"name":"Santa Cruz das Palmeiras","capital":0,"ibgeState":35,"siafi":7027,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8235,-47.248]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678fb"},"ibge":5219209,"name":"Santa Cruz de Goiás","capital":0,"ibgeState":52,"siafi":9579,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.3155,-48.4809]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678fc"},"ibge":3157336,"name":"Santa Cruz de Minas","capital":0,"ibgeState":31,"siafi":702,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1241,-44.2202]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678fd"},"ibge":4123303,"name":"Santa Cruz de Monte Castelo","capital":0,"ibgeState":41,"siafi":7843,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9582,-53.2949]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678fe"},"ibge":3157377,"name":"Santa Cruz de Salinas","capital":0,"ibgeState":31,"siafi":704,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0967,-41.7418]}} +{"_id":{"$oid":"66f9d5ae542d90c0536678ff"},"ibge":1506401,"name":"Santa Cruz do Arari","capital":0,"ibgeState":15,"siafi":527,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.661019,-49.1771]}} +{"_id":{"$oid":"66f9d5ae542d90c053667900"},"ibge":2612505,"name":"Santa Cruz do Capibaribe","capital":0,"ibgeState":26,"siafi":2549,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.94802,-36.2061]}} +{"_id":{"$oid":"66f9d5ae542d90c053667901"},"ibge":3157401,"name":"Santa Cruz do Escalvado","capital":0,"ibgeState":31,"siafi":5147,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2372,-42.8169]}} +{"_id":{"$oid":"66f9d5ae542d90c053667902"},"ibge":2209104,"name":"Santa Cruz do Piauí","capital":0,"ibgeState":22,"siafi":1181,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.1785,-41.7609]}} +{"_id":{"$oid":"66f9d5ae542d90c053667903"},"ibge":3546405,"name":"Santa Cruz do Rio Pardo","capital":0,"ibgeState":35,"siafi":7029,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8988,-49.6354]}} +{"_id":{"$oid":"66f9d5ae542d90c053667904"},"ibge":4316808,"name":"Santa Cruz do Sul","capital":0,"ibgeState":43,"siafi":8839,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.722,-52.4343]}} +{"_id":{"$oid":"66f9d5ae542d90c053667905"},"ibge":5107743,"name":"Santa Cruz do Xingu","capital":0,"ibgeState":51,"siafi":1094,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.1532,-52.3953]}} +{"_id":{"$oid":"66f9d5ae542d90c053667906"},"ibge":2209153,"name":"Santa Cruz dos Milagres","capital":0,"ibgeState":22,"siafi":1295,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.80581,-41.9506]}} +{"_id":{"$oid":"66f9d5ae542d90c053667907"},"ibge":3157500,"name":"Santa Efigênia de Minas","capital":0,"ibgeState":31,"siafi":5149,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.8235,-42.4388]}} +{"_id":{"$oid":"66f9d5ae542d90c053667908"},"ibge":3546504,"name":"Santa Ernestina","capital":0,"ibgeState":35,"siafi":7031,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4618,-48.3953]}} +{"_id":{"$oid":"66f9d5ae542d90c053667909"},"ibge":4123402,"name":"Santa Fé","capital":0,"ibgeState":41,"siafi":7845,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.04,-51.808]}} +{"_id":{"$oid":"66f9d5ae542d90c05366790a"},"ibge":5219258,"name":"Santa Fé de Goiás","capital":0,"ibgeState":52,"siafi":9743,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.7664,-51.1037]}} +{"_id":{"$oid":"66f9d5ae542d90c05366790b"},"ibge":3157609,"name":"Santa Fé de Minas","capital":0,"ibgeState":31,"siafi":5151,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.6859,-45.4102]}} +{"_id":{"$oid":"66f9d5ae542d90c05366790c"},"ibge":1718865,"name":"Santa Fé do Araguaia","capital":0,"ibgeState":17,"siafi":195,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.15803,-48.7165]}} +{"_id":{"$oid":"66f9d5ae542d90c05366790d"},"ibge":3546603,"name":"Santa Fé do Sul","capital":0,"ibgeState":35,"siafi":7033,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2083,-50.932]}} +{"_id":{"$oid":"66f9d5ae542d90c05366790e"},"ibge":2209203,"name":"Santa Filomena","capital":0,"ibgeState":22,"siafi":1183,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.11228,-45.9116]}} +{"_id":{"$oid":"66f9d5ae542d90c05366790f"},"ibge":2612554,"name":"Santa Filomena","capital":0,"ibgeState":26,"siafi":556,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.16688,-40.6079]}} +{"_id":{"$oid":"66f9d5ae542d90c053667910"},"ibge":2109759,"name":"Santa Filomena do Maranhão","capital":0,"ibgeState":21,"siafi":222,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.49671,-44.5638]}} +{"_id":{"$oid":"66f9d5ae542d90c053667911"},"ibge":3546702,"name":"Santa Gertrudes","capital":0,"ibgeState":35,"siafi":7035,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4572,-47.5272]}} +{"_id":{"$oid":"66f9d5ae542d90c053667912"},"ibge":4123501,"name":"Santa Helena","capital":0,"ibgeState":41,"siafi":7971,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.8585,-54.336]}} +{"_id":{"$oid":"66f9d5ae542d90c053667913"},"ibge":4215554,"name":"Santa Helena","capital":0,"ibgeState":42,"siafi":5751,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.937,-53.6214]}} +{"_id":{"$oid":"66f9d5ae542d90c053667914"},"ibge":2109809,"name":"Santa Helena","capital":0,"ibgeState":21,"siafi":895,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.24426,-45.29]}} +{"_id":{"$oid":"66f9d5ae542d90c053667915"},"ibge":2513307,"name":"Santa Helena","capital":0,"ibgeState":25,"siafi":2167,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.7176,-38.6427]}} +{"_id":{"$oid":"66f9d5ae542d90c053667916"},"ibge":5219308,"name":"Santa Helena de Goiás","capital":0,"ibgeState":52,"siafi":9581,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.8115,-50.5977]}} +{"_id":{"$oid":"66f9d5ae542d90c053667917"},"ibge":3157658,"name":"Santa Helena de Minas","capital":0,"ibgeState":31,"siafi":706,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.9707,-40.6727]}} +{"_id":{"$oid":"66f9d5ae542d90c053667918"},"ibge":2927903,"name":"Santa Inês","capital":0,"ibgeState":29,"siafi":3859,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.2793,-39.814]}} +{"_id":{"$oid":"66f9d5ae542d90c053667919"},"ibge":4123600,"name":"Santa Inês","capital":0,"ibgeState":41,"siafi":7847,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6376,-51.9024]}} +{"_id":{"$oid":"66f9d5ae542d90c05366791a"},"ibge":2513356,"name":"Santa Inês","capital":0,"ibgeState":25,"siafi":512,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.621,-38.554]}} +{"_id":{"$oid":"66f9d5ae542d90c05366791b"},"ibge":2109908,"name":"Santa Inês","capital":0,"ibgeState":21,"siafi":957,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.65112,-45.3774]}} +{"_id":{"$oid":"66f9d5ae542d90c05366791c"},"ibge":3546801,"name":"Santa Isabel","capital":0,"ibgeState":35,"siafi":7037,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3172,-46.2237]}} +{"_id":{"$oid":"66f9d5ae542d90c05366791d"},"ibge":5219357,"name":"Santa Isabel","capital":0,"ibgeState":52,"siafi":9689,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.2958,-49.4259]}} +{"_id":{"$oid":"66f9d5ae542d90c05366791e"},"ibge":4123709,"name":"Santa Isabel do Ivaí","capital":0,"ibgeState":41,"siafi":7849,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0025,-53.1989]}} +{"_id":{"$oid":"66f9d5ae542d90c05366791f"},"ibge":1303601,"name":"Santa Isabel do Rio Negro","capital":0,"ibgeState":13,"siafi":237,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-0.410824,-65.0092]}} +{"_id":{"$oid":"66f9d5ae542d90c053667920"},"ibge":4123808,"name":"Santa Izabel do Oeste","capital":0,"ibgeState":41,"siafi":7851,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.8217,-53.4801]}} +{"_id":{"$oid":"66f9d5ae542d90c053667921"},"ibge":1506500,"name":"Santa Izabel do Pará","capital":0,"ibgeState":15,"siafi":529,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.29686,-48.1606]}} +{"_id":{"$oid":"66f9d5ae542d90c053667922"},"ibge":3157708,"name":"Santa Juliana","capital":0,"ibgeState":31,"siafi":5153,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.3108,-47.5322]}} +{"_id":{"$oid":"66f9d5ae542d90c053667923"},"ibge":3204500,"name":"Santa Leopoldina","capital":0,"ibgeState":32,"siafi":5689,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0999,-40.527]}} +{"_id":{"$oid":"66f9d5ae542d90c053667924"},"ibge":3546900,"name":"Santa Lúcia","capital":0,"ibgeState":35,"siafi":7039,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.685,-48.0885]}} +{"_id":{"$oid":"66f9d5ae542d90c053667925"},"ibge":4123824,"name":"Santa Lúcia","capital":0,"ibgeState":41,"siafi":5469,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4104,-53.5638]}} +{"_id":{"$oid":"66f9d5ae542d90c053667926"},"ibge":2209302,"name":"Santa Luz","capital":0,"ibgeState":22,"siafi":1185,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.9488,-44.1296]}} +{"_id":{"$oid":"66f9d5ae542d90c053667927"},"ibge":2110005,"name":"Santa Luzia","capital":0,"ibgeState":21,"siafi":897,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.06873,-45.69]}} +{"_id":{"$oid":"66f9d5ae542d90c053667928"},"ibge":2928059,"name":"Santa Luzia","capital":0,"ibgeState":29,"siafi":3987,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.4342,-39.3287]}} +{"_id":{"$oid":"66f9d5ae542d90c053667929"},"ibge":3157807,"name":"Santa Luzia","capital":0,"ibgeState":31,"siafi":5155,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7548,-43.8497]}} +{"_id":{"$oid":"66f9d5ae542d90c05366792a"},"ibge":2513406,"name":"Santa Luzia","capital":0,"ibgeState":25,"siafi":2169,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.86092,-36.9178]}} +{"_id":{"$oid":"66f9d5ae542d90c05366792b"},"ibge":1100296,"name":"Santa Luzia D'Oeste","capital":0,"ibgeState":11,"siafi":43,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.9074,-61.7777]}} +{"_id":{"$oid":"66f9d5ae542d90c05366792c"},"ibge":2806305,"name":"Santa Luzia do Itanhy","capital":0,"ibgeState":28,"siafi":3225,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.3536,-37.4586]}} +{"_id":{"$oid":"66f9d5ae542d90c05366792d"},"ibge":2707909,"name":"Santa Luzia do Norte","capital":0,"ibgeState":27,"siafi":2857,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.6037,-35.8232]}} +{"_id":{"$oid":"66f9d5ae542d90c05366792e"},"ibge":1506559,"name":"Santa Luzia do Pará","capital":0,"ibgeState":15,"siafi":371,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.52147,-46.9008]}} +{"_id":{"$oid":"66f9d5ae542d90c05366792f"},"ibge":2110039,"name":"Santa Luzia do Paruá","capital":0,"ibgeState":21,"siafi":1285,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.51123,-45.7801]}} +{"_id":{"$oid":"66f9d5ae542d90c053667930"},"ibge":3157906,"name":"Santa Margarida","capital":0,"ibgeState":31,"siafi":5157,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3839,-42.2519]}} +{"_id":{"$oid":"66f9d5ae542d90c053667931"},"ibge":4316972,"name":"Santa Margarida do Sul","capital":0,"ibgeState":43,"siafi":1168,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.3393,-54.0817]}} +{"_id":{"$oid":"66f9d5ae542d90c053667932"},"ibge":4316907,"name":"Santa Maria","capital":0,"ibgeState":43,"siafi":8841,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6868,-53.8149]}} +{"_id":{"$oid":"66f9d5ae542d90c053667933"},"ibge":2409332,"name":"Santa Maria","capital":0,"ibgeState":24,"siafi":424,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.83802,-35.6914]}} +{"_id":{"$oid":"66f9d5ae542d90c053667934"},"ibge":2612604,"name":"Santa Maria da Boa Vista","capital":0,"ibgeState":26,"siafi":2551,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.79766,-39.8241]}} +{"_id":{"$oid":"66f9d5ae542d90c053667935"},"ibge":3547007,"name":"Santa Maria da Serra","capital":0,"ibgeState":35,"siafi":7041,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5661,-48.1593]}} +{"_id":{"$oid":"66f9d5ae542d90c053667936"},"ibge":2928109,"name":"Santa Maria da Vitória","capital":0,"ibgeState":29,"siafi":3863,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.3859,-44.2011]}} +{"_id":{"$oid":"66f9d5ae542d90c053667937"},"ibge":1506583,"name":"Santa Maria das Barreiras","capital":0,"ibgeState":15,"siafi":599,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.85784,-49.7215]}} +{"_id":{"$oid":"66f9d5ae542d90c053667938"},"ibge":3158003,"name":"Santa Maria de Itabira","capital":0,"ibgeState":31,"siafi":5159,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.4431,-43.1064]}} +{"_id":{"$oid":"66f9d5ae542d90c053667939"},"ibge":3204559,"name":"Santa Maria de Jetibá","capital":0,"ibgeState":32,"siafi":5725,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0253,-40.7439]}} +{"_id":{"$oid":"66f9d5ae542d90c05366793a"},"ibge":2612703,"name":"Santa Maria do Cambucá","capital":0,"ibgeState":26,"siafi":2553,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.83676,-35.8941]}} +{"_id":{"$oid":"66f9d5ae542d90c05366793b"},"ibge":4316956,"name":"Santa Maria do Herval","capital":0,"ibgeState":43,"siafi":7337,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4902,-50.9919]}} +{"_id":{"$oid":"66f9d5ae542d90c05366793c"},"ibge":4123857,"name":"Santa Maria do Oeste","capital":0,"ibgeState":41,"siafi":5505,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.9377,-51.8696]}} +{"_id":{"$oid":"66f9d5ae542d90c05366793d"},"ibge":1506609,"name":"Santa Maria do Pará","capital":0,"ibgeState":15,"siafi":531,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.35392,-47.5712]}} +{"_id":{"$oid":"66f9d5ae542d90c05366793e"},"ibge":3158102,"name":"Santa Maria do Salto","capital":0,"ibgeState":31,"siafi":5161,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.2479,-40.1512]}} +{"_id":{"$oid":"66f9d5ae542d90c05366793f"},"ibge":3158201,"name":"Santa Maria do Suaçuí","capital":0,"ibgeState":31,"siafi":5163,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.1896,-42.4139]}} +{"_id":{"$oid":"66f9d5ae542d90c053667940"},"ibge":1718881,"name":"Santa Maria do Tocantins","capital":0,"ibgeState":17,"siafi":361,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.8046,-47.7887]}} +{"_id":{"$oid":"66f9d5ae542d90c053667941"},"ibge":3304607,"name":"Santa Maria Madalena","capital":0,"ibgeState":33,"siafi":5891,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9547,-42.0098]}} +{"_id":{"$oid":"66f9d5ae542d90c053667942"},"ibge":4123907,"name":"Santa Mariana","capital":0,"ibgeState":41,"siafi":7853,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1465,-50.5167]}} +{"_id":{"$oid":"66f9d5ae542d90c053667943"},"ibge":3547106,"name":"Santa Mercedes","capital":0,"ibgeState":35,"siafi":7043,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3495,-51.7564]}} +{"_id":{"$oid":"66f9d5ae542d90c053667944"},"ibge":4123956,"name":"Santa Mônica","capital":0,"ibgeState":41,"siafi":5519,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.108,-53.1103]}} +{"_id":{"$oid":"66f9d5ae542d90c053667945"},"ibge":2312205,"name":"Santa Quitéria","capital":0,"ibgeState":23,"siafi":1545,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.32608,-40.1523]}} +{"_id":{"$oid":"66f9d5ae542d90c053667946"},"ibge":2110104,"name":"Santa Quitéria do Maranhão","capital":0,"ibgeState":21,"siafi":899,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.49308,-42.5688]}} +{"_id":{"$oid":"66f9d5ae542d90c053667947"},"ibge":2110203,"name":"Santa Rita","capital":0,"ibgeState":21,"siafi":901,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.14241,-44.3211]}} +{"_id":{"$oid":"66f9d5ae542d90c053667948"},"ibge":2513703,"name":"Santa Rita","capital":0,"ibgeState":25,"siafi":2175,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.11724,-34.9753]}} +{"_id":{"$oid":"66f9d5ae542d90c053667949"},"ibge":3547403,"name":"Santa Rita d'Oeste","capital":0,"ibgeState":35,"siafi":7049,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1414,-50.8358]}} +{"_id":{"$oid":"66f9d5ae542d90c05366794a"},"ibge":3159209,"name":"Santa Rita de Caldas","capital":0,"ibgeState":31,"siafi":5183,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0292,-46.3385]}} +{"_id":{"$oid":"66f9d5ae542d90c05366794b"},"ibge":2928406,"name":"Santa Rita de Cássia","capital":0,"ibgeState":29,"siafi":3549,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.0063,-44.5255]}} +{"_id":{"$oid":"66f9d5ae542d90c05366794c"},"ibge":3159407,"name":"Santa Rita de Ibitipoca","capital":0,"ibgeState":31,"siafi":5187,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5658,-43.9163]}} +{"_id":{"$oid":"66f9d5ae542d90c05366794d"},"ibge":3159308,"name":"Santa Rita de Jacutinga","capital":0,"ibgeState":31,"siafi":5185,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1474,-44.0977]}} +{"_id":{"$oid":"66f9d5ae542d90c05366794e"},"ibge":3159357,"name":"Santa Rita de Minas","capital":0,"ibgeState":31,"siafi":2669,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.876,-42.1363]}} +{"_id":{"$oid":"66f9d5ae542d90c05366794f"},"ibge":5219407,"name":"Santa Rita do Araguaia","capital":0,"ibgeState":52,"siafi":9583,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.3269,-53.2012]}} +{"_id":{"$oid":"66f9d5ae542d90c053667950"},"ibge":3159506,"name":"Santa Rita do Itueto","capital":0,"ibgeState":31,"siafi":5189,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.3576,-41.3821]}} +{"_id":{"$oid":"66f9d5ae542d90c053667951"},"ibge":5219456,"name":"Santa Rita do Novo Destino","capital":0,"ibgeState":52,"siafi":1062,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.1351,-49.1203]}} +{"_id":{"$oid":"66f9d5ae542d90c053667952"},"ibge":5007554,"name":"Santa Rita do Pardo","capital":0,"ibgeState":50,"siafi":9745,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-21.3016,-52.8333]}} +{"_id":{"$oid":"66f9d5ae542d90c053667953"},"ibge":3547502,"name":"Santa Rita do Passa Quatro","capital":0,"ibgeState":35,"siafi":7051,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7083,-47.478]}} +{"_id":{"$oid":"66f9d5ae542d90c053667954"},"ibge":3159605,"name":"Santa Rita do Sapucaí","capital":0,"ibgeState":31,"siafi":5191,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2461,-45.7034]}} +{"_id":{"$oid":"66f9d5ae542d90c053667955"},"ibge":1718899,"name":"Santa Rita do Tocantins","capital":0,"ibgeState":17,"siafi":96,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.8617,-48.9161]}} +{"_id":{"$oid":"66f9d5ae542d90c053667956"},"ibge":5107768,"name":"Santa Rita do Trivelato","capital":0,"ibgeState":51,"siafi":1096,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-13.8146,-55.2706]}} +{"_id":{"$oid":"66f9d5ae542d90c053667957"},"ibge":4317202,"name":"Santa Rosa","capital":0,"ibgeState":43,"siafi":8847,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.8702,-54.4796]}} +{"_id":{"$oid":"66f9d5ae542d90c053667958"},"ibge":3159704,"name":"Santa Rosa da Serra","capital":0,"ibgeState":31,"siafi":5193,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5186,-45.9611]}} +{"_id":{"$oid":"66f9d5ae542d90c053667959"},"ibge":5219506,"name":"Santa Rosa de Goiás","capital":0,"ibgeState":52,"siafi":9585,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.084,-49.4953]}} +{"_id":{"$oid":"66f9d5ae542d90c05366795a"},"ibge":4215604,"name":"Santa Rosa de Lima","capital":0,"ibgeState":42,"siafi":8307,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.0331,-49.133]}} +{"_id":{"$oid":"66f9d5ae542d90c05366795b"},"ibge":2806503,"name":"Santa Rosa de Lima","capital":0,"ibgeState":28,"siafi":3229,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.6434,-37.1931]}} +{"_id":{"$oid":"66f9d5ae542d90c05366795c"},"ibge":3547601,"name":"Santa Rosa de Viterbo","capital":0,"ibgeState":35,"siafi":7053,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4776,-47.3622]}} +{"_id":{"$oid":"66f9d5ae542d90c05366795d"},"ibge":2209377,"name":"Santa Rosa do Piauí","capital":0,"ibgeState":22,"siafi":2261,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.79581,-42.2814]}} +{"_id":{"$oid":"66f9d5ae542d90c05366795e"},"ibge":1200435,"name":"Santa Rosa do Purus","capital":0,"ibgeState":12,"siafi":661,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-9.44652,-70.4902]}} +{"_id":{"$oid":"66f9d5ae542d90c05366795f"},"ibge":4215653,"name":"Santa Rosa do Sul","capital":0,"ibgeState":42,"siafi":9967,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.1313,-49.7109]}} +{"_id":{"$oid":"66f9d5ae542d90c053667960"},"ibge":1718907,"name":"Santa Rosa do Tocantins","capital":0,"ibgeState":17,"siafi":9729,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.4474,-48.1216]}} +{"_id":{"$oid":"66f9d5ae542d90c053667961"},"ibge":3547650,"name":"Santa Salete","capital":0,"ibgeState":35,"siafi":822,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2429,-50.6887]}} +{"_id":{"$oid":"66f9d5ae542d90c053667962"},"ibge":3204609,"name":"Santa Teresa","capital":0,"ibgeState":32,"siafi":5691,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9363,-40.5979]}} +{"_id":{"$oid":"66f9d5ae542d90c053667963"},"ibge":2928505,"name":"Santa Teresinha","capital":0,"ibgeState":29,"siafi":3869,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.7697,-39.5215]}} +{"_id":{"$oid":"66f9d5ae542d90c053667964"},"ibge":2513802,"name":"Santa Teresinha","capital":0,"ibgeState":25,"siafi":2177,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.07964,-37.4435]}} +{"_id":{"$oid":"66f9d5ae542d90c053667965"},"ibge":4317251,"name":"Santa Tereza","capital":0,"ibgeState":43,"siafi":5995,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.1655,-51.7351]}} +{"_id":{"$oid":"66f9d5ae542d90c053667966"},"ibge":5219605,"name":"Santa Tereza de Goiás","capital":0,"ibgeState":52,"siafi":9587,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.7138,-49.0144]}} +{"_id":{"$oid":"66f9d5ae542d90c053667967"},"ibge":4124020,"name":"Santa Tereza do Oeste","capital":0,"ibgeState":41,"siafi":9969,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.0543,-53.6274]}} +{"_id":{"$oid":"66f9d5ae542d90c053667968"},"ibge":1719004,"name":"Santa Tereza do Tocantins","capital":0,"ibgeState":17,"siafi":9731,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.2746,-47.8033]}} +{"_id":{"$oid":"66f9d5ae542d90c053667969"},"ibge":4215679,"name":"Santa Terezinha","capital":0,"ibgeState":42,"siafi":5555,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7813,-50.009]}} +{"_id":{"$oid":"66f9d5ae542d90c05366796a"},"ibge":5107776,"name":"Santa Terezinha","capital":0,"ibgeState":51,"siafi":9197,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.4704,-50.514]}} +{"_id":{"$oid":"66f9d5ae542d90c05366796b"},"ibge":2612802,"name":"Santa Terezinha","capital":0,"ibgeState":26,"siafi":2555,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.37696,-37.4787]}} +{"_id":{"$oid":"66f9d5ae542d90c05366796c"},"ibge":5219704,"name":"Santa Terezinha de Goiás","capital":0,"ibgeState":52,"siafi":9589,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.4326,-49.7091]}} +{"_id":{"$oid":"66f9d5ae542d90c05366796d"},"ibge":4124053,"name":"Santa Terezinha de Itaipu","capital":0,"ibgeState":41,"siafi":8467,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4391,-54.402]}} +{"_id":{"$oid":"66f9d5ae542d90c05366796e"},"ibge":4215687,"name":"Santa Terezinha do Progresso","capital":0,"ibgeState":42,"siafi":938,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.624,-53.1997]}} +{"_id":{"$oid":"66f9d5ae542d90c05366796f"},"ibge":1720002,"name":"Santa Terezinha do Tocantins","capital":0,"ibgeState":17,"siafi":98,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.44438,-47.6684]}} +{"_id":{"$oid":"66f9d5ae542d90c053667970"},"ibge":3159803,"name":"Santa Vitória","capital":0,"ibgeState":31,"siafi":5195,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.8414,-50.1208]}} +{"_id":{"$oid":"66f9d5ae542d90c053667971"},"ibge":4317301,"name":"Santa Vitória do Palmar","capital":0,"ibgeState":43,"siafi":8849,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-33.525,-53.3717]}} +{"_id":{"$oid":"66f9d5ae542d90c053667972"},"ibge":2928000,"name":"Santaluz","capital":0,"ibgeState":29,"siafi":3861,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.2508,-39.375]}} +{"_id":{"$oid":"66f9d5ae542d90c053667973"},"ibge":2928208,"name":"Santana","capital":0,"ibgeState":29,"siafi":3865,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.9792,-44.0506]}} +{"_id":{"$oid":"66f9d5ae542d90c053667974"},"ibge":1600600,"name":"Santana","capital":0,"ibgeState":16,"siafi":615,"ddd":96,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.045434,-51.1729]}} +{"_id":{"$oid":"66f9d5ae542d90c053667975"},"ibge":4317004,"name":"Santana da Boa Vista","capital":0,"ibgeState":43,"siafi":8843,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.8697,-53.11]}} +{"_id":{"$oid":"66f9d5ae542d90c053667976"},"ibge":3547205,"name":"Santana da Ponte Pensa","capital":0,"ibgeState":35,"siafi":7045,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2523,-50.8014]}} +{"_id":{"$oid":"66f9d5ae542d90c053667977"},"ibge":3158300,"name":"Santana da Vargem","capital":0,"ibgeState":31,"siafi":5165,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2449,-45.5005]}} +{"_id":{"$oid":"66f9d5ae542d90c053667978"},"ibge":3158409,"name":"Santana de Cataguases","capital":0,"ibgeState":31,"siafi":5167,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2893,-42.5524]}} +{"_id":{"$oid":"66f9d5ae542d90c053667979"},"ibge":2513505,"name":"Santana de Mangueira","capital":0,"ibgeState":25,"siafi":2171,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.54705,-38.3236]}} +{"_id":{"$oid":"66f9d5ae542d90c05366797a"},"ibge":3547304,"name":"Santana de Parnaíba","capital":0,"ibgeState":35,"siafi":7047,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4439,-46.9178]}} +{"_id":{"$oid":"66f9d5ae542d90c05366797b"},"ibge":3158508,"name":"Santana de Pirapama","capital":0,"ibgeState":31,"siafi":5169,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.9962,-44.0409]}} +{"_id":{"$oid":"66f9d5ae542d90c05366797c"},"ibge":2312007,"name":"Santana do Acaraú","capital":0,"ibgeState":23,"siafi":1541,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.46144,-40.2118]}} +{"_id":{"$oid":"66f9d5ae542d90c05366797d"},"ibge":1506708,"name":"Santana do Araguaia","capital":0,"ibgeState":15,"siafi":533,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.3281,-50.35]}} +{"_id":{"$oid":"66f9d5ae542d90c05366797e"},"ibge":2312106,"name":"Santana do Cariri","capital":0,"ibgeState":23,"siafi":1543,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.17613,-39.7302]}} +{"_id":{"$oid":"66f9d5ae542d90c05366797f"},"ibge":3158607,"name":"Santana do Deserto","capital":0,"ibgeState":31,"siafi":5171,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9512,-43.1583]}} +{"_id":{"$oid":"66f9d5ae542d90c053667980"},"ibge":3158706,"name":"Santana do Garambéu","capital":0,"ibgeState":31,"siafi":5173,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5983,-44.105]}} +{"_id":{"$oid":"66f9d5ae542d90c053667981"},"ibge":2708006,"name":"Santana do Ipanema","capital":0,"ibgeState":27,"siafi":2859,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.36999,-37.248]}} +{"_id":{"$oid":"66f9d5ae542d90c053667982"},"ibge":4124004,"name":"Santana do Itararé","capital":0,"ibgeState":41,"siafi":7855,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7587,-49.6293]}} +{"_id":{"$oid":"66f9d5ae542d90c053667983"},"ibge":3158805,"name":"Santana do Jacaré","capital":0,"ibgeState":31,"siafi":5175,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9007,-45.1285]}} +{"_id":{"$oid":"66f9d5ae542d90c053667984"},"ibge":3158904,"name":"Santana do Manhuaçu","capital":0,"ibgeState":31,"siafi":5177,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1031,-41.9278]}} +{"_id":{"$oid":"66f9d5ae542d90c053667985"},"ibge":2110237,"name":"Santana do Maranhão","capital":0,"ibgeState":21,"siafi":224,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.109,-42.4064]}} +{"_id":{"$oid":"66f9d5ae542d90c053667986"},"ibge":2411403,"name":"Santana do Matos","capital":0,"ibgeState":24,"siafi":1827,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.94605,-36.6578]}} +{"_id":{"$oid":"66f9d5ae542d90c053667987"},"ibge":2708105,"name":"Santana do Mundaú","capital":0,"ibgeState":27,"siafi":2861,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.17141,-36.2176]}} +{"_id":{"$oid":"66f9d5ae542d90c053667988"},"ibge":3158953,"name":"Santana do Paraíso","capital":0,"ibgeState":31,"siafi":2673,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.3661,-42.5446]}} +{"_id":{"$oid":"66f9d5ae542d90c053667989"},"ibge":2209351,"name":"Santana do Piauí","capital":0,"ibgeState":22,"siafi":2281,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.94696,-41.5178]}} +{"_id":{"$oid":"66f9d5ae542d90c05366798a"},"ibge":3159001,"name":"Santana do Riacho","capital":0,"ibgeState":31,"siafi":5179,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.1662,-43.722]}} +{"_id":{"$oid":"66f9d5ae542d90c05366798b"},"ibge":2806404,"name":"Santana do São Francisco","capital":0,"ibgeState":28,"siafi":2647,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.2922,-36.6105]}} +{"_id":{"$oid":"66f9d5ae542d90c05366798c"},"ibge":2411429,"name":"Santana do Seridó","capital":0,"ibgeState":24,"siafi":1825,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.76643,-36.7312]}} +{"_id":{"$oid":"66f9d5ae542d90c05366798d"},"ibge":2513604,"name":"Santana dos Garrotes","capital":0,"ibgeState":25,"siafi":2173,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.38162,-37.9819]}} +{"_id":{"$oid":"66f9d5ae542d90c05366798e"},"ibge":3159100,"name":"Santana dos Montes","capital":0,"ibgeState":31,"siafi":5181,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7868,-43.6949]}} +{"_id":{"$oid":"66f9d5ae542d90c05366798f"},"ibge":2928307,"name":"Santanópolis","capital":0,"ibgeState":29,"siafi":3867,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.0311,-38.8694]}} +{"_id":{"$oid":"66f9d5ae542d90c053667990"},"ibge":1506807,"name":"Santarém","capital":0,"ibgeState":15,"siafi":535,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.43849,-54.6996]}} +{"_id":{"$oid":"66f9d5ae542d90c053667991"},"ibge":1506906,"name":"Santarém Novo","capital":0,"ibgeState":15,"siafi":537,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.93097,-47.3855]}} +{"_id":{"$oid":"66f9d5ae542d90c053667992"},"ibge":4317400,"name":"Santiago","capital":0,"ibgeState":43,"siafi":8851,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.1897,-54.8666]}} +{"_id":{"$oid":"66f9d5ae542d90c053667993"},"ibge":4215695,"name":"Santiago do Sul","capital":0,"ibgeState":42,"siafi":940,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.6388,-52.6799]}} +{"_id":{"$oid":"66f9d5ae542d90c053667994"},"ibge":5107263,"name":"Santo Afonso","capital":0,"ibgeState":51,"siafi":115,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.4945,-57.0091]}} +{"_id":{"$oid":"66f9d5ae542d90c053667995"},"ibge":2928604,"name":"Santo Amaro","capital":0,"ibgeState":29,"siafi":3871,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.5472,-38.7137]}} +{"_id":{"$oid":"66f9d5ae542d90c053667996"},"ibge":4215703,"name":"Santo Amaro da Imperatriz","capital":0,"ibgeState":42,"siafi":8309,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6852,-48.7813]}} +{"_id":{"$oid":"66f9d5ae542d90c053667997"},"ibge":2806602,"name":"Santo Amaro das Brotas","capital":0,"ibgeState":28,"siafi":3231,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7892,-37.0564]}} +{"_id":{"$oid":"66f9d5ae542d90c053667998"},"ibge":2110278,"name":"Santo Amaro do Maranhão","capital":0,"ibgeState":21,"siafi":226,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.50068,-43.238]}} +{"_id":{"$oid":"66f9d5ae542d90c053667999"},"ibge":3547700,"name":"Santo Anastácio","capital":0,"ibgeState":35,"siafi":7055,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9747,-51.6527]}} +{"_id":{"$oid":"66f9d5ae542d90c05366799a"},"ibge":3547809,"name":"Santo André","capital":0,"ibgeState":35,"siafi":7057,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6737,-46.5432]}} +{"_id":{"$oid":"66f9d5ae542d90c05366799b"},"ibge":2513851,"name":"Santo André","capital":0,"ibgeState":25,"siafi":516,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.22016,-36.6213]}} +{"_id":{"$oid":"66f9d5ae542d90c05366799c"},"ibge":4317509,"name":"Santo Ângelo","capital":0,"ibgeState":43,"siafi":8853,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3001,-54.2668]}} +{"_id":{"$oid":"66f9d5ae542d90c05366799d"},"ibge":2411502,"name":"Santo Antônio","capital":0,"ibgeState":24,"siafi":1829,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.31195,-35.4739]}} +{"_id":{"$oid":"66f9d5ae542d90c05366799e"},"ibge":3547908,"name":"Santo Antônio da Alegria","capital":0,"ibgeState":35,"siafi":7059,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0864,-47.1464]}} +{"_id":{"$oid":"66f9d5ae542d90c05366799f"},"ibge":5219712,"name":"Santo Antônio da Barra","capital":0,"ibgeState":52,"siafi":83,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.5585,-50.6345]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679a0"},"ibge":4317608,"name":"Santo Antônio da Patrulha","capital":0,"ibgeState":43,"siafi":8855,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.8268,-50.5175]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679a1"},"ibge":4124103,"name":"Santo Antônio da Platina","capital":0,"ibgeState":41,"siafi":7859,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2959,-50.0815]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679a2"},"ibge":4317707,"name":"Santo Antônio das Missões","capital":0,"ibgeState":43,"siafi":8857,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.514,-55.2251]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679a3"},"ibge":5219738,"name":"Santo Antônio de Goiás","capital":0,"ibgeState":52,"siafi":53,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.4815,-49.3096]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679a4"},"ibge":2928703,"name":"Santo Antônio de Jesus","capital":0,"ibgeState":29,"siafi":3873,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.9614,-39.2584]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679a5"},"ibge":2209401,"name":"Santo Antônio de Lisboa","capital":0,"ibgeState":22,"siafi":1187,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.98676,-41.2252]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679a6"},"ibge":3304706,"name":"Santo Antônio de Pádua","capital":0,"ibgeState":33,"siafi":5893,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.541,-42.1832]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679a7"},"ibge":3548005,"name":"Santo Antônio de Posse","capital":0,"ibgeState":35,"siafi":7061,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6029,-46.9192]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679a8"},"ibge":3159902,"name":"Santo Antônio do Amparo","capital":0,"ibgeState":31,"siafi":5197,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.943,-44.9176]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679a9"},"ibge":3548054,"name":"Santo Antônio do Aracanguá","capital":0,"ibgeState":35,"siafi":2939,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9331,-50.498]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679aa"},"ibge":3160009,"name":"Santo Antônio do Aventureiro","capital":0,"ibgeState":31,"siafi":5199,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7606,-42.8115]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679ab"},"ibge":4124202,"name":"Santo Antônio do Caiuá","capital":0,"ibgeState":41,"siafi":7861,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7351,-52.344]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679ac"},"ibge":5219753,"name":"Santo Antônio do Descoberto","capital":0,"ibgeState":52,"siafi":9677,"ddd":61,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.9412,-48.2578]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679ad"},"ibge":3160108,"name":"Santo Antônio do Grama","capital":0,"ibgeState":31,"siafi":5201,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3185,-42.6047]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679ae"},"ibge":1303700,"name":"Santo Antônio do Içá","capital":0,"ibgeState":13,"siafi":273,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.09544,-67.9463]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679af"},"ibge":3160207,"name":"Santo Antônio do Itambé","capital":0,"ibgeState":31,"siafi":5203,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4609,-43.3006]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679b0"},"ibge":3160306,"name":"Santo Antônio do Jacinto","capital":0,"ibgeState":31,"siafi":5205,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.5332,-40.1817]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679b1"},"ibge":3548104,"name":"Santo Antônio do Jardim","capital":0,"ibgeState":35,"siafi":7063,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1121,-46.6845]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679b2"},"ibge":5107792,"name":"Santo Antônio do Leste","capital":0,"ibgeState":51,"siafi":1098,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.805,-53.6075]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679b3"},"ibge":5107800,"name":"Santo Antônio do Leverger","capital":0,"ibgeState":51,"siafi":9155,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.8632,-56.0788]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679b4"},"ibge":3160405,"name":"Santo Antônio do Monte","capital":0,"ibgeState":31,"siafi":5207,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.085,-45.2947]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679b5"},"ibge":4317558,"name":"Santo Antônio do Palma","capital":0,"ibgeState":43,"siafi":5941,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.4956,-52.0267]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679b6"},"ibge":4124301,"name":"Santo Antônio do Paraíso","capital":0,"ibgeState":41,"siafi":7863,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4969,-50.6455]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679b7"},"ibge":3548203,"name":"Santo Antônio do Pinhal","capital":0,"ibgeState":35,"siafi":7065,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.827,-45.663]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679b8"},"ibge":4317756,"name":"Santo Antônio do Planalto","capital":0,"ibgeState":43,"siafi":5957,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.403,-52.6992]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679b9"},"ibge":3160454,"name":"Santo Antônio do Retiro","capital":0,"ibgeState":31,"siafi":708,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.3393,-42.6171]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679ba"},"ibge":3160504,"name":"Santo Antônio do Rio Abaixo","capital":0,"ibgeState":31,"siafi":5209,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2374,-43.2604]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679bb"},"ibge":4124400,"name":"Santo Antônio do Sudoeste","capital":0,"ibgeState":41,"siafi":7857,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.0737,-53.7251]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679bc"},"ibge":1507003,"name":"Santo Antônio do Tauá","capital":0,"ibgeState":15,"siafi":539,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.1522,-48.1314]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679bd"},"ibge":2110302,"name":"Santo Antônio dos Lopes","capital":0,"ibgeState":21,"siafi":903,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.86613,-44.3653]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679be"},"ibge":2209450,"name":"Santo Antônio dos Milagres","capital":0,"ibgeState":22,"siafi":378,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.04647,-42.7123]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679bf"},"ibge":4317806,"name":"Santo Augusto","capital":0,"ibgeState":43,"siafi":8859,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.8526,-53.7776]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679c0"},"ibge":4317905,"name":"Santo Cristo","capital":0,"ibgeState":43,"siafi":8861,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.8263,-54.662]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679c1"},"ibge":2928802,"name":"Santo Estêvão","capital":0,"ibgeState":29,"siafi":3875,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.428,-39.2505]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679c2"},"ibge":3548302,"name":"Santo Expedito","capital":0,"ibgeState":35,"siafi":7067,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8467,-51.3929]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679c3"},"ibge":4317954,"name":"Santo Expedito do Sul","capital":0,"ibgeState":43,"siafi":5977,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9074,-51.6434]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679c4"},"ibge":3160603,"name":"Santo Hipólito","capital":0,"ibgeState":31,"siafi":5211,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.2968,-44.2229]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679c5"},"ibge":4124509,"name":"Santo Inácio","capital":0,"ibgeState":41,"siafi":7865,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6957,-51.7969]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679c6"},"ibge":2209500,"name":"Santo Inácio do Piauí","capital":0,"ibgeState":22,"siafi":1189,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.42072,-41.9063]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679c7"},"ibge":3548401,"name":"Santópolis do Aguapeí","capital":0,"ibgeState":35,"siafi":7069,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6376,-50.5044]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679c8"},"ibge":3548500,"name":"Santos","capital":0,"ibgeState":35,"siafi":7071,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.9535,-46.335]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679c9"},"ibge":3160702,"name":"Santos Dumont","capital":0,"ibgeState":31,"siafi":5213,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4634,-43.5499]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679ca"},"ibge":2312304,"name":"São Benedito","capital":0,"ibgeState":23,"siafi":1547,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.04713,-40.8596]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679cb"},"ibge":2110401,"name":"São Benedito do Rio Preto","capital":0,"ibgeState":21,"siafi":905,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.33515,-43.5287]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679cc"},"ibge":2612901,"name":"São Benedito do Sul","capital":0,"ibgeState":26,"siafi":2557,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.8166,-35.9453]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679cd"},"ibge":2513927,"name":"São Bentinho","capital":0,"ibgeState":25,"siafi":518,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.88596,-37.7243]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679ce"},"ibge":2513901,"name":"São Bento","capital":0,"ibgeState":25,"siafi":2179,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.48529,-37.4488]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679cf"},"ibge":2110500,"name":"São Bento","capital":0,"ibgeState":21,"siafi":907,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.69781,-44.8289]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679d0"},"ibge":3160801,"name":"São Bento Abade","capital":0,"ibgeState":31,"siafi":5215,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5839,-45.0699]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679d1"},"ibge":2411601,"name":"São Bento do Norte","capital":0,"ibgeState":24,"siafi":1831,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.09259,-35.9587]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679d2"},"ibge":3548609,"name":"São Bento do Sapucaí","capital":0,"ibgeState":35,"siafi":7073,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6837,-45.7287]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679d3"},"ibge":4215802,"name":"São Bento do Sul","capital":0,"ibgeState":42,"siafi":8311,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.2495,-49.3831]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679d4"},"ibge":1720101,"name":"São Bento do Tocantins","capital":0,"ibgeState":17,"siafi":197,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.0258,-47.9012]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679d5"},"ibge":2411700,"name":"São Bento do Trairí","capital":0,"ibgeState":24,"siafi":1833,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.33798,-36.0863]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679d6"},"ibge":2613008,"name":"São Bento do Una","capital":0,"ibgeState":26,"siafi":2559,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.52637,-36.4465]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679d7"},"ibge":4215752,"name":"São Bernardino","capital":0,"ibgeState":42,"siafi":942,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.4739,-52.9687]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679d8"},"ibge":2110609,"name":"São Bernardo","capital":0,"ibgeState":21,"siafi":909,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.37223,-42.4191]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679d9"},"ibge":3548708,"name":"São Bernardo do Campo","capital":0,"ibgeState":35,"siafi":7075,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6914,-46.5646]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679da"},"ibge":4215901,"name":"São Bonifácio","capital":0,"ibgeState":42,"siafi":8313,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9009,-48.9326]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679db"},"ibge":4318002,"name":"São Borja","capital":0,"ibgeState":43,"siafi":8863,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6578,-56.0036]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679dc"},"ibge":2708204,"name":"São Brás","capital":0,"ibgeState":27,"siafi":2863,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.1141,-36.8522]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679dd"},"ibge":3160900,"name":"São Brás do Suaçuí","capital":0,"ibgeState":31,"siafi":5217,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6242,-43.9515]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679de"},"ibge":2209559,"name":"São Braz do Piauí","capital":0,"ibgeState":22,"siafi":2263,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.05797,-43.0076]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679df"},"ibge":2613107,"name":"São Caetano","capital":0,"ibgeState":26,"siafi":2561,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.33763,-36.2869]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679e0"},"ibge":1507102,"name":"São Caetano de Odivelas","capital":0,"ibgeState":15,"siafi":541,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.747293,-48.0246]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679e1"},"ibge":3548807,"name":"São Caetano do Sul","capital":0,"ibgeState":35,"siafi":7077,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6229,-46.5548]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679e2"},"ibge":3548906,"name":"São Carlos","capital":0,"ibgeState":35,"siafi":7079,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0174,-47.886]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679e3"},"ibge":4216008,"name":"São Carlos","capital":0,"ibgeState":42,"siafi":8315,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0798,-53.0037]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679e4"},"ibge":4124608,"name":"São Carlos do Ivaí","capital":0,"ibgeState":41,"siafi":7867,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3158,-52.4761]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679e5"},"ibge":2806701,"name":"São Cristóvão","capital":0,"ibgeState":28,"siafi":3233,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.0084,-37.2044]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679e6"},"ibge":4216057,"name":"São Cristovão do Sul","capital":0,"ibgeState":42,"siafi":5573,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2666,-50.4388]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679e7"},"ibge":2928901,"name":"São Desidério","capital":0,"ibgeState":29,"siafi":3877,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.3572,-44.9769]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679e8"},"ibge":2928950,"name":"São Domingos","capital":0,"ibgeState":29,"siafi":3029,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.4649,-39.5268]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679e9"},"ibge":4216107,"name":"São Domingos","capital":0,"ibgeState":42,"siafi":8317,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.5548,-52.5313]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679ea"},"ibge":2513968,"name":"São Domingos","capital":0,"ibgeState":25,"siafi":522,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.80313,-37.9488]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679eb"},"ibge":2806800,"name":"São Domingos","capital":0,"ibgeState":28,"siafi":3235,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7916,-37.5685]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679ec"},"ibge":5219803,"name":"São Domingos","capital":0,"ibgeState":52,"siafi":9591,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.621,-46.7415]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679ed"},"ibge":3160959,"name":"São Domingos das Dores","capital":0,"ibgeState":31,"siafi":710,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5246,-42.0106]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679ee"},"ibge":1507151,"name":"São Domingos do Araguaia","capital":0,"ibgeState":15,"siafi":381,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.53732,-48.7366]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679ef"},"ibge":2110658,"name":"São Domingos do Azeitão","capital":0,"ibgeState":21,"siafi":228,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.81471,-44.6509]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679f0"},"ibge":1507201,"name":"São Domingos do Capim","capital":0,"ibgeState":15,"siafi":543,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.68768,-47.7665]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679f1"},"ibge":2513943,"name":"São Domingos do Cariri","capital":0,"ibgeState":25,"siafi":520,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.63273,-36.4374]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679f2"},"ibge":2110708,"name":"São Domingos do Maranhão","capital":0,"ibgeState":21,"siafi":911,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.58095,-44.3822]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679f3"},"ibge":3204658,"name":"São Domingos do Norte","capital":0,"ibgeState":32,"siafi":2933,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.1452,-40.6281]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679f4"},"ibge":3161007,"name":"São Domingos do Prata","capital":0,"ibgeState":31,"siafi":5219,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8678,-42.971]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679f5"},"ibge":4318051,"name":"São Domingos do Sul","capital":0,"ibgeState":43,"siafi":7351,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5312,-51.886]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679f6"},"ibge":2929107,"name":"São Felipe","capital":0,"ibgeState":29,"siafi":3881,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.8394,-39.0893]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679f7"},"ibge":1101484,"name":"São Felipe D'Oeste","capital":0,"ibgeState":11,"siafi":18,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.9023,-61.5026]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679f8"},"ibge":2929008,"name":"São Félix","capital":0,"ibgeState":29,"siafi":3879,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.6104,-38.9727]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679f9"},"ibge":2110807,"name":"São Félix de Balsas","capital":0,"ibgeState":21,"siafi":913,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.07535,-44.8092]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679fa"},"ibge":3161056,"name":"São Félix de Minas","capital":0,"ibgeState":31,"siafi":712,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5959,-41.4889]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679fb"},"ibge":5107859,"name":"São Félix do Araguaia","capital":0,"ibgeState":51,"siafi":9183,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.615,-50.6706]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679fc"},"ibge":2929057,"name":"São Félix do Coribe","capital":0,"ibgeState":29,"siafi":3031,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.4019,-44.1837]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679fd"},"ibge":2209609,"name":"São Félix do Piauí","capital":0,"ibgeState":22,"siafi":1191,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.93485,-42.1172]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679fe"},"ibge":1720150,"name":"São Félix do Tocantins","capital":0,"ibgeState":17,"siafi":363,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.1615,-46.6618]}} +{"_id":{"$oid":"66f9d5ae542d90c0536679ff"},"ibge":1507300,"name":"São Félix do Xingu","capital":0,"ibgeState":15,"siafi":545,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.64254,-51.9904]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a00"},"ibge":2411809,"name":"São Fernando","capital":0,"ibgeState":24,"siafi":1835,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.37975,-37.1864]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a01"},"ibge":3304805,"name":"São Fidélis","capital":0,"ibgeState":33,"siafi":5895,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6551,-41.756]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a02"},"ibge":3549003,"name":"São Francisco","capital":0,"ibgeState":35,"siafi":7081,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3623,-50.6952]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a03"},"ibge":2513984,"name":"São Francisco","capital":0,"ibgeState":25,"siafi":524,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.60773,-38.0968]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a04"},"ibge":2806909,"name":"São Francisco","capital":0,"ibgeState":28,"siafi":3237,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.3442,-36.8869]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a05"},"ibge":3161106,"name":"São Francisco","capital":0,"ibgeState":31,"siafi":5221,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.9514,-44.8593]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a06"},"ibge":4318101,"name":"São Francisco de Assis","capital":0,"ibgeState":43,"siafi":8865,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5547,-55.1253]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a07"},"ibge":2209658,"name":"São Francisco de Assis do Piauí","capital":0,"ibgeState":22,"siafi":380,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.23599,-41.6873]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a08"},"ibge":5219902,"name":"São Francisco de Goiás","capital":0,"ibgeState":52,"siafi":9593,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.9256,-49.2605]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a09"},"ibge":3304755,"name":"São Francisco de Itabapoana","capital":0,"ibgeState":33,"siafi":782,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4702,-41.1091]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a0a"},"ibge":4318200,"name":"São Francisco de Paula","capital":0,"ibgeState":43,"siafi":8867,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4404,-50.5828]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a0b"},"ibge":3161205,"name":"São Francisco de Paula","capital":0,"ibgeState":31,"siafi":5223,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7036,-44.9838]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a0c"},"ibge":3161304,"name":"São Francisco de Sales","capital":0,"ibgeState":31,"siafi":5225,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8611,-49.7727]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a0d"},"ibge":2110856,"name":"São Francisco do Brejão","capital":0,"ibgeState":21,"siafi":230,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.12584,-47.389]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a0e"},"ibge":2929206,"name":"São Francisco do Conde","capital":0,"ibgeState":29,"siafi":3883,"ddd":71,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.6183,-38.6786]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a0f"},"ibge":3161403,"name":"São Francisco do Glória","capital":0,"ibgeState":31,"siafi":5227,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7923,-42.2673]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a10"},"ibge":1101492,"name":"São Francisco do Guaporé","capital":0,"ibgeState":11,"siafi":20,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.052,-63.568]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a11"},"ibge":2110906,"name":"São Francisco do Maranhão","capital":0,"ibgeState":21,"siafi":915,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.25159,-42.8668]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a12"},"ibge":2411908,"name":"São Francisco do Oeste","capital":0,"ibgeState":24,"siafi":1821,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.97472,-38.1519]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a13"},"ibge":1507409,"name":"São Francisco do Pará","capital":0,"ibgeState":15,"siafi":547,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.16963,-47.7917]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a14"},"ibge":2209708,"name":"São Francisco do Piauí","capital":0,"ibgeState":22,"siafi":1193,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.2463,-42.541]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a15"},"ibge":4216206,"name":"São Francisco do Sul","capital":0,"ibgeState":42,"siafi":8319,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.2579,-48.6344]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a16"},"ibge":4318309,"name":"São Gabriel","capital":0,"ibgeState":43,"siafi":8869,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.3337,-54.3217]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a17"},"ibge":2929255,"name":"São Gabriel","capital":0,"ibgeState":29,"siafi":3989,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.2175,-41.8843]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a18"},"ibge":1303809,"name":"São Gabriel da Cachoeira","capital":0,"ibgeState":13,"siafi":283,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-0.11909,-67.084]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a19"},"ibge":3204708,"name":"São Gabriel da Palha","capital":0,"ibgeState":32,"siafi":5693,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.0182,-40.5365]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a1a"},"ibge":5007695,"name":"São Gabriel do Oeste","capital":0,"ibgeState":50,"siafi":9809,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-19.3889,-54.5507]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a1b"},"ibge":3161502,"name":"São Geraldo","capital":0,"ibgeState":31,"siafi":5229,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9252,-42.8364]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a1c"},"ibge":3161601,"name":"São Geraldo da Piedade","capital":0,"ibgeState":31,"siafi":5231,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.8411,-42.2867]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a1d"},"ibge":1507458,"name":"São Geraldo do Araguaia","capital":0,"ibgeState":15,"siafi":619,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.39471,-48.5592]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a1e"},"ibge":3161650,"name":"São Geraldo do Baixio","capital":0,"ibgeState":31,"siafi":714,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.9097,-41.363]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a1f"},"ibge":3304904,"name":"São Gonçalo","capital":0,"ibgeState":33,"siafi":5897,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8268,-43.0634]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a20"},"ibge":3161700,"name":"São Gonçalo do Abaeté","capital":0,"ibgeState":31,"siafi":5233,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.3315,-45.8265]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a21"},"ibge":2412005,"name":"São Gonçalo do Amarante","capital":0,"ibgeState":24,"siafi":1837,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.79068,-35.3257]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a22"},"ibge":2312403,"name":"São Gonçalo do Amarante","capital":0,"ibgeState":23,"siafi":1549,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.60515,-38.9726]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a23"},"ibge":2209757,"name":"São Gonçalo do Gurguéia","capital":0,"ibgeState":22,"siafi":382,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.0319,-45.3092]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a24"},"ibge":3161809,"name":"São Gonçalo do Pará","capital":0,"ibgeState":31,"siafi":5235,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9822,-44.8593]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a25"},"ibge":2209807,"name":"São Gonçalo do Piauí","capital":0,"ibgeState":22,"siafi":1195,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.99393,-42.7095]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a26"},"ibge":3161908,"name":"São Gonçalo do Rio Abaixo","capital":0,"ibgeState":31,"siafi":5237,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8221,-43.366]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a27"},"ibge":3125507,"name":"São Gonçalo do Rio Preto","capital":0,"ibgeState":31,"siafi":4509,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.0025,-43.3854]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a28"},"ibge":3162005,"name":"São Gonçalo do Sapucaí","capital":0,"ibgeState":31,"siafi":5239,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8932,-45.5893]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a29"},"ibge":2929305,"name":"São Gonçalo dos Campos","capital":0,"ibgeState":29,"siafi":3885,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.4331,-38.9663]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a2a"},"ibge":3162104,"name":"São Gotardo","capital":0,"ibgeState":31,"siafi":5241,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.3087,-46.0465]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a2b"},"ibge":4318408,"name":"São Jerônimo","capital":0,"ibgeState":43,"siafi":8871,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.9716,-51.7251]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a2c"},"ibge":4124707,"name":"São Jerônimo da Serra","capital":0,"ibgeState":41,"siafi":7869,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7218,-50.7475]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a2d"},"ibge":4124806,"name":"São João","capital":0,"ibgeState":41,"siafi":7871,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.8214,-52.7252]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a2e"},"ibge":2613206,"name":"São João","capital":0,"ibgeState":26,"siafi":2563,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.87576,-36.3653]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a2f"},"ibge":2111003,"name":"São João Batista","capital":0,"ibgeState":21,"siafi":917,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.95398,-44.7953]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a30"},"ibge":4216305,"name":"São João Batista","capital":0,"ibgeState":42,"siafi":8321,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2772,-48.8474]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a31"},"ibge":3162203,"name":"São João Batista do Glória","capital":0,"ibgeState":31,"siafi":5243,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.635,-46.508]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a32"},"ibge":5220009,"name":"São João d'Aliança","capital":0,"ibgeState":52,"siafi":9597,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.7048,-47.5228]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a33"},"ibge":1400506,"name":"São João da Baliza","capital":0,"ibgeState":14,"siafi":313,"ddd":95,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[0.951659,-59.9133]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a34"},"ibge":3305000,"name":"São João da Barra","capital":0,"ibgeState":33,"siafi":5899,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.638,-41.0446]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a35"},"ibge":3549102,"name":"São João da Boa Vista","capital":0,"ibgeState":35,"siafi":7083,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9707,-46.7944]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a36"},"ibge":2209856,"name":"São João da Canabrava","capital":0,"ibgeState":22,"siafi":1291,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.81203,-41.3415]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a37"},"ibge":2209872,"name":"São João da Fronteira","capital":0,"ibgeState":22,"siafi":384,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.95497,-41.2569]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a38"},"ibge":3162252,"name":"São João da Lagoa","capital":0,"ibgeState":31,"siafi":716,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.8455,-44.3507]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a39"},"ibge":3162302,"name":"São João da Mata","capital":0,"ibgeState":31,"siafi":5245,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.928,-45.9297]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a3a"},"ibge":5220058,"name":"São João da Paraúna","capital":0,"ibgeState":52,"siafi":9747,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.8126,-50.4092]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a3b"},"ibge":1507466,"name":"São João da Ponta","capital":0,"ibgeState":15,"siafi":64,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.857885,-47.918]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a3c"},"ibge":3162401,"name":"São João da Ponte","capital":0,"ibgeState":31,"siafi":5247,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.9271,-44.0096]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a3d"},"ibge":2209906,"name":"São João da Serra","capital":0,"ibgeState":22,"siafi":1197,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.51081,-41.8923]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a3e"},"ibge":4318424,"name":"São João da Urtiga","capital":0,"ibgeState":43,"siafi":7349,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.8195,-51.8257]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a3f"},"ibge":2209955,"name":"São João da Varjota","capital":0,"ibgeState":22,"siafi":386,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.94082,-41.8889]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a40"},"ibge":3549201,"name":"São João das Duas Pontes","capital":0,"ibgeState":35,"siafi":7085,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3879,-50.3792]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a41"},"ibge":3162450,"name":"São João das Missões","capital":0,"ibgeState":31,"siafi":718,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.8859,-44.0922]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a42"},"ibge":3549250,"name":"São João de Iracema","capital":0,"ibgeState":35,"siafi":2941,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5111,-50.3561]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a43"},"ibge":3305109,"name":"São João de Meriti","capital":0,"ibgeState":33,"siafi":5901,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8058,-43.3729]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a44"},"ibge":1507474,"name":"São João de Pirabas","capital":0,"ibgeState":15,"siafi":393,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.780222,-47.181]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a45"},"ibge":3162500,"name":"São João del Rei","capital":0,"ibgeState":31,"siafi":5249,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1311,-44.2526]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a46"},"ibge":1507508,"name":"São João do Araguaia","capital":0,"ibgeState":15,"siafi":549,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.36334,-48.7926]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a47"},"ibge":2209971,"name":"São João do Arraial","capital":0,"ibgeState":22,"siafi":388,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.8186,-42.4459]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a48"},"ibge":4124905,"name":"São João do Caiuá","capital":0,"ibgeState":41,"siafi":7873,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8535,-52.3411]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a49"},"ibge":2514008,"name":"São João do Cariri","capital":0,"ibgeState":25,"siafi":2181,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.38168,-36.5345]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a4a"},"ibge":2111029,"name":"São João do Carú","capital":0,"ibgeState":21,"siafi":232,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.5503,-46.2507]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a4b"},"ibge":4216354,"name":"São João do Itaperiú","capital":0,"ibgeState":42,"siafi":5551,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.6213,-48.7683]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a4c"},"ibge":4125001,"name":"São João do Ivaí","capital":0,"ibgeState":41,"siafi":7875,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.9833,-51.8215]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a4d"},"ibge":2312502,"name":"São João do Jaguaribe","capital":0,"ibgeState":23,"siafi":1551,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.27516,-38.2694]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a4e"},"ibge":3162559,"name":"São João do Manhuaçu","capital":0,"ibgeState":31,"siafi":2677,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3933,-42.1533]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a4f"},"ibge":3162575,"name":"São João do Manteninha","capital":0,"ibgeState":31,"siafi":2679,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.723,-41.1628]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a50"},"ibge":4216255,"name":"São João do Oeste","capital":0,"ibgeState":42,"siafi":5753,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0984,-53.5977]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a51"},"ibge":3162609,"name":"São João do Oriente","capital":0,"ibgeState":31,"siafi":5251,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.3384,-42.1575]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a52"},"ibge":3162658,"name":"São João do Pacuí","capital":0,"ibgeState":31,"siafi":720,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.5373,-44.5134]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a53"},"ibge":3162708,"name":"São João do Paraíso","capital":0,"ibgeState":31,"siafi":5253,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.3168,-42.0213]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a54"},"ibge":2111052,"name":"São João do Paraíso","capital":0,"ibgeState":21,"siafi":234,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.45634,-47.0594]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a55"},"ibge":3549300,"name":"São João do Pau d'Alho","capital":0,"ibgeState":35,"siafi":7087,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2662,-51.6672]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a56"},"ibge":2210003,"name":"São João do Piauí","capital":0,"ibgeState":22,"siafi":1199,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.35466,-42.2559]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a57"},"ibge":4318432,"name":"São João do Polêsine","capital":0,"ibgeState":43,"siafi":5791,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6194,-53.4439]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a58"},"ibge":2500700,"name":"São João do Rio do Peixe","capital":0,"ibgeState":25,"siafi":1913,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.72195,-38.4468]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a59"},"ibge":2412104,"name":"São João do Sabugi","capital":0,"ibgeState":24,"siafi":1839,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.71387,-37.2027]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a5a"},"ibge":2111078,"name":"São João do Soter","capital":0,"ibgeState":21,"siafi":236,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.10821,-43.8163]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a5b"},"ibge":4216404,"name":"São João do Sul","capital":0,"ibgeState":42,"siafi":8323,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.2154,-49.8094]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a5c"},"ibge":2514107,"name":"São João do Tigre","capital":0,"ibgeState":25,"siafi":2183,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.07703,-36.8547]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a5d"},"ibge":4125100,"name":"São João do Triunfo","capital":0,"ibgeState":41,"siafi":7877,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.683,-50.2949]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a5e"},"ibge":2111102,"name":"São João dos Patos","capital":0,"ibgeState":21,"siafi":919,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.4934,-43.7036]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a5f"},"ibge":3162807,"name":"São João Evangelista","capital":0,"ibgeState":31,"siafi":5255,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.548,-42.7655]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a60"},"ibge":3162906,"name":"São João Nepomuceno","capital":0,"ibgeState":31,"siafi":5257,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5381,-43.0069]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a61"},"ibge":4216503,"name":"São Joaquim","capital":0,"ibgeState":42,"siafi":8325,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.2887,-49.9457]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a62"},"ibge":3549409,"name":"São Joaquim da Barra","capital":0,"ibgeState":35,"siafi":7089,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5812,-47.8593]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a63"},"ibge":3162922,"name":"São Joaquim de Bicas","capital":0,"ibgeState":31,"siafi":722,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.048,-44.2749]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a64"},"ibge":2613305,"name":"São Joaquim do Monte","capital":0,"ibgeState":26,"siafi":2565,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.43196,-35.8035]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a65"},"ibge":4318440,"name":"São Jorge","capital":0,"ibgeState":43,"siafi":7347,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.4984,-51.7064]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a66"},"ibge":4125209,"name":"São Jorge d'Oeste","capital":0,"ibgeState":41,"siafi":7881,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.7085,-52.9204]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a67"},"ibge":4125308,"name":"São Jorge do Ivaí","capital":0,"ibgeState":41,"siafi":7879,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4336,-52.2929]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a68"},"ibge":4125357,"name":"São Jorge do Patrocínio","capital":0,"ibgeState":41,"siafi":7999,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7647,-53.8823]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a69"},"ibge":4216602,"name":"São José","capital":0,"ibgeState":42,"siafi":8327,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6136,-48.6366]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a6a"},"ibge":3162948,"name":"São José da Barra","capital":0,"ibgeState":31,"siafi":724,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7178,-46.313]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a6b"},"ibge":3549508,"name":"São José da Bela Vista","capital":0,"ibgeState":35,"siafi":7091,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.5935,-47.6424]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a6c"},"ibge":4125407,"name":"São José da Boa Vista","capital":0,"ibgeState":41,"siafi":7883,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.9122,-49.6577]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a6d"},"ibge":2613404,"name":"São José da Coroa Grande","capital":0,"ibgeState":26,"siafi":2567,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.88937,-35.1515]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a6e"},"ibge":2514206,"name":"São José da Lagoa Tapada","capital":0,"ibgeState":25,"siafi":2185,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.93646,-38.1622]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a6f"},"ibge":2708303,"name":"São José da Laje","capital":0,"ibgeState":27,"siafi":2865,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.01278,-36.0515]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a70"},"ibge":3162955,"name":"São José da Lapa","capital":0,"ibgeState":31,"siafi":2649,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6971,-43.9586]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a71"},"ibge":3163003,"name":"São José da Safira","capital":0,"ibgeState":31,"siafi":5259,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.3243,-42.1431]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a72"},"ibge":2708402,"name":"São José da Tapera","capital":0,"ibgeState":27,"siafi":2867,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.55768,-37.3831]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a73"},"ibge":3163102,"name":"São José da Varginha","capital":0,"ibgeState":31,"siafi":5261,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7006,-44.556]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a74"},"ibge":2929354,"name":"São José da Vitória","capital":0,"ibgeState":29,"siafi":3035,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.0787,-39.3437]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a75"},"ibge":4318457,"name":"São José das Missões","capital":0,"ibgeState":43,"siafi":5989,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7789,-53.1226]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a76"},"ibge":4125456,"name":"São José das Palmeiras","capital":0,"ibgeState":41,"siafi":8471,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.8369,-54.0572]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a77"},"ibge":2514305,"name":"São José de Caiana","capital":0,"ibgeState":25,"siafi":2187,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.24636,-38.2989]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a78"},"ibge":2514404,"name":"São José de Espinharas","capital":0,"ibgeState":25,"siafi":2189,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.83974,-37.3214]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a79"},"ibge":2412203,"name":"São José de Mipibu","capital":0,"ibgeState":24,"siafi":1841,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.0773,-35.2417]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a7a"},"ibge":2514503,"name":"São José de Piranhas","capital":0,"ibgeState":25,"siafi":2191,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.1187,-38.502]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a7b"},"ibge":2514552,"name":"São José de Princesa","capital":0,"ibgeState":25,"siafi":528,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.73633,-38.0894]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a7c"},"ibge":2111201,"name":"São José de Ribamar","capital":0,"ibgeState":21,"siafi":889,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.54704,-44.0597]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a7d"},"ibge":3305133,"name":"São José de Ubá","capital":0,"ibgeState":33,"siafi":784,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3661,-41.9511]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a7e"},"ibge":3163201,"name":"São José do Alegre","capital":0,"ibgeState":31,"siafi":5263,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3243,-45.5258]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a7f"},"ibge":3549607,"name":"São José do Barreiro","capital":0,"ibgeState":35,"siafi":7093,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6414,-44.5774]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a80"},"ibge":2613503,"name":"São José do Belmonte","capital":0,"ibgeState":26,"siafi":2569,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.85723,-38.7577]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a81"},"ibge":2514602,"name":"São José do Bonfim","capital":0,"ibgeState":25,"siafi":2193,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.1607,-37.3036]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a82"},"ibge":2514651,"name":"São José do Brejo do Cruz","capital":0,"ibgeState":25,"siafi":530,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.21054,-37.3601]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a83"},"ibge":3204807,"name":"São José do Calçado","capital":0,"ibgeState":32,"siafi":5695,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0274,-41.6636]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a84"},"ibge":2412302,"name":"São José do Campestre","capital":0,"ibgeState":24,"siafi":1843,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.31087,-35.7067]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a85"},"ibge":4216701,"name":"São José do Cedro","capital":0,"ibgeState":42,"siafi":8329,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.4561,-53.4955]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a86"},"ibge":4216800,"name":"São José do Cerrito","capital":0,"ibgeState":42,"siafi":8331,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6602,-50.5733]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a87"},"ibge":2210052,"name":"São José do Divino","capital":0,"ibgeState":22,"siafi":2285,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.81411,-41.8308]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a88"},"ibge":3163300,"name":"São José do Divino","capital":0,"ibgeState":31,"siafi":5265,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4793,-41.3907]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a89"},"ibge":2613602,"name":"São José do Egito","capital":0,"ibgeState":26,"siafi":2571,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.46945,-37.274]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a8a"},"ibge":3163409,"name":"São José do Goiabal","capital":0,"ibgeState":31,"siafi":5267,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9214,-42.7035]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a8b"},"ibge":4318465,"name":"São José do Herval","capital":0,"ibgeState":43,"siafi":7345,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.052,-52.295]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a8c"},"ibge":4318481,"name":"São José do Hortêncio","capital":0,"ibgeState":43,"siafi":7343,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.528,-51.245]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a8d"},"ibge":4318499,"name":"São José do Inhacorá","capital":0,"ibgeState":43,"siafi":6059,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7251,-54.1275]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a8e"},"ibge":2929370,"name":"São José do Jacuípe","capital":0,"ibgeState":29,"siafi":3033,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.4137,-39.8669]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a8f"},"ibge":3163508,"name":"São José do Jacuri","capital":0,"ibgeState":31,"siafi":5269,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.281,-42.6729]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a90"},"ibge":3163607,"name":"São José do Mantimento","capital":0,"ibgeState":31,"siafi":5271,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0058,-41.7486]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a91"},"ibge":4318507,"name":"São José do Norte","capital":0,"ibgeState":43,"siafi":8873,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-32.0151,-52.0331]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a92"},"ibge":4318606,"name":"São José do Ouro","capital":0,"ibgeState":43,"siafi":8875,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7707,-51.5966]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a93"},"ibge":2210102,"name":"São José do Peixe","capital":0,"ibgeState":22,"siafi":1201,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.48554,-42.5672]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a94"},"ibge":2210201,"name":"São José do Piauí","capital":0,"ibgeState":22,"siafi":1203,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.87194,-41.4731]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a95"},"ibge":5107297,"name":"São José do Povo","capital":0,"ibgeState":51,"siafi":6087,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-16.4549,-54.2487]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a96"},"ibge":5107305,"name":"São José do Rio Claro","capital":0,"ibgeState":51,"siafi":9199,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-13.4398,-56.7218]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a97"},"ibge":3549706,"name":"São José do Rio Pardo","capital":0,"ibgeState":35,"siafi":7095,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5953,-46.8873]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a98"},"ibge":3549805,"name":"São José do Rio Preto","capital":0,"ibgeState":35,"siafi":7097,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8113,-49.3758]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a99"},"ibge":2514701,"name":"São José do Sabugi","capital":0,"ibgeState":25,"siafi":2195,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.76295,-36.7972]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a9a"},"ibge":2412401,"name":"São José do Seridó","capital":0,"ibgeState":24,"siafi":1845,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.44002,-36.8746]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a9b"},"ibge":4318614,"name":"São José do Sul","capital":0,"ibgeState":43,"siafi":1170,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5448,-51.4821]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a9c"},"ibge":3305158,"name":"São José do Vale do Rio Preto","capital":0,"ibgeState":33,"siafi":6009,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1525,-42.9327]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a9d"},"ibge":5107354,"name":"São José do Xingu","capital":0,"ibgeState":51,"siafi":133,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.7982,-52.7486]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a9e"},"ibge":4318622,"name":"São José dos Ausentes","capital":0,"ibgeState":43,"siafi":6015,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.7476,-50.0677]}} +{"_id":{"$oid":"66f9d5ae542d90c053667a9f"},"ibge":2111250,"name":"São José dos Basílios","capital":0,"ibgeState":21,"siafi":238,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.05493,-44.5809]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aa0"},"ibge":3549904,"name":"São José dos Campos","capital":0,"ibgeState":35,"siafi":7099,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1896,-45.8841]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aa1"},"ibge":2514800,"name":"São José dos Cordeiros","capital":0,"ibgeState":25,"siafi":2197,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.38775,-36.8085]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aa2"},"ibge":4125506,"name":"São José dos Pinhais","capital":0,"ibgeState":41,"siafi":7885,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.5313,-49.2031]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aa3"},"ibge":5107107,"name":"São José dos Quatro Marcos","capital":0,"ibgeState":51,"siafi":8993,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.6276,-58.1772]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aa4"},"ibge":2514453,"name":"São José dos Ramos","capital":0,"ibgeState":25,"siafi":526,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.25238,-35.3725]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aa5"},"ibge":2210300,"name":"São Julião","capital":0,"ibgeState":22,"siafi":1205,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.08391,-40.8246]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aa6"},"ibge":4318705,"name":"São Leopoldo","capital":0,"ibgeState":43,"siafi":8877,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.7545,-51.1498]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aa7"},"ibge":3163706,"name":"São Lourenço","capital":0,"ibgeState":31,"siafi":5273,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1166,-45.0506]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aa8"},"ibge":2613701,"name":"São Lourenço da Mata","capital":0,"ibgeState":26,"siafi":2573,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.00684,-35.0124]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aa9"},"ibge":3549953,"name":"São Lourenço da Serra","capital":0,"ibgeState":35,"siafi":5447,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8491,-46.9432]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aaa"},"ibge":4216909,"name":"São Lourenço do Oeste","capital":0,"ibgeState":42,"siafi":8333,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.3557,-52.8498]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aab"},"ibge":2210359,"name":"São Lourenço do Piauí","capital":0,"ibgeState":22,"siafi":2265,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.16463,-42.5496]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aac"},"ibge":4318804,"name":"São Lourenço do Sul","capital":0,"ibgeState":43,"siafi":8879,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.3564,-51.9715]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aad"},"ibge":4217006,"name":"São Ludgero","capital":0,"ibgeState":42,"siafi":8335,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3144,-49.1806]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aae"},"ibge":2111300,"name":"São Luís","capital":1,"ibgeState":21,"siafi":921,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.53874,-44.2825]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aaf"},"ibge":5220108,"name":"São Luís de Montes Belos","capital":0,"ibgeState":52,"siafi":9599,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.5211,-50.3726]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ab0"},"ibge":2312601,"name":"São Luís do Curu","capital":0,"ibgeState":23,"siafi":1553,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.66976,-39.2391]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ab1"},"ibge":2210375,"name":"São Luis do Piauí","capital":0,"ibgeState":22,"siafi":390,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.81936,-41.3175]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ab2"},"ibge":2708501,"name":"São Luís do Quitunde","capital":0,"ibgeState":27,"siafi":2869,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.31816,-35.5606]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ab3"},"ibge":2111409,"name":"São Luís Gonzaga do Maranhão","capital":0,"ibgeState":21,"siafi":805,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.38541,-44.6654]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ab4"},"ibge":1400605,"name":"São Luiz","capital":0,"ibgeState":14,"siafi":315,"ddd":95,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[1.01019,-60.0419]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ab5"},"ibge":5220157,"name":"São Luiz do Norte","capital":0,"ibgeState":52,"siafi":9749,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.8608,-49.3285]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ab6"},"ibge":3550001,"name":"São Luiz do Paraitinga","capital":0,"ibgeState":35,"siafi":7101,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.222,-45.3109]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ab7"},"ibge":4318903,"name":"São Luiz Gonzaga","capital":0,"ibgeState":43,"siafi":8881,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.412,-54.9559]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ab8"},"ibge":2514909,"name":"São Mamede","capital":0,"ibgeState":25,"siafi":2199,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.92386,-37.0954]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ab9"},"ibge":4125555,"name":"São Manoel do Paraná","capital":0,"ibgeState":41,"siafi":5515,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3941,-52.6454]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aba"},"ibge":3550100,"name":"São Manuel","capital":0,"ibgeState":35,"siafi":7103,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7321,-48.5723]}} +{"_id":{"$oid":"66f9d5ae542d90c053667abb"},"ibge":4319000,"name":"São Marcos","capital":0,"ibgeState":43,"siafi":8883,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.9677,-51.0696]}} +{"_id":{"$oid":"66f9d5ae542d90c053667abc"},"ibge":4217105,"name":"São Martinho","capital":0,"ibgeState":42,"siafi":8337,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.1609,-48.9867]}} +{"_id":{"$oid":"66f9d5ae542d90c053667abd"},"ibge":4319109,"name":"São Martinho","capital":0,"ibgeState":43,"siafi":8885,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7112,-53.9699]}} +{"_id":{"$oid":"66f9d5ae542d90c053667abe"},"ibge":4319125,"name":"São Martinho da Serra","capital":0,"ibgeState":43,"siafi":5793,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5397,-53.859]}} +{"_id":{"$oid":"66f9d5ae542d90c053667abf"},"ibge":3204906,"name":"São Mateus","capital":0,"ibgeState":32,"siafi":5697,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7214,-39.8579]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ac0"},"ibge":2111508,"name":"São Mateus do Maranhão","capital":0,"ibgeState":21,"siafi":923,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.03736,-44.4707]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ac1"},"ibge":4125605,"name":"São Mateus do Sul","capital":0,"ibgeState":41,"siafi":7887,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.8677,-50.384]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ac2"},"ibge":2412500,"name":"São Miguel","capital":0,"ibgeState":24,"siafi":1847,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.20283,-38.4947]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ac3"},"ibge":3550209,"name":"São Miguel Arcanjo","capital":0,"ibgeState":35,"siafi":7105,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8782,-47.9935]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ac4"},"ibge":2210383,"name":"São Miguel da Baixa Grande","capital":0,"ibgeState":22,"siafi":392,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.85646,-42.1934]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ac5"},"ibge":4217154,"name":"São Miguel da Boa Vista","capital":0,"ibgeState":42,"siafi":5755,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.687,-53.2511]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ac6"},"ibge":2929404,"name":"São Miguel das Matas","capital":0,"ibgeState":29,"siafi":3887,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.0434,-39.4578]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ac7"},"ibge":4319158,"name":"São Miguel das Missões","capital":0,"ibgeState":43,"siafi":7341,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.556,-54.5559]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ac8"},"ibge":2515005,"name":"São Miguel de Taipu","capital":0,"ibgeState":25,"siafi":2201,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.24764,-35.2016]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ac9"},"ibge":2807006,"name":"São Miguel do Aleixo","capital":0,"ibgeState":28,"siafi":3239,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.3847,-37.3836]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aca"},"ibge":3163805,"name":"São Miguel do Anta","capital":0,"ibgeState":31,"siafi":5275,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7067,-42.7174]}} +{"_id":{"$oid":"66f9d5ae542d90c053667acb"},"ibge":5220207,"name":"São Miguel do Araguaia","capital":0,"ibgeState":52,"siafi":9601,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.2731,-50.1634]}} +{"_id":{"$oid":"66f9d5ae542d90c053667acc"},"ibge":2210391,"name":"São Miguel do Fidalgo","capital":0,"ibgeState":22,"siafi":394,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.59713,-42.3676]}} +{"_id":{"$oid":"66f9d5ae542d90c053667acd"},"ibge":2412559,"name":"São Miguel do Gostoso","capital":0,"ibgeState":24,"siafi":430,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.12302,-35.6354]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ace"},"ibge":1507607,"name":"São Miguel do Guamá","capital":0,"ibgeState":15,"siafi":551,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.61307,-47.4784]}} +{"_id":{"$oid":"66f9d5ae542d90c053667acf"},"ibge":1100320,"name":"São Miguel do Guaporé","capital":0,"ibgeState":11,"siafi":45,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.6953,-62.7192]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ad0"},"ibge":4125704,"name":"São Miguel do Iguaçu","capital":0,"ibgeState":41,"siafi":7889,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.3492,-54.2405]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ad1"},"ibge":4217204,"name":"São Miguel do Oeste","capital":0,"ibgeState":42,"siafi":8339,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7242,-53.5163]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ad2"},"ibge":5220264,"name":"São Miguel do Passa Quatro","capital":0,"ibgeState":52,"siafi":9751,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.0582,-48.662]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ad3"},"ibge":2210409,"name":"São Miguel do Tapuio","capital":0,"ibgeState":22,"siafi":1207,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.49729,-41.3165]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ad4"},"ibge":1720200,"name":"São Miguel do Tocantins","capital":0,"ibgeState":17,"siafi":199,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.56305,-47.5743]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ad5"},"ibge":2708600,"name":"São Miguel dos Campos","capital":0,"ibgeState":27,"siafi":2871,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.78301,-36.0971]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ad6"},"ibge":2708709,"name":"São Miguel dos Milagres","capital":0,"ibgeState":27,"siafi":2873,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.26493,-35.3763]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ad7"},"ibge":4319208,"name":"São Nicolau","capital":0,"ibgeState":43,"siafi":8887,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.1834,-55.2654]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ad8"},"ibge":5220280,"name":"São Patrício","capital":0,"ibgeState":52,"siafi":1064,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.35,-49.818]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ad9"},"ibge":3550308,"name":"São Paulo","capital":1,"ibgeState":35,"siafi":7107,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5329,-46.6395]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ada"},"ibge":4319307,"name":"São Paulo das Missões","capital":0,"ibgeState":43,"siafi":8889,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.0195,-54.9404]}} +{"_id":{"$oid":"66f9d5ae542d90c053667adb"},"ibge":1303908,"name":"São Paulo de Olivença","capital":0,"ibgeState":13,"siafi":275,"ddd":97,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-3.47292,-68.9646]}} +{"_id":{"$oid":"66f9d5ae542d90c053667adc"},"ibge":2412609,"name":"São Paulo do Potengi","capital":0,"ibgeState":24,"siafi":1849,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.8994,-35.7642]}} +{"_id":{"$oid":"66f9d5ae542d90c053667add"},"ibge":2412708,"name":"São Pedro","capital":0,"ibgeState":24,"siafi":1851,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.90559,-35.6317]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ade"},"ibge":3550407,"name":"São Pedro","capital":0,"ibgeState":35,"siafi":7109,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5483,-47.9096]}} +{"_id":{"$oid":"66f9d5ae542d90c053667adf"},"ibge":2111532,"name":"São Pedro da Água Branca","capital":0,"ibgeState":21,"siafi":240,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.08472,-48.4291]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ae0"},"ibge":3305208,"name":"São Pedro da Aldeia","capital":0,"ibgeState":33,"siafi":5903,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8429,-42.1026]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ae1"},"ibge":5107404,"name":"São Pedro da Cipa","capital":0,"ibgeState":51,"siafi":93,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-16.0109,-54.9176]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ae2"},"ibge":4319356,"name":"São Pedro da Serra","capital":0,"ibgeState":43,"siafi":6043,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4193,-51.5134]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ae3"},"ibge":3163904,"name":"São Pedro da União","capital":0,"ibgeState":31,"siafi":5277,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.131,-46.6123]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ae4"},"ibge":4319364,"name":"São Pedro das Missões","capital":0,"ibgeState":43,"siafi":1172,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7706,-53.2513]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ae5"},"ibge":4217253,"name":"São Pedro de Alcântara","capital":0,"ibgeState":42,"siafi":944,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5665,-48.8048]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ae6"},"ibge":4319372,"name":"São Pedro do Butiá","capital":0,"ibgeState":43,"siafi":6063,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.1243,-54.8926]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ae7"},"ibge":4125753,"name":"São Pedro do Iguaçu","capital":0,"ibgeState":41,"siafi":5489,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.9373,-53.8521]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ae8"},"ibge":4125803,"name":"São Pedro do Ivaí","capital":0,"ibgeState":41,"siafi":7891,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8634,-51.8568]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ae9"},"ibge":4125902,"name":"São Pedro do Paraná","capital":0,"ibgeState":41,"siafi":7893,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8239,-53.2241]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aea"},"ibge":2210508,"name":"São Pedro do Piauí","capital":0,"ibgeState":22,"siafi":1209,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.92078,-42.7192]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aeb"},"ibge":3164100,"name":"São Pedro do Suaçuí","capital":0,"ibgeState":31,"siafi":5281,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.3609,-42.5981]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aec"},"ibge":4319406,"name":"São Pedro do Sul","capital":0,"ibgeState":43,"siafi":8891,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6202,-54.1855]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aed"},"ibge":3550506,"name":"São Pedro do Turvo","capital":0,"ibgeState":35,"siafi":7111,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7453,-49.7428]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aee"},"ibge":2111573,"name":"São Pedro dos Crentes","capital":0,"ibgeState":21,"siafi":242,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.82389,-46.5319]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aef"},"ibge":3164001,"name":"São Pedro dos Ferros","capital":0,"ibgeState":31,"siafi":5279,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1732,-42.5251]}} +{"_id":{"$oid":"66f9d5ae542d90c053667af0"},"ibge":2412807,"name":"São Rafael","capital":0,"ibgeState":24,"siafi":1853,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.79791,-36.8778]}} +{"_id":{"$oid":"66f9d5ae542d90c053667af1"},"ibge":2111607,"name":"São Raimundo das Mangabeiras","capital":0,"ibgeState":21,"siafi":925,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.02183,-45.4809]}} +{"_id":{"$oid":"66f9d5ae542d90c053667af2"},"ibge":2111631,"name":"São Raimundo do Doca Bezerra","capital":0,"ibgeState":21,"siafi":244,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.11053,-45.0696]}} +{"_id":{"$oid":"66f9d5ae542d90c053667af3"},"ibge":2210607,"name":"São Raimundo Nonato","capital":0,"ibgeState":22,"siafi":1211,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.01241,-42.6987]}} +{"_id":{"$oid":"66f9d5ae542d90c053667af4"},"ibge":2111672,"name":"São Roberto","capital":0,"ibgeState":21,"siafi":246,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.0231,-45.001]}} +{"_id":{"$oid":"66f9d5ae542d90c053667af5"},"ibge":3164209,"name":"São Romão","capital":0,"ibgeState":31,"siafi":5283,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.3641,-45.0749]}} +{"_id":{"$oid":"66f9d5ae542d90c053667af6"},"ibge":3550605,"name":"São Roque","capital":0,"ibgeState":35,"siafi":7113,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5226,-47.1357]}} +{"_id":{"$oid":"66f9d5ae542d90c053667af7"},"ibge":3164308,"name":"São Roque de Minas","capital":0,"ibgeState":31,"siafi":5285,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.249,-46.3639]}} +{"_id":{"$oid":"66f9d5ae542d90c053667af8"},"ibge":3204955,"name":"São Roque do Canaã","capital":0,"ibgeState":32,"siafi":764,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7411,-40.6526]}} +{"_id":{"$oid":"66f9d5ae542d90c053667af9"},"ibge":1720259,"name":"São Salvador do Tocantins","capital":0,"ibgeState":17,"siafi":333,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.7458,-48.2352]}} +{"_id":{"$oid":"66f9d5ae542d90c053667afa"},"ibge":3550704,"name":"São Sebastião","capital":0,"ibgeState":35,"siafi":7115,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7951,-45.4143]}} +{"_id":{"$oid":"66f9d5ae542d90c053667afb"},"ibge":2708808,"name":"São Sebastião","capital":0,"ibgeState":27,"siafi":2875,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.93043,-36.559]}} +{"_id":{"$oid":"66f9d5ae542d90c053667afc"},"ibge":4126009,"name":"São Sebastião da Amoreira","capital":0,"ibgeState":41,"siafi":7895,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4656,-50.7625]}} +{"_id":{"$oid":"66f9d5ae542d90c053667afd"},"ibge":3164407,"name":"São Sebastião da Bela Vista","capital":0,"ibgeState":31,"siafi":5287,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1583,-45.7546]}} +{"_id":{"$oid":"66f9d5ae542d90c053667afe"},"ibge":1507706,"name":"São Sebastião da Boa Vista","capital":0,"ibgeState":15,"siafi":553,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.71597,-49.5249]}} +{"_id":{"$oid":"66f9d5ae542d90c053667aff"},"ibge":3550803,"name":"São Sebastião da Grama","capital":0,"ibgeState":35,"siafi":7117,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7041,-46.8208]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b00"},"ibge":3164431,"name":"São Sebastião da Vargem Alegre","capital":0,"ibgeState":31,"siafi":726,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7477,-43.3679]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b01"},"ibge":2515104,"name":"São Sebastião de Lagoa de Roça","capital":0,"ibgeState":25,"siafi":2203,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.11034,-35.8678]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b02"},"ibge":3305307,"name":"São Sebastião do Alto","capital":0,"ibgeState":33,"siafi":5905,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9578,-42.1328]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b03"},"ibge":3164472,"name":"São Sebastião do Anta","capital":0,"ibgeState":31,"siafi":728,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5064,-41.985]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b04"},"ibge":4319505,"name":"São Sebastião do Caí","capital":0,"ibgeState":43,"siafi":8893,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5885,-51.3749]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b05"},"ibge":3164506,"name":"São Sebastião do Maranhão","capital":0,"ibgeState":31,"siafi":5289,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.0873,-42.5659]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b06"},"ibge":3164605,"name":"São Sebastião do Oeste","capital":0,"ibgeState":31,"siafi":5291,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2758,-45.0063]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b07"},"ibge":3164704,"name":"São Sebastião do Paraíso","capital":0,"ibgeState":31,"siafi":5293,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9167,-46.9837]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b08"},"ibge":2929503,"name":"São Sebastião do Passé","capital":0,"ibgeState":29,"siafi":3889,"ddd":71,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.5123,-38.4905]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b09"},"ibge":3164803,"name":"São Sebastião do Rio Preto","capital":0,"ibgeState":31,"siafi":5295,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2959,-43.1757]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b0a"},"ibge":3164902,"name":"São Sebastião do Rio Verde","capital":0,"ibgeState":31,"siafi":5297,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2183,-44.9761]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b0b"},"ibge":1720309,"name":"São Sebastião do Tocantins","capital":0,"ibgeState":17,"siafi":9603,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.26131,-48.2021]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b0c"},"ibge":1303957,"name":"São Sebastião do Uatumã","capital":0,"ibgeState":13,"siafi":9845,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-2.55915,-57.8731]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b0d"},"ibge":2515203,"name":"São Sebastião do Umbuzeiro","capital":0,"ibgeState":25,"siafi":2205,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.15289,-37.0138]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b0e"},"ibge":4319604,"name":"São Sepé","capital":0,"ibgeState":43,"siafi":8895,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.1643,-53.5603]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b0f"},"ibge":3550902,"name":"São Simão","capital":0,"ibgeState":35,"siafi":7119,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4732,-47.5518]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b10"},"ibge":5220405,"name":"São Simão","capital":0,"ibgeState":52,"siafi":9605,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.996,-50.547]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b11"},"ibge":3165206,"name":"São Thomé das Letras","capital":0,"ibgeState":31,"siafi":5303,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7218,-44.9849]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b12"},"ibge":3165008,"name":"São Tiago","capital":0,"ibgeState":31,"siafi":5299,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9075,-44.5098]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b13"},"ibge":3165107,"name":"São Tomás de Aquino","capital":0,"ibgeState":31,"siafi":5301,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7791,-47.0962]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b14"},"ibge":4126108,"name":"São Tomé","capital":0,"ibgeState":41,"siafi":7897,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5349,-52.5901]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b15"},"ibge":2412906,"name":"São Tomé","capital":0,"ibgeState":24,"siafi":1855,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.96404,-36.0798]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b16"},"ibge":4319703,"name":"São Valentim","capital":0,"ibgeState":43,"siafi":8897,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5583,-52.5237]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b17"},"ibge":4319711,"name":"São Valentim do Sul","capital":0,"ibgeState":43,"siafi":5997,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.0451,-51.7684]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b18"},"ibge":1720499,"name":"São Valério","capital":0,"ibgeState":17,"siafi":9691,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.9743,-48.2353]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b19"},"ibge":4319737,"name":"São Valério do Sul","capital":0,"ibgeState":43,"siafi":6075,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7906,-53.9368]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b1a"},"ibge":4319752,"name":"São Vendelino","capital":0,"ibgeState":43,"siafi":7293,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3729,-51.3675]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b1b"},"ibge":3551009,"name":"São Vicente","capital":0,"ibgeState":35,"siafi":7121,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.9574,-46.3883]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b1c"},"ibge":2413003,"name":"São Vicente","capital":0,"ibgeState":24,"siafi":1857,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.21893,-36.6827]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b1d"},"ibge":3165305,"name":"São Vicente de Minas","capital":0,"ibgeState":31,"siafi":5305,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7042,-44.4431]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b1e"},"ibge":2515401,"name":"São Vicente do Seridó","capital":0,"ibgeState":25,"siafi":2209,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.85426,-36.4122]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b1f"},"ibge":4319802,"name":"São Vicente do Sul","capital":0,"ibgeState":43,"siafi":8675,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6882,-54.6826]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b20"},"ibge":2613800,"name":"São Vicente Ferrer","capital":0,"ibgeState":26,"siafi":2575,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.58969,-35.4808]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b21"},"ibge":2111706,"name":"São Vicente Ferrer","capital":0,"ibgeState":21,"siafi":927,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.89487,-44.8681]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b22"},"ibge":2515302,"name":"Sapé","capital":0,"ibgeState":25,"siafi":2207,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.09359,-35.228]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b23"},"ibge":2929602,"name":"Sapeaçu","capital":0,"ibgeState":29,"siafi":3891,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.7208,-39.1824]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b24"},"ibge":5107875,"name":"Sapezal","capital":0,"ibgeState":51,"siafi":1046,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.9892,-58.7645]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b25"},"ibge":4319901,"name":"Sapiranga","capital":0,"ibgeState":43,"siafi":8899,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6349,-51.0064]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b26"},"ibge":4126207,"name":"Sapopema","capital":0,"ibgeState":41,"siafi":7899,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.9078,-50.5801]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b27"},"ibge":3165404,"name":"Sapucaí-Mirim","capital":0,"ibgeState":31,"siafi":5307,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7409,-45.738]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b28"},"ibge":1507755,"name":"Sapucaia","capital":0,"ibgeState":15,"siafi":66,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.94018,-49.6834]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b29"},"ibge":3305406,"name":"Sapucaia","capital":0,"ibgeState":33,"siafi":5907,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9949,-42.9142]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b2a"},"ibge":4320008,"name":"Sapucaia do Sul","capital":0,"ibgeState":43,"siafi":8901,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.8276,-51.145]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b2b"},"ibge":3305505,"name":"Saquarema","capital":0,"ibgeState":33,"siafi":5909,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9292,-42.5099]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b2c"},"ibge":4126256,"name":"Sarandi","capital":0,"ibgeState":41,"siafi":8461,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4441,-51.876]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b2d"},"ibge":4320107,"name":"Sarandi","capital":0,"ibgeState":43,"siafi":8903,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.942,-52.9231]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b2e"},"ibge":3551108,"name":"Sarapuí","capital":0,"ibgeState":35,"siafi":7123,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6397,-47.8249]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b2f"},"ibge":3165503,"name":"Sardoá","capital":0,"ibgeState":31,"siafi":5309,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.7828,-42.3629]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b30"},"ibge":3551207,"name":"Sarutaiá","capital":0,"ibgeState":35,"siafi":7125,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2721,-49.4763]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b31"},"ibge":3165537,"name":"Sarzedo","capital":0,"ibgeState":31,"siafi":730,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0367,-44.1446]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b32"},"ibge":2929701,"name":"Sátiro Dias","capital":0,"ibgeState":29,"siafi":3893,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.5929,-38.5938]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b33"},"ibge":2708907,"name":"Satuba","capital":0,"ibgeState":27,"siafi":2877,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.56911,-35.8227]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b34"},"ibge":2111722,"name":"Satubinha","capital":0,"ibgeState":21,"siafi":248,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.04913,-45.2457]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b35"},"ibge":2929750,"name":"Saubara","capital":0,"ibgeState":29,"siafi":3037,"ddd":71,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.7387,-38.7625]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b36"},"ibge":4126272,"name":"Saudade do Iguaçu","capital":0,"ibgeState":41,"siafi":5493,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.6917,-52.6184]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b37"},"ibge":4217303,"name":"Saudades","capital":0,"ibgeState":42,"siafi":8341,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9317,-53.0021]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b38"},"ibge":2929800,"name":"Saúde","capital":0,"ibgeState":29,"siafi":3895,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.9428,-40.4155]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b39"},"ibge":4217402,"name":"Schroeder","capital":0,"ibgeState":42,"siafi":8343,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.4116,-49.074]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b3a"},"ibge":2929909,"name":"Seabra","capital":0,"ibgeState":29,"siafi":3897,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.4169,-41.7722]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b3b"},"ibge":4217501,"name":"Seara","capital":0,"ibgeState":42,"siafi":8345,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1564,-52.299]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b3c"},"ibge":3551306,"name":"Sebastianópolis do Sul","capital":0,"ibgeState":35,"siafi":7127,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6523,-49.925]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b3d"},"ibge":2210623,"name":"Sebastião Barros","capital":0,"ibgeState":22,"siafi":396,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.817,-44.8337]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b3e"},"ibge":2930006,"name":"Sebastião Laranjeiras","capital":0,"ibgeState":29,"siafi":3899,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.571,-42.9434]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b3f"},"ibge":2210631,"name":"Sebastião Leal","capital":0,"ibgeState":22,"siafi":398,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.56803,-44.06]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b40"},"ibge":4320206,"name":"Seberi","capital":0,"ibgeState":43,"siafi":8905,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4829,-53.4026]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b41"},"ibge":4320230,"name":"Sede Nova","capital":0,"ibgeState":43,"siafi":7335,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6367,-53.9493]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b42"},"ibge":4320263,"name":"Segredo","capital":0,"ibgeState":43,"siafi":7317,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3523,-52.9767]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b43"},"ibge":4320305,"name":"Selbach","capital":0,"ibgeState":43,"siafi":8907,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6294,-52.9498]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b44"},"ibge":5007802,"name":"Selvíria","capital":0,"ibgeState":50,"siafi":9811,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-20.3637,-51.4192]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b45"},"ibge":3165560,"name":"Sem-Peixe","capital":0,"ibgeState":31,"siafi":734,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1008,-42.8483]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b46"},"ibge":1200500,"name":"Sena Madureira","capital":0,"ibgeState":12,"siafi":145,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-9.06596,-68.6571]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b47"},"ibge":2111748,"name":"Senador Alexandre Costa","capital":0,"ibgeState":21,"siafi":250,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.25096,-44.0533]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b48"},"ibge":3165578,"name":"Senador Amaral","capital":0,"ibgeState":31,"siafi":2689,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5869,-46.1763]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b49"},"ibge":5220454,"name":"Senador Canedo","capital":0,"ibgeState":52,"siafi":9753,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.7084,-49.0914]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b4a"},"ibge":3165602,"name":"Senador Cortes","capital":0,"ibgeState":31,"siafi":5311,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7986,-42.9424]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b4b"},"ibge":2413102,"name":"Senador Elói de Souza","capital":0,"ibgeState":24,"siafi":1859,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.03334,-35.6978]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b4c"},"ibge":3165701,"name":"Senador Firmino","capital":0,"ibgeState":31,"siafi":5313,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9158,-43.0904]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b4d"},"ibge":2413201,"name":"Senador Georgino Avelino","capital":0,"ibgeState":24,"siafi":1861,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.1576,-35.1299]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b4e"},"ibge":1200450,"name":"Senador Guiomard","capital":0,"ibgeState":12,"siafi":153,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-10.1497,-67.7362]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b4f"},"ibge":3165800,"name":"Senador José Bento","capital":0,"ibgeState":31,"siafi":5315,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1633,-46.1792]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b50"},"ibge":1507805,"name":"Senador José Porfírio","capital":0,"ibgeState":15,"siafi":555,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.31242,-51.5764]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b51"},"ibge":2111763,"name":"Senador La Rocque","capital":0,"ibgeState":21,"siafi":252,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.4461,-47.2959]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b52"},"ibge":3165909,"name":"Senador Modestino Gonçalves","capital":0,"ibgeState":31,"siafi":5317,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.9465,-43.2172]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b53"},"ibge":2312700,"name":"Senador Pompeu","capital":0,"ibgeState":23,"siafi":1555,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.58244,-39.3704]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b54"},"ibge":2708956,"name":"Senador Rui Palmeira","capital":0,"ibgeState":27,"siafi":2891,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.46986,-37.4576]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b55"},"ibge":2312809,"name":"Senador Sá","capital":0,"ibgeState":23,"siafi":1557,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.35305,-40.4662]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b56"},"ibge":4320321,"name":"Senador Salgado Filho","capital":0,"ibgeState":43,"siafi":1012,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.025,-54.5507]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b57"},"ibge":4126306,"name":"Sengés","capital":0,"ibgeState":41,"siafi":7901,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.1129,-49.4616]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b58"},"ibge":2930105,"name":"Senhor do Bonfim","capital":0,"ibgeState":29,"siafi":3901,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.4594,-40.1865]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b59"},"ibge":3166006,"name":"Senhora de Oliveira","capital":0,"ibgeState":31,"siafi":5319,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7972,-43.3394]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b5a"},"ibge":3166105,"name":"Senhora do Porto","capital":0,"ibgeState":31,"siafi":5321,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.8909,-43.0799]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b5b"},"ibge":3166204,"name":"Senhora dos Remédios","capital":0,"ibgeState":31,"siafi":5323,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0351,-43.5812]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b5c"},"ibge":4320354,"name":"Sentinela do Sul","capital":0,"ibgeState":43,"siafi":5781,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.6107,-51.5862]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b5d"},"ibge":2930204,"name":"Sento Sé","capital":0,"ibgeState":29,"siafi":3903,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.74138,-41.8786]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b5e"},"ibge":4320404,"name":"Serafina Corrêa","capital":0,"ibgeState":43,"siafi":8909,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.7126,-51.9352]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b5f"},"ibge":3166303,"name":"Sericita","capital":0,"ibgeState":31,"siafi":5325,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4748,-42.4828]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b60"},"ibge":1101500,"name":"Seringueiras","capital":0,"ibgeState":11,"siafi":699,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.8055,-63.0182]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b61"},"ibge":4320453,"name":"Sério","capital":0,"ibgeState":43,"siafi":6035,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3904,-52.2685]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b62"},"ibge":3166402,"name":"Seritinga","capital":0,"ibgeState":31,"siafi":5327,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9134,-44.518]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b63"},"ibge":3305554,"name":"Seropédica","capital":0,"ibgeState":33,"siafi":786,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7526,-43.7155]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b64"},"ibge":3205002,"name":"Serra","capital":0,"ibgeState":32,"siafi":5699,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.121,-40.3074]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b65"},"ibge":4217550,"name":"Serra Alta","capital":0,"ibgeState":42,"siafi":9989,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7229,-53.0409]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b66"},"ibge":3551405,"name":"Serra Azul","capital":0,"ibgeState":35,"siafi":7129,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3074,-47.5602]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b67"},"ibge":3166501,"name":"Serra Azul de Minas","capital":0,"ibgeState":31,"siafi":5329,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.3602,-43.1675]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b68"},"ibge":2515500,"name":"Serra Branca","capital":0,"ibgeState":25,"siafi":2211,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.48034,-36.666]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b69"},"ibge":2410306,"name":"Serra Caiada","capital":0,"ibgeState":24,"siafi":1805,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.10478,-35.7113]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b6a"},"ibge":2515609,"name":"Serra da Raiz","capital":0,"ibgeState":25,"siafi":2213,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.68527,-35.4379]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b6b"},"ibge":3166600,"name":"Serra da Saudade","capital":0,"ibgeState":31,"siafi":5331,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.4447,-45.795]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b6c"},"ibge":2413300,"name":"Serra de São Bento","capital":0,"ibgeState":24,"siafi":1863,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.41762,-35.7033]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b6d"},"ibge":2413359,"name":"Serra do Mel","capital":0,"ibgeState":24,"siafi":1927,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.17725,-37.0242]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b6e"},"ibge":1600055,"name":"Serra do Navio","capital":0,"ibgeState":16,"siafi":665,"ddd":96,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[0.901357,-52.0036]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b6f"},"ibge":2930154,"name":"Serra do Ramalho","capital":0,"ibgeState":29,"siafi":3039,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.5659,-43.5929]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b70"},"ibge":3166808,"name":"Serra do Salitre","capital":0,"ibgeState":31,"siafi":5335,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.1083,-46.6961]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b71"},"ibge":3166709,"name":"Serra dos Aimorés","capital":0,"ibgeState":31,"siafi":5333,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.7872,-40.2453]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b72"},"ibge":2930303,"name":"Serra Dourada","capital":0,"ibgeState":29,"siafi":3905,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.759,-43.9504]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b73"},"ibge":2515708,"name":"Serra Grande","capital":0,"ibgeState":25,"siafi":2215,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.20957,-38.3647]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b74"},"ibge":3551603,"name":"Serra Negra","capital":0,"ibgeState":35,"siafi":7133,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6139,-46.7033]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b75"},"ibge":2413409,"name":"Serra Negra do Norte","capital":0,"ibgeState":24,"siafi":1865,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.66031,-37.3996]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b76"},"ibge":5107883,"name":"Serra Nova Dourada","capital":0,"ibgeState":51,"siafi":1100,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.0896,-51.4025]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b77"},"ibge":2930402,"name":"Serra Preta","capital":0,"ibgeState":29,"siafi":3907,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.156,-39.3305]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b78"},"ibge":2515807,"name":"Serra Redonda","capital":0,"ibgeState":25,"siafi":2217,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.18622,-35.6842]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b79"},"ibge":2613909,"name":"Serra Talhada","capital":0,"ibgeState":26,"siafi":2577,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.98178,-38.289]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b7a"},"ibge":3551504,"name":"Serrana","capital":0,"ibgeState":35,"siafi":7131,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2043,-47.5952]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b7b"},"ibge":3166907,"name":"Serrania","capital":0,"ibgeState":31,"siafi":5337,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5441,-46.0417]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b7c"},"ibge":2111789,"name":"Serrano do Maranhão","capital":0,"ibgeState":21,"siafi":254,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.85229,-45.1207]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b7d"},"ibge":5220504,"name":"Serranópolis","capital":0,"ibgeState":52,"siafi":9607,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.3067,-51.9586]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b7e"},"ibge":3166956,"name":"Serranópolis de Minas","capital":0,"ibgeState":31,"siafi":736,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.8176,-42.8732]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b7f"},"ibge":4126355,"name":"Serranópolis do Iguaçu","capital":0,"ibgeState":41,"siafi":882,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.3799,-54.0518]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b80"},"ibge":3167004,"name":"Serranos","capital":0,"ibgeState":31,"siafi":5339,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8857,-44.5125]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b81"},"ibge":2515906,"name":"Serraria","capital":0,"ibgeState":25,"siafi":2219,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.81569,-35.6282]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b82"},"ibge":2413508,"name":"Serrinha","capital":0,"ibgeState":24,"siafi":1867,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.28181,-35.5]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b83"},"ibge":2930501,"name":"Serrinha","capital":0,"ibgeState":29,"siafi":3909,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.6584,-39.01]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b84"},"ibge":2413557,"name":"Serrinha dos Pintos","capital":0,"ibgeState":24,"siafi":432,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.11087,-37.9548]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b85"},"ibge":2614006,"name":"Serrita","capital":0,"ibgeState":26,"siafi":2579,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.94041,-39.2951]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b86"},"ibge":3167103,"name":"Serro","capital":0,"ibgeState":31,"siafi":5341,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5991,-43.3744]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b87"},"ibge":2930600,"name":"Serrolândia","capital":0,"ibgeState":29,"siafi":3911,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.4085,-40.2983]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b88"},"ibge":4126405,"name":"Sertaneja","capital":0,"ibgeState":41,"siafi":7903,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0361,-50.8317]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b89"},"ibge":2614105,"name":"Sertânia","capital":0,"ibgeState":26,"siafi":2581,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.06847,-37.2684]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b8a"},"ibge":4126504,"name":"Sertanópolis","capital":0,"ibgeState":41,"siafi":7905,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0571,-51.0399]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b8b"},"ibge":4320503,"name":"Sertão","capital":0,"ibgeState":43,"siafi":8911,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9798,-52.2588]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b8c"},"ibge":4320552,"name":"Sertão Santana","capital":0,"ibgeState":43,"siafi":5761,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.4562,-51.6017]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b8d"},"ibge":3551702,"name":"Sertãozinho","capital":0,"ibgeState":35,"siafi":7135,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1316,-47.9875]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b8e"},"ibge":2515930,"name":"Sertãozinho","capital":0,"ibgeState":25,"siafi":532,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.75127,-35.4372]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b8f"},"ibge":3551801,"name":"Sete Barras","capital":0,"ibgeState":35,"siafi":7137,"ddd":13,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.382,-47.9279]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b90"},"ibge":4320578,"name":"Sete de Setembro","capital":0,"ibgeState":43,"siafi":1014,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.1362,-54.4637]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b91"},"ibge":3167202,"name":"Sete Lagoas","capital":0,"ibgeState":31,"siafi":5343,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.4569,-44.2413]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b92"},"ibge":5007703,"name":"Sete Quedas","capital":0,"ibgeState":50,"siafi":9813,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-23.9705,-55.0398]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b93"},"ibge":3165552,"name":"Setubinha","capital":0,"ibgeState":31,"siafi":732,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.6002,-42.1587]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b94"},"ibge":4320602,"name":"Severiano de Almeida","capital":0,"ibgeState":43,"siafi":8913,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4362,-52.1217]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b95"},"ibge":2413607,"name":"Severiano Melo","capital":0,"ibgeState":24,"siafi":1869,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.77666,-37.957]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b96"},"ibge":3551900,"name":"Severínia","capital":0,"ibgeState":35,"siafi":7139,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8108,-48.8054]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b97"},"ibge":4217600,"name":"Siderópolis","capital":0,"ibgeState":42,"siafi":8347,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5955,-49.4314]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b98"},"ibge":5007901,"name":"Sidrolândia","capital":0,"ibgeState":50,"siafi":9157,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-20.9302,-54.9692]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b99"},"ibge":2210656,"name":"Sigefredo Pacheco","capital":0,"ibgeState":22,"siafi":1379,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.91665,-41.7311]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b9a"},"ibge":3305604,"name":"Silva Jardim","capital":0,"ibgeState":33,"siafi":5911,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6574,-42.3961]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b9b"},"ibge":5220603,"name":"Silvânia","capital":0,"ibgeState":52,"siafi":9609,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.66,-48.6083]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b9c"},"ibge":1720655,"name":"Silvanópolis","capital":0,"ibgeState":17,"siafi":9659,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.1471,-48.1694]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b9d"},"ibge":4320651,"name":"Silveira Martins","capital":0,"ibgeState":43,"siafi":7315,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6467,-53.591]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b9e"},"ibge":3167301,"name":"Silveirânia","capital":0,"ibgeState":31,"siafi":5345,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1615,-43.2128]}} +{"_id":{"$oid":"66f9d5ae542d90c053667b9f"},"ibge":3552007,"name":"Silveiras","capital":0,"ibgeState":35,"siafi":7141,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.6638,-44.8522]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ba0"},"ibge":1304005,"name":"Silves","capital":0,"ibgeState":13,"siafi":277,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-2.81748,-58.248]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ba1"},"ibge":3167400,"name":"Silvianópolis","capital":0,"ibgeState":31,"siafi":5347,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0274,-45.8385]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ba2"},"ibge":2807105,"name":"Simão Dias","capital":0,"ibgeState":28,"siafi":3241,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7387,-37.8097]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ba3"},"ibge":3167509,"name":"Simão Pereira","capital":0,"ibgeState":31,"siafi":5349,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.964,-43.3088]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ba4"},"ibge":2210706,"name":"Simões","capital":0,"ibgeState":22,"siafi":1213,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.59109,-40.8137]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ba5"},"ibge":2930709,"name":"Simões Filho","capital":0,"ibgeState":29,"siafi":3913,"ddd":71,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.7866,-38.4029]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ba6"},"ibge":5220686,"name":"Simolândia","capital":0,"ibgeState":52,"siafi":9755,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.4644,-46.4847]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ba7"},"ibge":3167608,"name":"Simonésia","capital":0,"ibgeState":31,"siafi":5351,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1341,-42.0091]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ba8"},"ibge":2210805,"name":"Simplício Mendes","capital":0,"ibgeState":22,"siafi":1215,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.85294,-41.9075]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ba9"},"ibge":4320677,"name":"Sinimbu","capital":0,"ibgeState":43,"siafi":5767,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5357,-52.5304]}} +{"_id":{"$oid":"66f9d5ae542d90c053667baa"},"ibge":5107909,"name":"Sinop","capital":0,"ibgeState":51,"siafi":8985,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.8604,-55.5091]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bab"},"ibge":4126603,"name":"Siqueira Campos","capital":0,"ibgeState":41,"siafi":7907,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6875,-49.8304]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bac"},"ibge":2614204,"name":"Sirinhaém","capital":0,"ibgeState":26,"siafi":2583,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.58778,-35.1126]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bad"},"ibge":2807204,"name":"Siriri","capital":0,"ibgeState":28,"siafi":3243,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.5965,-37.1131]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bae"},"ibge":5220702,"name":"Sítio d'Abadia","capital":0,"ibgeState":52,"siafi":9611,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.7992,-46.2506]}} +{"_id":{"$oid":"66f9d5ae542d90c053667baf"},"ibge":2930758,"name":"Sítio do Mato","capital":0,"ibgeState":29,"siafi":3041,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.0801,-43.4689]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bb0"},"ibge":2930766,"name":"Sítio do Quinto","capital":0,"ibgeState":29,"siafi":3043,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.3545,-38.2213]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bb1"},"ibge":2111805,"name":"Sítio Novo","capital":0,"ibgeState":21,"siafi":929,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.87601,-46.7033]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bb2"},"ibge":2413706,"name":"Sítio Novo","capital":0,"ibgeState":24,"siafi":1871,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.11132,-35.909]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bb3"},"ibge":1720804,"name":"Sítio Novo do Tocantins","capital":0,"ibgeState":17,"siafi":9613,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.6012,-47.6381]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bb4"},"ibge":2930774,"name":"Sobradinho","capital":0,"ibgeState":29,"siafi":3045,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.45024,-40.8145]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bb5"},"ibge":4320701,"name":"Sobradinho","capital":0,"ibgeState":43,"siafi":8917,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4194,-53.0326]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bb6"},"ibge":2515971,"name":"Sobrado","capital":0,"ibgeState":25,"siafi":534,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.14429,-35.2357]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bb7"},"ibge":2312908,"name":"Sobral","capital":0,"ibgeState":23,"siafi":1559,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.68913,-40.3482]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bb8"},"ibge":3167707,"name":"Sobrália","capital":0,"ibgeState":31,"siafi":5353,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2345,-42.0998]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bb9"},"ibge":3552106,"name":"Socorro","capital":0,"ibgeState":35,"siafi":7143,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5903,-46.5251]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bba"},"ibge":2210904,"name":"Socorro do Piauí","capital":0,"ibgeState":22,"siafi":1217,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.86773,-42.4922]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bbb"},"ibge":2516003,"name":"Solânea","capital":0,"ibgeState":25,"siafi":2221,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.75161,-35.6636]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bbc"},"ibge":2516102,"name":"Soledade","capital":0,"ibgeState":25,"siafi":2223,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.05829,-36.3668]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bbd"},"ibge":4320800,"name":"Soledade","capital":0,"ibgeState":43,"siafi":8919,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.8306,-52.5131]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bbe"},"ibge":3167806,"name":"Soledade de Minas","capital":0,"ibgeState":31,"siafi":5355,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0554,-45.0464]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bbf"},"ibge":2614402,"name":"Solidão","capital":0,"ibgeState":26,"siafi":2587,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.59472,-37.6445]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bc0"},"ibge":2313005,"name":"Solonópole","capital":0,"ibgeState":23,"siafi":1561,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.71894,-39.0107]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bc1"},"ibge":4217709,"name":"Sombrio","capital":0,"ibgeState":42,"siafi":8349,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.108,-49.6328]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bc2"},"ibge":5007935,"name":"Sonora","capital":0,"ibgeState":50,"siafi":9757,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-17.5698,-54.7551]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bc3"},"ibge":3205010,"name":"Sooretama","capital":0,"ibgeState":32,"siafi":766,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.1897,-40.0974]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bc4"},"ibge":3552205,"name":"Sorocaba","capital":0,"ibgeState":35,"siafi":7145,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4969,-47.4451]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bc5"},"ibge":5107925,"name":"Sorriso","capital":0,"ibgeState":51,"siafi":9907,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.5425,-55.7211]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bc6"},"ibge":2516151,"name":"Sossêgo","capital":0,"ibgeState":25,"siafi":536,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.77067,-36.2538]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bc7"},"ibge":1507904,"name":"Soure","capital":0,"ibgeState":15,"siafi":557,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.73032,-48.5015]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bc8"},"ibge":2516201,"name":"Sousa","capital":0,"ibgeState":25,"siafi":2225,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.75148,-38.2311]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bc9"},"ibge":2930808,"name":"Souto Soares","capital":0,"ibgeState":29,"siafi":3915,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.088,-41.6427]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bca"},"ibge":1720853,"name":"Sucupira","capital":0,"ibgeState":17,"siafi":335,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.993,-48.9685]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bcb"},"ibge":2111904,"name":"Sucupira do Norte","capital":0,"ibgeState":21,"siafi":931,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.47839,-44.1919]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bcc"},"ibge":2111953,"name":"Sucupira do Riachão","capital":0,"ibgeState":21,"siafi":256,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.40858,-43.5455]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bcd"},"ibge":3552304,"name":"Sud Mennucci","capital":0,"ibgeState":35,"siafi":7147,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6872,-50.9238]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bce"},"ibge":4217758,"name":"Sul Brasil","capital":0,"ibgeState":42,"siafi":5595,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.7351,-52.964]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bcf"},"ibge":4126652,"name":"Sulina","capital":0,"ibgeState":41,"siafi":8477,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.7066,-52.7299]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bd0"},"ibge":3552403,"name":"Sumaré","capital":0,"ibgeState":35,"siafi":7149,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8204,-47.2728]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bd1"},"ibge":2516300,"name":"Sumé","capital":0,"ibgeState":25,"siafi":2227,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.66206,-36.884]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bd2"},"ibge":3305703,"name":"Sumidouro","capital":0,"ibgeState":33,"siafi":5913,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0485,-42.6761]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bd3"},"ibge":2614501,"name":"Surubim","capital":0,"ibgeState":26,"siafi":2589,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.84746,-35.7481]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bd4"},"ibge":2210938,"name":"Sussuapara","capital":0,"ibgeState":22,"siafi":400,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.03687,-41.3767]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bd5"},"ibge":3552551,"name":"Suzanápolis","capital":0,"ibgeState":35,"siafi":2945,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4981,-51.0268]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bd6"},"ibge":3552502,"name":"Suzano","capital":0,"ibgeState":35,"siafi":7151,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5448,-46.3112]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bd7"},"ibge":4320859,"name":"Tabaí","capital":0,"ibgeState":43,"siafi":1016,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.643,-51.6823]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bd8"},"ibge":5107941,"name":"Tabaporã","capital":0,"ibgeState":51,"siafi":125,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.3007,-56.8312]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bd9"},"ibge":3552601,"name":"Tabapuã","capital":0,"ibgeState":35,"siafi":7153,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9602,-49.0307]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bda"},"ibge":3552700,"name":"Tabatinga","capital":0,"ibgeState":35,"siafi":7155,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7239,-48.6896]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bdb"},"ibge":1304062,"name":"Tabatinga","capital":0,"ibgeState":13,"siafi":9847,"ddd":97,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-4.2416,-69.9383]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bdc"},"ibge":2614600,"name":"Tabira","capital":0,"ibgeState":26,"siafi":2591,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.58366,-37.5377]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bdd"},"ibge":3552809,"name":"Taboão da Serra","capital":0,"ibgeState":35,"siafi":7157,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.6019,-46.7526]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bde"},"ibge":2930907,"name":"Tabocas do Brejo Velho","capital":0,"ibgeState":29,"siafi":3917,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.7026,-44.0075]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bdf"},"ibge":2413805,"name":"Taboleiro Grande","capital":0,"ibgeState":24,"siafi":1873,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.91948,-38.0367]}} +{"_id":{"$oid":"66f9d5ae542d90c053667be0"},"ibge":3167905,"name":"Tabuleiro","capital":0,"ibgeState":31,"siafi":5357,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3632,-43.2381]}} +{"_id":{"$oid":"66f9d5ae542d90c053667be1"},"ibge":2313104,"name":"Tabuleiro do Norte","capital":0,"ibgeState":23,"siafi":1563,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.24353,-38.1282]}} +{"_id":{"$oid":"66f9d5ae542d90c053667be2"},"ibge":2614709,"name":"Tacaimbó","capital":0,"ibgeState":26,"siafi":2593,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.30867,-36.3]}} +{"_id":{"$oid":"66f9d5ae542d90c053667be3"},"ibge":2614808,"name":"Tacaratu","capital":0,"ibgeState":26,"siafi":2595,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.09798,-38.1504]}} +{"_id":{"$oid":"66f9d5ae542d90c053667be4"},"ibge":3552908,"name":"Taciba","capital":0,"ibgeState":35,"siafi":7159,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3866,-51.2882]}} +{"_id":{"$oid":"66f9d5ae542d90c053667be5"},"ibge":2516409,"name":"Tacima","capital":0,"ibgeState":25,"siafi":2229,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.48759,-35.6367]}} +{"_id":{"$oid":"66f9d5ae542d90c053667be6"},"ibge":5007950,"name":"Tacuru","capital":0,"ibgeState":50,"siafi":9815,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-23.636,-55.0141]}} +{"_id":{"$oid":"66f9d5ae542d90c053667be7"},"ibge":3553005,"name":"Taguaí","capital":0,"ibgeState":35,"siafi":7161,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4452,-49.4024]}} +{"_id":{"$oid":"66f9d5ae542d90c053667be8"},"ibge":1720903,"name":"Taguatinga","capital":0,"ibgeState":17,"siafi":9615,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.4026,-46.437]}} +{"_id":{"$oid":"66f9d5ae542d90c053667be9"},"ibge":3553104,"name":"Taiaçu","capital":0,"ibgeState":35,"siafi":7163,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1431,-48.5112]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bea"},"ibge":1507953,"name":"Tailândia","capital":0,"ibgeState":15,"siafi":395,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.94584,-48.9489]}} +{"_id":{"$oid":"66f9d5ae542d90c053667beb"},"ibge":4217808,"name":"Taió","capital":0,"ibgeState":42,"siafi":8351,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.121,-49.9942]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bec"},"ibge":3168002,"name":"Taiobeiras","capital":0,"ibgeState":31,"siafi":5359,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.8106,-42.2259]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bed"},"ibge":1720937,"name":"Taipas do Tocantins","capital":0,"ibgeState":17,"siafi":325,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.1873,-46.9797]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bee"},"ibge":2413904,"name":"Taipu","capital":0,"ibgeState":24,"siafi":1875,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.63058,-35.5918]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bef"},"ibge":3553203,"name":"Taiúva","capital":0,"ibgeState":35,"siafi":7165,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1223,-48.4528]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bf0"},"ibge":1720978,"name":"Talismã","capital":0,"ibgeState":17,"siafi":100,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.7949,-49.0896]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bf1"},"ibge":2614857,"name":"Tamandaré","capital":0,"ibgeState":26,"siafi":558,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.75665,-35.1033]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bf2"},"ibge":4126678,"name":"Tamarana","capital":0,"ibgeState":41,"siafi":884,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7204,-51.0991]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bf3"},"ibge":3553302,"name":"Tambaú","capital":0,"ibgeState":35,"siafi":7167,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7029,-47.2703]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bf4"},"ibge":4126702,"name":"Tamboara","capital":0,"ibgeState":41,"siafi":7909,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2036,-52.4743]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bf5"},"ibge":2313203,"name":"Tamboril","capital":0,"ibgeState":23,"siafi":1565,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.83136,-40.3196]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bf6"},"ibge":2210953,"name":"Tamboril do Piauí","capital":0,"ibgeState":22,"siafi":402,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.40937,-42.9211]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bf7"},"ibge":3553401,"name":"Tanabi","capital":0,"ibgeState":35,"siafi":7169,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6228,-49.6563]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bf8"},"ibge":2414001,"name":"Tangará","capital":0,"ibgeState":24,"siafi":1877,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.19649,-35.7989]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bf9"},"ibge":4217907,"name":"Tangará","capital":0,"ibgeState":42,"siafi":8353,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0996,-51.2473]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bfa"},"ibge":5107958,"name":"Tangará da Serra","capital":0,"ibgeState":51,"siafi":9185,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-14.6229,-57.4933]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bfb"},"ibge":3305752,"name":"Tanguá","capital":0,"ibgeState":33,"siafi":788,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7423,-42.7202]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bfc"},"ibge":2931004,"name":"Tanhaçu","capital":0,"ibgeState":29,"siafi":3919,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.0197,-41.2473]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bfd"},"ibge":2709004,"name":"Tanque d'Arca","capital":0,"ibgeState":27,"siafi":2879,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.53379,-36.4366]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bfe"},"ibge":2210979,"name":"Tanque do Piauí","capital":0,"ibgeState":22,"siafi":404,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.59787,-42.2795]}} +{"_id":{"$oid":"66f9d5ae542d90c053667bff"},"ibge":2931053,"name":"Tanque Novo","capital":0,"ibgeState":29,"siafi":3991,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.5485,-42.4934]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c00"},"ibge":2931103,"name":"Tanquinho","capital":0,"ibgeState":29,"siafi":3921,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.968,-39.1033]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c01"},"ibge":3168051,"name":"Taparuba","capital":0,"ibgeState":31,"siafi":738,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7621,-41.608]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c02"},"ibge":1304104,"name":"Tapauá","capital":0,"ibgeState":13,"siafi":279,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-5.62085,-63.1808]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c03"},"ibge":4126801,"name":"Tapejara","capital":0,"ibgeState":41,"siafi":7911,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7315,-52.8735]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c04"},"ibge":4320909,"name":"Tapejara","capital":0,"ibgeState":43,"siafi":8921,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.0652,-52.0097]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c05"},"ibge":4321006,"name":"Tapera","capital":0,"ibgeState":43,"siafi":8923,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.6277,-52.8613]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c06"},"ibge":2931202,"name":"Taperoá","capital":0,"ibgeState":29,"siafi":3923,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.5321,-39.1009]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c07"},"ibge":2516508,"name":"Taperoá","capital":0,"ibgeState":25,"siafi":2231,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.20629,-36.8245]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c08"},"ibge":4321105,"name":"Tapes","capital":0,"ibgeState":43,"siafi":8925,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.6683,-51.3991]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c09"},"ibge":4126900,"name":"Tapira","capital":0,"ibgeState":41,"siafi":7973,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3193,-53.0684]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c0a"},"ibge":3168101,"name":"Tapira","capital":0,"ibgeState":31,"siafi":5361,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.9166,-46.8264]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c0b"},"ibge":3168200,"name":"Tapiraí","capital":0,"ibgeState":31,"siafi":5363,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.8936,-46.0221]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c0c"},"ibge":3553500,"name":"Tapiraí","capital":0,"ibgeState":35,"siafi":7171,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.9612,-47.5062]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c0d"},"ibge":2931301,"name":"Tapiramutá","capital":0,"ibgeState":29,"siafi":3925,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.8475,-40.7927]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c0e"},"ibge":3553609,"name":"Tapiratiba","capital":0,"ibgeState":35,"siafi":7173,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4713,-46.7448]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c0f"},"ibge":5108006,"name":"Tapurah","capital":0,"ibgeState":51,"siafi":9763,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.695,-56.5178]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c10"},"ibge":4321204,"name":"Taquara","capital":0,"ibgeState":43,"siafi":8927,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6505,-50.7753]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c11"},"ibge":3168309,"name":"Taquaraçu de Minas","capital":0,"ibgeState":31,"siafi":5365,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6652,-43.6922]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c12"},"ibge":3553658,"name":"Taquaral","capital":0,"ibgeState":35,"siafi":824,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0737,-48.4126]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c13"},"ibge":5221007,"name":"Taquaral de Goiás","capital":0,"ibgeState":52,"siafi":9617,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0521,-49.6039]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c14"},"ibge":2709103,"name":"Taquarana","capital":0,"ibgeState":27,"siafi":2881,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.64529,-36.4928]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c15"},"ibge":4321303,"name":"Taquari","capital":0,"ibgeState":43,"siafi":8929,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.7943,-51.8653]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c16"},"ibge":3553708,"name":"Taquaritinga","capital":0,"ibgeState":35,"siafi":7175,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.4049,-48.5103]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c17"},"ibge":2615003,"name":"Taquaritinga do Norte","capital":0,"ibgeState":26,"siafi":2599,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.89446,-36.0423]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c18"},"ibge":3553807,"name":"Taquarituba","capital":0,"ibgeState":35,"siafi":7177,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5307,-49.241]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c19"},"ibge":3553856,"name":"Taquarivaí","capital":0,"ibgeState":35,"siafi":3063,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.9211,-48.6948]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c1a"},"ibge":4321329,"name":"Taquaruçu do Sul","capital":0,"ibgeState":43,"siafi":7313,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4005,-53.4702]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c1b"},"ibge":5007976,"name":"Taquarussu","capital":0,"ibgeState":50,"siafi":9817,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.4898,-53.3519]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c1c"},"ibge":3553906,"name":"Tarabai","capital":0,"ibgeState":35,"siafi":7179,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3016,-51.5621]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c1d"},"ibge":1200609,"name":"Tarauacá","capital":0,"ibgeState":12,"siafi":147,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-8.15697,-70.7722]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c1e"},"ibge":2313252,"name":"Tarrafas","capital":0,"ibgeState":23,"siafi":1275,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.67838,-39.753]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c1f"},"ibge":1600709,"name":"Tartarugalzinho","capital":0,"ibgeState":16,"siafi":617,"ddd":96,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[1.50652,-50.9087]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c20"},"ibge":3553955,"name":"Tarumã","capital":0,"ibgeState":35,"siafi":7267,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7429,-50.5786]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c21"},"ibge":3168408,"name":"Tarumirim","capital":0,"ibgeState":31,"siafi":5367,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.2835,-42.0097]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c22"},"ibge":2112001,"name":"Tasso Fragoso","capital":0,"ibgeState":21,"siafi":933,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.4662,-45.7536]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c23"},"ibge":3554003,"name":"Tatuí","capital":0,"ibgeState":35,"siafi":7181,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3487,-47.8461]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c24"},"ibge":2313302,"name":"Tauá","capital":0,"ibgeState":23,"siafi":1567,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.98585,-40.2968]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c25"},"ibge":3554102,"name":"Taubaté","capital":0,"ibgeState":35,"siafi":7183,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0104,-45.5593]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c26"},"ibge":4321352,"name":"Tavares","capital":0,"ibgeState":43,"siafi":8971,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.2843,-51.088]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c27"},"ibge":2516607,"name":"Tavares","capital":0,"ibgeState":25,"siafi":2233,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.62697,-37.8712]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c28"},"ibge":1304203,"name":"Tefé","capital":0,"ibgeState":13,"siafi":281,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.36822,-64.7193]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c29"},"ibge":2516706,"name":"Teixeira","capital":0,"ibgeState":25,"siafi":2235,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.22104,-37.2525]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c2a"},"ibge":2931350,"name":"Teixeira de Freitas","capital":0,"ibgeState":29,"siafi":3993,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.5399,-39.74]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c2b"},"ibge":4127007,"name":"Teixeira Soares","capital":0,"ibgeState":41,"siafi":7913,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.3701,-50.4571]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c2c"},"ibge":3168507,"name":"Teixeiras","capital":0,"ibgeState":31,"siafi":5369,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.6561,-42.8564]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c2d"},"ibge":1101559,"name":"Teixeirópolis","capital":0,"ibgeState":11,"siafi":22,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.9056,-62.242]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c2e"},"ibge":2313351,"name":"Tejuçuoca","capital":0,"ibgeState":23,"siafi":1277,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.98831,-39.5799]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c2f"},"ibge":3554201,"name":"Tejupá","capital":0,"ibgeState":35,"siafi":7185,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.3425,-49.3722]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c30"},"ibge":4127106,"name":"Telêmaco Borba","capital":0,"ibgeState":41,"siafi":7915,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.3245,-50.6176]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c31"},"ibge":2807303,"name":"Telha","capital":0,"ibgeState":28,"siafi":3245,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.2064,-36.8818]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c32"},"ibge":2414100,"name":"Tenente Ananias","capital":0,"ibgeState":24,"siafi":1879,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.45823,-38.182]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c33"},"ibge":2414159,"name":"Tenente Laurentino Cruz","capital":0,"ibgeState":24,"siafi":434,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.1378,-36.7135]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c34"},"ibge":4321402,"name":"Tenente Portela","capital":0,"ibgeState":43,"siafi":8931,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3711,-53.7585]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c35"},"ibge":2516755,"name":"Tenório","capital":0,"ibgeState":25,"siafi":538,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.93855,-36.6273]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c36"},"ibge":2931400,"name":"Teodoro Sampaio","capital":0,"ibgeState":29,"siafi":3927,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.295,-38.6347]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c37"},"ibge":3554300,"name":"Teodoro Sampaio","capital":0,"ibgeState":35,"siafi":7187,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5299,-52.1682]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c38"},"ibge":2931509,"name":"Teofilândia","capital":0,"ibgeState":29,"siafi":3929,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.4827,-38.9913]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c39"},"ibge":3168606,"name":"Teófilo Otoni","capital":0,"ibgeState":31,"siafi":5371,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.8595,-41.5087]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c3a"},"ibge":2931608,"name":"Teolândia","capital":0,"ibgeState":29,"siafi":3931,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.5896,-39.484]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c3b"},"ibge":2709152,"name":"Teotônio Vilela","capital":0,"ibgeState":27,"siafi":971,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.91656,-36.3492]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c3c"},"ibge":5008008,"name":"Terenos","capital":0,"ibgeState":50,"siafi":9159,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-20.4378,-54.8647]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c3d"},"ibge":2211001,"name":"Teresina","capital":1,"ibgeState":22,"siafi":1219,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.09194,-42.8034]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c3e"},"ibge":5221080,"name":"Teresina de Goiás","capital":0,"ibgeState":52,"siafi":9759,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.7801,-47.2659]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c3f"},"ibge":3305802,"name":"Teresópolis","capital":0,"ibgeState":33,"siafi":5915,"ddd":21,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4165,-42.9752]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c40"},"ibge":2615102,"name":"Terezinha","capital":0,"ibgeState":26,"siafi":2601,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.05621,-36.6272]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c41"},"ibge":5221197,"name":"Terezópolis de Goiás","capital":0,"ibgeState":52,"siafi":57,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.3945,-49.0797]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c42"},"ibge":1507961,"name":"Terra Alta","capital":0,"ibgeState":15,"siafi":373,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.02963,-47.9004]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c43"},"ibge":4127205,"name":"Terra Boa","capital":0,"ibgeState":41,"siafi":7917,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7683,-52.447]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c44"},"ibge":4321436,"name":"Terra de Areia","capital":0,"ibgeState":43,"siafi":7333,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5782,-50.0644]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c45"},"ibge":2931707,"name":"Terra Nova","capital":0,"ibgeState":29,"siafi":3933,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.3888,-38.6238]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c46"},"ibge":2615201,"name":"Terra Nova","capital":0,"ibgeState":26,"siafi":2603,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.22244,-39.3825]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c47"},"ibge":5108055,"name":"Terra Nova do Norte","capital":0,"ibgeState":51,"siafi":9909,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.517,-55.231]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c48"},"ibge":4127304,"name":"Terra Rica","capital":0,"ibgeState":41,"siafi":7919,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7111,-52.6188]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c49"},"ibge":4127403,"name":"Terra Roxa","capital":0,"ibgeState":41,"siafi":7921,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.1575,-54.0988]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c4a"},"ibge":3554409,"name":"Terra Roxa","capital":0,"ibgeState":35,"siafi":7189,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.787,-48.3314]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c4b"},"ibge":1507979,"name":"Terra Santa","capital":0,"ibgeState":15,"siafi":637,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.10443,-56.4877]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c4c"},"ibge":5108105,"name":"Tesouro","capital":0,"ibgeState":51,"siafi":9161,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-16.0809,-53.559]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c4d"},"ibge":4321451,"name":"Teutônia","capital":0,"ibgeState":43,"siafi":9821,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4482,-51.8044]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c4e"},"ibge":1101609,"name":"Theobroma","capital":0,"ibgeState":11,"siafi":975,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.2483,-62.3538]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c4f"},"ibge":2313401,"name":"Tianguá","capital":0,"ibgeState":23,"siafi":1569,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.72965,-40.9923]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c50"},"ibge":4127502,"name":"Tibagi","capital":0,"ibgeState":41,"siafi":7923,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.5153,-50.4176]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c51"},"ibge":2411056,"name":"Tibau","capital":0,"ibgeState":24,"siafi":428,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.83729,-37.2554]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c52"},"ibge":2414209,"name":"Tibau do Sul","capital":0,"ibgeState":24,"siafi":1881,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.19176,-35.0866]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c53"},"ibge":3554508,"name":"Tietê","capital":0,"ibgeState":35,"siafi":7191,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.1101,-47.7164]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c54"},"ibge":4217956,"name":"Tigrinhos","capital":0,"ibgeState":42,"siafi":946,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.6876,-53.1545]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c55"},"ibge":4218004,"name":"Tijucas","capital":0,"ibgeState":42,"siafi":8355,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2354,-48.6322]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c56"},"ibge":4127601,"name":"Tijucas do Sul","capital":0,"ibgeState":41,"siafi":7925,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.9311,-49.195]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c57"},"ibge":2615300,"name":"Timbaúba","capital":0,"ibgeState":26,"siafi":2605,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.50484,-35.3119]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c58"},"ibge":2414308,"name":"Timbaúba dos Batistas","capital":0,"ibgeState":24,"siafi":1883,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.45768,-37.2745]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c59"},"ibge":4218103,"name":"Timbé do Sul","capital":0,"ibgeState":42,"siafi":8393,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.8287,-49.842]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c5a"},"ibge":2112100,"name":"Timbiras","capital":0,"ibgeState":21,"siafi":935,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.25597,-43.932]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c5b"},"ibge":4218202,"name":"Timbó","capital":0,"ibgeState":42,"siafi":8357,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.8246,-49.269]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c5c"},"ibge":4218251,"name":"Timbó Grande","capital":0,"ibgeState":42,"siafi":9971,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.6127,-50.6607]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c5d"},"ibge":3554607,"name":"Timburi","capital":0,"ibgeState":35,"siafi":7193,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2057,-49.6096]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c5e"},"ibge":2112209,"name":"Timon","capital":0,"ibgeState":21,"siafi":937,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.09769,-42.8329]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c5f"},"ibge":3168705,"name":"Timóteo","capital":0,"ibgeState":31,"siafi":5373,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5811,-42.6471]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c60"},"ibge":4321469,"name":"Tio Hugo","capital":0,"ibgeState":43,"siafi":1174,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5712,-52.5955]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c61"},"ibge":3168804,"name":"Tiradentes","capital":0,"ibgeState":31,"siafi":5375,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1102,-44.1744]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c62"},"ibge":4321477,"name":"Tiradentes do Sul","capital":0,"ibgeState":43,"siafi":6077,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4022,-54.0814]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c63"},"ibge":3168903,"name":"Tiros","capital":0,"ibgeState":31,"siafi":5377,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.0037,-45.9626]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c64"},"ibge":2807402,"name":"Tobias Barreto","capital":0,"ibgeState":28,"siafi":3247,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.1798,-37.9995]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c65"},"ibge":1721109,"name":"Tocantínia","capital":0,"ibgeState":17,"siafi":9619,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.5632,-48.3741]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c66"},"ibge":1721208,"name":"Tocantinópolis","capital":0,"ibgeState":17,"siafi":9621,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.32447,-47.4224]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c67"},"ibge":3169000,"name":"Tocantins","capital":0,"ibgeState":31,"siafi":5379,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1774,-43.0127]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c68"},"ibge":3169059,"name":"Tocos do Moji","capital":0,"ibgeState":31,"siafi":740,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3698,-46.0971]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c69"},"ibge":3169109,"name":"Toledo","capital":0,"ibgeState":31,"siafi":5381,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.7421,-46.3728]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c6a"},"ibge":4127700,"name":"Toledo","capital":0,"ibgeState":41,"siafi":7927,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.7246,-53.7412]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c6b"},"ibge":2807501,"name":"Tomar do Geru","capital":0,"ibgeState":28,"siafi":3249,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.3694,-37.8433]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c6c"},"ibge":4127809,"name":"Tomazina","capital":0,"ibgeState":41,"siafi":7929,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7796,-49.9499]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c6d"},"ibge":3169208,"name":"Tombos","capital":0,"ibgeState":31,"siafi":5383,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9086,-42.0228]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c6e"},"ibge":1508001,"name":"Tomé-Açu","capital":0,"ibgeState":15,"siafi":559,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.41302,-48.1415]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c6f"},"ibge":1304237,"name":"Tonantins","capital":0,"ibgeState":13,"siafi":9851,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-2.86582,-67.7919]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c70"},"ibge":2615409,"name":"Toritama","capital":0,"ibgeState":26,"siafi":2607,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.00955,-36.0637]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c71"},"ibge":5108204,"name":"Torixoréu","capital":0,"ibgeState":51,"siafi":9163,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-16.2006,-52.5571]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c72"},"ibge":4321493,"name":"Toropi","capital":0,"ibgeState":43,"siafi":1018,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4782,-54.2244]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c73"},"ibge":3554656,"name":"Torre de Pedra","capital":0,"ibgeState":35,"siafi":3227,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2462,-48.1955]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c74"},"ibge":4321501,"name":"Torres","capital":0,"ibgeState":43,"siafi":8933,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3334,-49.7333]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c75"},"ibge":3554706,"name":"Torrinha","capital":0,"ibgeState":35,"siafi":7195,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4237,-48.1731]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c76"},"ibge":2414407,"name":"Touros","capital":0,"ibgeState":24,"siafi":1885,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.20182,-35.4621]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c77"},"ibge":3554755,"name":"Trabiju","capital":0,"ibgeState":35,"siafi":826,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0388,-48.3342]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c78"},"ibge":1508035,"name":"Tracuateua","capital":0,"ibgeState":15,"siafi":68,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.07653,-46.9031]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c79"},"ibge":2615508,"name":"Tracunhaém","capital":0,"ibgeState":26,"siafi":2609,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.80228,-35.2314]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c7a"},"ibge":2709202,"name":"Traipu","capital":0,"ibgeState":27,"siafi":2883,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.96262,-37.0071]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c7b"},"ibge":1508050,"name":"Trairão","capital":0,"ibgeState":15,"siafi":635,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.57347,-55.9429]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c7c"},"ibge":2313500,"name":"Trairi","capital":0,"ibgeState":23,"siafi":1571,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.26932,-39.2681]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c7d"},"ibge":3305901,"name":"Trajano de Moraes","capital":0,"ibgeState":33,"siafi":5917,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.0638,-42.0643]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c7e"},"ibge":4321600,"name":"Tramandaí","capital":0,"ibgeState":43,"siafi":8935,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.9841,-50.1322]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c7f"},"ibge":4321626,"name":"Travesseiro","capital":0,"ibgeState":43,"siafi":6037,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.2977,-52.0532]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c80"},"ibge":2931806,"name":"Tremedal","capital":0,"ibgeState":29,"siafi":3935,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.9736,-41.4142]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c81"},"ibge":3554805,"name":"Tremembé","capital":0,"ibgeState":35,"siafi":7197,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9571,-45.5475]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c82"},"ibge":4321634,"name":"Três Arroios","capital":0,"ibgeState":43,"siafi":7331,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5003,-52.1448]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c83"},"ibge":4218301,"name":"Três Barras","capital":0,"ibgeState":42,"siafi":8359,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.1056,-50.3197]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c84"},"ibge":4127858,"name":"Três Barras do Paraná","capital":0,"ibgeState":41,"siafi":7987,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.4185,-53.1833]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c85"},"ibge":4321667,"name":"Três Cachoeiras","capital":0,"ibgeState":43,"siafi":7329,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4487,-49.9275]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c86"},"ibge":3169307,"name":"Três Corações","capital":0,"ibgeState":31,"siafi":5385,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.6921,-45.2511]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c87"},"ibge":4321709,"name":"Três Coroas","capital":0,"ibgeState":43,"siafi":8937,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5137,-50.7739]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c88"},"ibge":4321808,"name":"Três de Maio","capital":0,"ibgeState":43,"siafi":8939,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.78,-54.2357]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c89"},"ibge":4321832,"name":"Três Forquilhas","capital":0,"ibgeState":43,"siafi":5777,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5384,-50.0708]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c8a"},"ibge":3554904,"name":"Três Fronteiras","capital":0,"ibgeState":35,"siafi":7199,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2344,-50.8905]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c8b"},"ibge":5008305,"name":"Três Lagoas","capital":0,"ibgeState":50,"siafi":9165,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-20.7849,-51.7007]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c8c"},"ibge":3169356,"name":"Três Marias","capital":0,"ibgeState":31,"siafi":4115,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.2048,-45.2473]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c8d"},"ibge":4321857,"name":"Três Palmeiras","capital":0,"ibgeState":43,"siafi":7327,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6139,-52.8437]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c8e"},"ibge":4321907,"name":"Três Passos","capital":0,"ibgeState":43,"siafi":8941,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4555,-53.9296]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c8f"},"ibge":3169406,"name":"Três Pontas","capital":0,"ibgeState":31,"siafi":5387,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3694,-45.5109]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c90"},"ibge":5221304,"name":"Três Ranchos","capital":0,"ibgeState":52,"siafi":9623,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.3539,-47.776]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c91"},"ibge":3306008,"name":"Três Rios","capital":0,"ibgeState":33,"siafi":5919,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.1165,-43.2185]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c92"},"ibge":4218350,"name":"Treviso","capital":0,"ibgeState":42,"siafi":948,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5097,-49.4634]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c93"},"ibge":4218400,"name":"Treze de Maio","capital":0,"ibgeState":42,"siafi":8361,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5537,-49.1565]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c94"},"ibge":4218509,"name":"Treze Tílias","capital":0,"ibgeState":42,"siafi":8363,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0026,-51.4084]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c95"},"ibge":5221403,"name":"Trindade","capital":0,"ibgeState":52,"siafi":9625,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.6517,-49.4927]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c96"},"ibge":2615607,"name":"Trindade","capital":0,"ibgeState":26,"siafi":2611,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.759,-40.2647]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c97"},"ibge":4321956,"name":"Trindade do Sul","capital":0,"ibgeState":43,"siafi":7325,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5239,-52.8956]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c98"},"ibge":4322004,"name":"Triunfo","capital":0,"ibgeState":43,"siafi":8943,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.9291,-51.7075]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c99"},"ibge":2516805,"name":"Triunfo","capital":0,"ibgeState":25,"siafi":2237,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.5713,-38.5986]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c9a"},"ibge":2615706,"name":"Triunfo","capital":0,"ibgeState":26,"siafi":2613,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.83272,-38.0978]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c9b"},"ibge":2414456,"name":"Triunfo Potiguar","capital":0,"ibgeState":24,"siafi":436,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.85408,-37.1786]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c9c"},"ibge":2112233,"name":"Trizidela do Vale","capital":0,"ibgeState":21,"siafi":258,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.538,-44.628]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c9d"},"ibge":5221452,"name":"Trombas","capital":0,"ibgeState":52,"siafi":9761,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.5079,-48.7417]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c9e"},"ibge":4218608,"name":"Trombudo Central","capital":0,"ibgeState":42,"siafi":8365,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3033,-49.793]}} +{"_id":{"$oid":"66f9d5ae542d90c053667c9f"},"ibge":4218707,"name":"Tubarão","capital":0,"ibgeState":42,"siafi":8367,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.4713,-49.0144]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ca0"},"ibge":2931905,"name":"Tucano","capital":0,"ibgeState":29,"siafi":3937,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.9584,-38.7894]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ca1"},"ibge":1508084,"name":"Tucumã","capital":0,"ibgeState":15,"siafi":397,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.74687,-51.1626]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ca2"},"ibge":4322103,"name":"Tucunduva","capital":0,"ibgeState":43,"siafi":8945,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.6573,-54.4439]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ca3"},"ibge":1508100,"name":"Tucuruí","capital":0,"ibgeState":15,"siafi":561,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.7657,-49.6773]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ca4"},"ibge":2112274,"name":"Tufilândia","capital":0,"ibgeState":21,"siafi":260,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.67355,-45.6238]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ca5"},"ibge":3554953,"name":"Tuiuti","capital":0,"ibgeState":35,"siafi":2955,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.8193,-46.6937]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ca6"},"ibge":3169505,"name":"Tumiritinga","capital":0,"ibgeState":31,"siafi":5389,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.9844,-41.6527]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ca7"},"ibge":4218756,"name":"Tunápolis","capital":0,"ibgeState":42,"siafi":9991,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9681,-53.6417]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ca8"},"ibge":4322152,"name":"Tunas","capital":0,"ibgeState":43,"siafi":7323,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.1039,-52.9538]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ca9"},"ibge":4127882,"name":"Tunas do Paraná","capital":0,"ibgeState":41,"siafi":5455,"ddd":41,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.9731,-49.0879]}} +{"_id":{"$oid":"66f9d5ae542d90c053667caa"},"ibge":4127908,"name":"Tuneiras do Oeste","capital":0,"ibgeState":41,"siafi":7931,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8648,-52.8769]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cab"},"ibge":2112308,"name":"Tuntum","capital":0,"ibgeState":21,"siafi":939,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.25476,-44.6444]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cac"},"ibge":3555000,"name":"Tupã","capital":0,"ibgeState":35,"siafi":7201,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.9335,-50.5191]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cad"},"ibge":3169604,"name":"Tupaciguara","capital":0,"ibgeState":31,"siafi":5391,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.5866,-48.6985]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cae"},"ibge":2615805,"name":"Tupanatinga","capital":0,"ibgeState":26,"siafi":2615,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.74798,-37.3445]}} +{"_id":{"$oid":"66f9d5ae542d90c053667caf"},"ibge":4322186,"name":"Tupanci do Sul","capital":0,"ibgeState":43,"siafi":5979,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9241,-51.5383]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cb0"},"ibge":4322202,"name":"Tupanciretã","capital":0,"ibgeState":43,"siafi":8947,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.0858,-53.8445]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cb1"},"ibge":4322251,"name":"Tupandi","capital":0,"ibgeState":43,"siafi":7321,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4772,-51.4174]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cb2"},"ibge":4322301,"name":"Tuparendi","capital":0,"ibgeState":43,"siafi":8949,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.7598,-54.4814]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cb3"},"ibge":2615904,"name":"Tuparetama","capital":0,"ibgeState":26,"siafi":2617,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.6003,-37.3165]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cb4"},"ibge":4127957,"name":"Tupãssi","capital":0,"ibgeState":41,"siafi":7993,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.5879,-53.5105]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cb5"},"ibge":3555109,"name":"Tupi Paulista","capital":0,"ibgeState":35,"siafi":7203,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.3825,-51.575]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cb6"},"ibge":1721257,"name":"Tupirama","capital":0,"ibgeState":17,"siafi":102,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.97168,-48.1883]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cb7"},"ibge":1721307,"name":"Tupiratins","capital":0,"ibgeState":17,"siafi":365,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.39388,-48.1277]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cb8"},"ibge":2112407,"name":"Turiaçu","capital":0,"ibgeState":21,"siafi":941,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.65893,-45.3798]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cb9"},"ibge":2112456,"name":"Turilândia","capital":0,"ibgeState":21,"siafi":262,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.21638,-45.3044]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cba"},"ibge":3555208,"name":"Turiúba","capital":0,"ibgeState":35,"siafi":7205,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9428,-50.1135]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cbb"},"ibge":3555307,"name":"Turmalina","capital":0,"ibgeState":35,"siafi":7207,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0486,-50.4792]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cbc"},"ibge":3169703,"name":"Turmalina","capital":0,"ibgeState":31,"siafi":5393,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.2828,-42.7285]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cbd"},"ibge":4322327,"name":"Turuçu","capital":0,"ibgeState":43,"siafi":1020,"ddd":53,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-31.4173,-52.1706]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cbe"},"ibge":2313559,"name":"Tururu","capital":0,"ibgeState":23,"siafi":1279,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.58413,-39.4297]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cbf"},"ibge":5221502,"name":"Turvânia","capital":0,"ibgeState":52,"siafi":9631,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.6125,-50.1369]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cc0"},"ibge":5221551,"name":"Turvelândia","capital":0,"ibgeState":52,"siafi":9765,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.8502,-50.3024]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cc1"},"ibge":4127965,"name":"Turvo","capital":0,"ibgeState":41,"siafi":8453,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.0437,-51.5282]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cc2"},"ibge":4218806,"name":"Turvo","capital":0,"ibgeState":42,"siafi":8369,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.9272,-49.6831]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cc3"},"ibge":3169802,"name":"Turvolândia","capital":0,"ibgeState":31,"siafi":5395,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8733,-45.7859]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cc4"},"ibge":2112506,"name":"Tutóia","capital":0,"ibgeState":21,"siafi":943,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.76141,-42.2755]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cc5"},"ibge":1304260,"name":"Uarini","capital":0,"ibgeState":13,"siafi":9849,"ddd":97,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-2.99609,-65.1133]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cc6"},"ibge":2932002,"name":"Uauá","capital":0,"ibgeState":29,"siafi":3939,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.83325,-39.4794]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cc7"},"ibge":3169901,"name":"Ubá","capital":0,"ibgeState":31,"siafi":5397,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1204,-42.9359]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cc8"},"ibge":3170008,"name":"Ubaí","capital":0,"ibgeState":31,"siafi":5399,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.2885,-44.7783]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cc9"},"ibge":2932101,"name":"Ubaíra","capital":0,"ibgeState":29,"siafi":3941,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.2714,-39.666]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cca"},"ibge":2932200,"name":"Ubaitaba","capital":0,"ibgeState":29,"siafi":3943,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.303,-39.3222]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ccb"},"ibge":2313609,"name":"Ubajara","capital":0,"ibgeState":23,"siafi":1573,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.85448,-40.9204]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ccc"},"ibge":3170057,"name":"Ubaporanga","capital":0,"ibgeState":31,"siafi":2671,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6351,-42.1059]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ccd"},"ibge":3555356,"name":"Ubarana","capital":0,"ibgeState":35,"siafi":2971,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.165,-49.7198]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cce"},"ibge":2932309,"name":"Ubatã","capital":0,"ibgeState":29,"siafi":3945,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.2063,-39.5207]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ccf"},"ibge":3555406,"name":"Ubatuba","capital":0,"ibgeState":35,"siafi":7209,"ddd":12,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.4332,-45.0834]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cd0"},"ibge":3170107,"name":"Uberaba","capital":0,"ibgeState":31,"siafi":5401,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.7472,-47.9381]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cd1"},"ibge":3170206,"name":"Uberlândia","capital":0,"ibgeState":31,"siafi":5403,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.9141,-48.2749]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cd2"},"ibge":3555505,"name":"Ubirajara","capital":0,"ibgeState":35,"siafi":7211,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5272,-49.6613]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cd3"},"ibge":4128005,"name":"Ubiratã","capital":0,"ibgeState":41,"siafi":7933,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.5393,-52.9865]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cd4"},"ibge":4322343,"name":"Ubiretama","capital":0,"ibgeState":43,"siafi":1022,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.0404,-54.686]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cd5"},"ibge":3555604,"name":"Uchoa","capital":0,"ibgeState":35,"siafi":7213,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9511,-49.1713]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cd6"},"ibge":2932408,"name":"Uibaí","capital":0,"ibgeState":29,"siafi":3947,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.3394,-42.1354]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cd7"},"ibge":1400704,"name":"Uiramutã","capital":0,"ibgeState":14,"siafi":38,"ddd":95,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[4.60314,-60.1815]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cd8"},"ibge":5221577,"name":"Uirapuru","capital":0,"ibgeState":52,"siafi":59,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.2835,-49.9201]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cd9"},"ibge":2516904,"name":"Uiraúna","capital":0,"ibgeState":25,"siafi":2239,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.51504,-38.4128]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cda"},"ibge":1508126,"name":"Ulianópolis","capital":0,"ibgeState":15,"siafi":623,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.75007,-47.4892]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cdb"},"ibge":2313708,"name":"Umari","capital":0,"ibgeState":23,"siafi":1575,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.63893,-38.7008]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cdc"},"ibge":2414506,"name":"Umarizal","capital":0,"ibgeState":24,"siafi":1887,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.98238,-37.818]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cdd"},"ibge":2807600,"name":"Umbaúba","capital":0,"ibgeState":28,"siafi":3251,"ddd":79,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.3809,-37.6623]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cde"},"ibge":2932457,"name":"Umburanas","capital":0,"ibgeState":29,"siafi":3047,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.7339,-41.3234]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cdf"},"ibge":3170305,"name":"Umburatiba","capital":0,"ibgeState":31,"siafi":5405,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.2548,-40.5779]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ce0"},"ibge":2517001,"name":"Umbuzeiro","capital":0,"ibgeState":25,"siafi":2241,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.69199,-35.6582]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ce1"},"ibge":2313757,"name":"Umirim","capital":0,"ibgeState":23,"siafi":9855,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.67654,-39.3465]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ce2"},"ibge":4128104,"name":"Umuarama","capital":0,"ibgeState":41,"siafi":7935,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7656,-53.3201]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ce3"},"ibge":2932507,"name":"Una","capital":0,"ibgeState":29,"siafi":3949,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.2791,-39.0765]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ce4"},"ibge":3170404,"name":"Unaí","capital":0,"ibgeState":31,"siafi":5407,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.3592,-46.9022]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ce5"},"ibge":2211100,"name":"União","capital":0,"ibgeState":22,"siafi":1221,"ddd":86,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.58571,-42.8583]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ce6"},"ibge":4322350,"name":"União da Serra","capital":0,"ibgeState":43,"siafi":5999,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.7833,-52.0238]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ce7"},"ibge":4128203,"name":"União da Vitória","capital":0,"ibgeState":41,"siafi":7937,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.2273,-51.0873]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ce8"},"ibge":3170438,"name":"União de Minas","capital":0,"ibgeState":31,"siafi":742,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5299,-50.338]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ce9"},"ibge":4218855,"name":"União do Oeste","capital":0,"ibgeState":42,"siafi":9973,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.762,-52.8541]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cea"},"ibge":5108303,"name":"União do Sul","capital":0,"ibgeState":51,"siafi":1048,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.5308,-54.3616]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ceb"},"ibge":2709301,"name":"União dos Palmares","capital":0,"ibgeState":27,"siafi":2885,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.15921,-36.0223]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cec"},"ibge":3555703,"name":"União Paulista","capital":0,"ibgeState":35,"siafi":7215,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8862,-49.9025]}} +{"_id":{"$oid":"66f9d5ae542d90c053667ced"},"ibge":4128302,"name":"Uniflor","capital":0,"ibgeState":41,"siafi":7939,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0868,-52.1573]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cee"},"ibge":4322376,"name":"Unistalda","capital":0,"ibgeState":43,"siafi":1024,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.04,-55.1517]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cef"},"ibge":2414605,"name":"Upanema","capital":0,"ibgeState":24,"siafi":1889,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.63761,-37.2635]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cf0"},"ibge":4128401,"name":"Uraí","capital":0,"ibgeState":41,"siafi":7941,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2,-50.7939]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cf1"},"ibge":2932606,"name":"Urandi","capital":0,"ibgeState":29,"siafi":3951,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.7678,-42.6498]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cf2"},"ibge":3555802,"name":"Urânia","capital":0,"ibgeState":35,"siafi":7217,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.2455,-50.6455]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cf3"},"ibge":2112605,"name":"Urbano Santos","capital":0,"ibgeState":21,"siafi":945,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.20642,-43.3878]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cf4"},"ibge":3555901,"name":"Uru","capital":0,"ibgeState":35,"siafi":7219,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7866,-49.2848]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cf5"},"ibge":5221601,"name":"Uruaçu","capital":0,"ibgeState":52,"siafi":9633,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.5238,-49.1396]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cf6"},"ibge":5221700,"name":"Uruana","capital":0,"ibgeState":52,"siafi":9635,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.4993,-49.6861]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cf7"},"ibge":3170479,"name":"Uruana de Minas","capital":0,"ibgeState":31,"siafi":744,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0634,-46.2443]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cf8"},"ibge":1508159,"name":"Uruará","capital":0,"ibgeState":15,"siafi":399,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.71519,-53.7396]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cf9"},"ibge":4218905,"name":"Urubici","capital":0,"ibgeState":42,"siafi":8371,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.0157,-49.5925]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cfa"},"ibge":2313807,"name":"Uruburetama","capital":0,"ibgeState":23,"siafi":1577,"ddd":85,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.62316,-39.5107]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cfb"},"ibge":3170503,"name":"Urucânia","capital":0,"ibgeState":31,"siafi":5409,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3521,-42.737]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cfc"},"ibge":1304302,"name":"Urucará","capital":0,"ibgeState":13,"siafi":285,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-2.52936,-57.7538]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cfd"},"ibge":2932705,"name":"Uruçuca","capital":0,"ibgeState":29,"siafi":3953,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.5963,-39.2851]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cfe"},"ibge":2211209,"name":"Uruçuí","capital":0,"ibgeState":22,"siafi":1223,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.23944,-44.5577]}} +{"_id":{"$oid":"66f9d5ae542d90c053667cff"},"ibge":3170529,"name":"Urucuia","capital":0,"ibgeState":31,"siafi":2699,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.1244,-45.7352]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d00"},"ibge":1304401,"name":"Urucurituba","capital":0,"ibgeState":13,"siafi":287,"ddd":92,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-3.12841,-58.1496]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d01"},"ibge":4322400,"name":"Uruguaiana","capital":0,"ibgeState":43,"siafi":8951,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.7614,-57.0853]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d02"},"ibge":2313906,"name":"Uruoca","capital":0,"ibgeState":23,"siafi":1579,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.30819,-40.5628]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d03"},"ibge":1101708,"name":"Urupá","capital":0,"ibgeState":11,"siafi":977,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-11.1261,-62.3639]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d04"},"ibge":4218954,"name":"Urupema","capital":0,"ibgeState":42,"siafi":9975,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.9557,-49.8729]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d05"},"ibge":3556008,"name":"Urupês","capital":0,"ibgeState":35,"siafi":7221,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2032,-49.2931]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d06"},"ibge":4219002,"name":"Urussanga","capital":0,"ibgeState":42,"siafi":8373,"ddd":48,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.518,-49.3238]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d07"},"ibge":5221809,"name":"Urutaí","capital":0,"ibgeState":52,"siafi":9637,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.4651,-48.2015]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d08"},"ibge":2932804,"name":"Utinga","capital":0,"ibgeState":29,"siafi":3955,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.0783,-41.0954]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d09"},"ibge":4322509,"name":"Vacaria","capital":0,"ibgeState":43,"siafi":8953,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5079,-50.9418]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d0a"},"ibge":5108352,"name":"Vale de São Domingos","capital":0,"ibgeState":51,"siafi":1102,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.286,-59.0683]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d0b"},"ibge":1101757,"name":"Vale do Anari","capital":0,"ibgeState":11,"siafi":24,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-9.86215,-62.1876]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d0c"},"ibge":1101807,"name":"Vale do Paraíso","capital":0,"ibgeState":11,"siafi":979,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.4465,-62.1352]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d0d"},"ibge":4322533,"name":"Vale do Sol","capital":0,"ibgeState":43,"siafi":5769,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.5967,-52.6839]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d0e"},"ibge":4322541,"name":"Vale Real","capital":0,"ibgeState":43,"siafi":6049,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.3919,-51.2559]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d0f"},"ibge":4322525,"name":"Vale Verde","capital":0,"ibgeState":43,"siafi":1026,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.7864,-52.1857]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d10"},"ibge":2932903,"name":"Valença","capital":0,"ibgeState":29,"siafi":3957,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.3669,-39.073]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d11"},"ibge":3306107,"name":"Valença","capital":0,"ibgeState":33,"siafi":5921,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2445,-43.7129]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d12"},"ibge":2211308,"name":"Valença do Piauí","capital":0,"ibgeState":22,"siafi":1225,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.40301,-41.7375]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d13"},"ibge":2933000,"name":"Valente","capital":0,"ibgeState":29,"siafi":3959,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.4062,-39.457]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d14"},"ibge":3556107,"name":"Valentim Gentil","capital":0,"ibgeState":35,"siafi":7223,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4217,-50.0889]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d15"},"ibge":3556206,"name":"Valinhos","capital":0,"ibgeState":35,"siafi":7225,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.9698,-46.9974]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d16"},"ibge":3556305,"name":"Valparaíso","capital":0,"ibgeState":35,"siafi":7227,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.2229,-50.8699]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d17"},"ibge":5221858,"name":"Valparaíso de Goiás","capital":0,"ibgeState":52,"siafi":1066,"ddd":61,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.0651,-47.9757]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d18"},"ibge":4322558,"name":"Vanini","capital":0,"ibgeState":43,"siafi":7319,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.4758,-51.8447]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d19"},"ibge":4219101,"name":"Vargeão","capital":0,"ibgeState":42,"siafi":8375,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.8621,-52.1549]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d1a"},"ibge":4219150,"name":"Vargem","capital":0,"ibgeState":42,"siafi":5563,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4867,-50.9724]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d1b"},"ibge":3556354,"name":"Vargem","capital":0,"ibgeState":35,"siafi":2957,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.887,-46.4124]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d1c"},"ibge":3170578,"name":"Vargem Alegre","capital":0,"ibgeState":31,"siafi":746,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.5988,-42.2949]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d1d"},"ibge":3205036,"name":"Vargem Alta","capital":0,"ibgeState":32,"siafi":5727,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.669,-41.0179]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d1e"},"ibge":3170602,"name":"Vargem Bonita","capital":0,"ibgeState":31,"siafi":5411,"ddd":37,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3333,-46.3688]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d1f"},"ibge":4219176,"name":"Vargem Bonita","capital":0,"ibgeState":42,"siafi":5565,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0055,-51.7402]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d20"},"ibge":2112704,"name":"Vargem Grande","capital":0,"ibgeState":21,"siafi":947,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.53639,-43.917]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d21"},"ibge":3170651,"name":"Vargem Grande do Rio Pardo","capital":0,"ibgeState":31,"siafi":748,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.3987,-42.3085]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d22"},"ibge":3556404,"name":"Vargem Grande do Sul","capital":0,"ibgeState":35,"siafi":7231,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.8322,-46.8913]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d23"},"ibge":3556453,"name":"Vargem Grande Paulista","capital":0,"ibgeState":35,"siafi":7273,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5993,-47.022]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d24"},"ibge":3170701,"name":"Varginha","capital":0,"ibgeState":31,"siafi":5413,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.5556,-45.4364]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d25"},"ibge":5221908,"name":"Varjão","capital":0,"ibgeState":52,"siafi":9639,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.0471,-49.6312]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d26"},"ibge":3170750,"name":"Varjão de Minas","capital":0,"ibgeState":31,"siafi":750,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.3741,-46.0313]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d27"},"ibge":2313955,"name":"Varjota","capital":0,"ibgeState":23,"siafi":9857,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.19387,-40.4741]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d28"},"ibge":3306156,"name":"Varre-Sai","capital":0,"ibgeState":33,"siafi":2917,"ddd":22,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.9276,-41.8701]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d29"},"ibge":2414704,"name":"Várzea","capital":0,"ibgeState":24,"siafi":1891,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.34641,-35.3732]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d2a"},"ibge":2517100,"name":"Várzea","capital":0,"ibgeState":25,"siafi":2243,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.76189,-36.9913]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d2b"},"ibge":2314003,"name":"Várzea Alegre","capital":0,"ibgeState":23,"siafi":1581,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.78264,-39.2942]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d2c"},"ibge":2211357,"name":"Várzea Branca","capital":0,"ibgeState":22,"siafi":2267,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.238,-42.9692]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d2d"},"ibge":3170800,"name":"Várzea da Palma","capital":0,"ibgeState":31,"siafi":5415,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.5944,-44.7226]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d2e"},"ibge":2933059,"name":"Várzea da Roça","capital":0,"ibgeState":29,"siafi":3997,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.6005,-40.1328]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d2f"},"ibge":2933109,"name":"Várzea do Poço","capital":0,"ibgeState":29,"siafi":3961,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.5273,-40.3149]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d30"},"ibge":2211407,"name":"Várzea Grande","capital":0,"ibgeState":22,"siafi":1227,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.54899,-42.248]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d31"},"ibge":5108402,"name":"Várzea Grande","capital":0,"ibgeState":51,"siafi":9167,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.6458,-56.1322]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d32"},"ibge":2933158,"name":"Várzea Nova","capital":0,"ibgeState":29,"siafi":3995,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-11.2557,-40.9432]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d33"},"ibge":3556503,"name":"Várzea Paulista","capital":0,"ibgeState":35,"siafi":7233,"ddd":11,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.2136,-46.8234]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d34"},"ibge":2933174,"name":"Varzedo","capital":0,"ibgeState":29,"siafi":3049,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.9672,-39.3919]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d35"},"ibge":3170909,"name":"Varzelândia","capital":0,"ibgeState":31,"siafi":5417,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.6992,-44.0278]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d36"},"ibge":3306206,"name":"Vassouras","capital":0,"ibgeState":33,"siafi":5923,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.4059,-43.6686]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d37"},"ibge":3171006,"name":"Vazante","capital":0,"ibgeState":31,"siafi":5419,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.9827,-46.9088]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d38"},"ibge":4322608,"name":"Venâncio Aires","capital":0,"ibgeState":43,"siafi":8955,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.6143,-52.1932]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d39"},"ibge":3205069,"name":"Venda Nova do Imigrante","capital":0,"ibgeState":32,"siafi":5729,"ddd":28,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.327,-41.1355]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d3a"},"ibge":2414753,"name":"Venha-Ver","capital":0,"ibgeState":24,"siafi":438,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.32016,-38.4896]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d3b"},"ibge":4128534,"name":"Ventania","capital":0,"ibgeState":41,"siafi":5497,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-24.2458,-50.2376]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d3c"},"ibge":2616001,"name":"Venturosa","capital":0,"ibgeState":26,"siafi":2619,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.57885,-36.8742]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d3d"},"ibge":5108501,"name":"Vera","capital":0,"ibgeState":51,"siafi":9905,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.3017,-55.3045]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d3e"},"ibge":2414803,"name":"Vera Cruz","capital":0,"ibgeState":24,"siafi":1895,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.04399,-35.428]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d3f"},"ibge":2933208,"name":"Vera Cruz","capital":0,"ibgeState":29,"siafi":3963,"ddd":71,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.9568,-38.6153]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d40"},"ibge":4322707,"name":"Vera Cruz","capital":0,"ibgeState":43,"siafi":8957,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.7184,-52.5152]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d41"},"ibge":3556602,"name":"Vera Cruz","capital":0,"ibgeState":35,"siafi":7235,"ddd":14,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.2183,-49.8207]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d42"},"ibge":4128559,"name":"Vera Cruz do Oeste","capital":0,"ibgeState":41,"siafi":7989,"ddd":45,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.0577,-53.8771]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d43"},"ibge":2211506,"name":"Vera Mendes","capital":0,"ibgeState":22,"siafi":406,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.59748,-41.4673]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d44"},"ibge":4322806,"name":"Veranópolis","capital":0,"ibgeState":43,"siafi":8959,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.9312,-51.5516]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d45"},"ibge":2616100,"name":"Verdejante","capital":0,"ibgeState":26,"siafi":2621,"ddd":87,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.92235,-38.9701]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d46"},"ibge":3171030,"name":"Verdelândia","capital":0,"ibgeState":31,"siafi":752,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.5845,-43.6121]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d47"},"ibge":4128609,"name":"Verê","capital":0,"ibgeState":41,"siafi":7945,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.8772,-52.9051]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d48"},"ibge":2933257,"name":"Vereda","capital":0,"ibgeState":29,"siafi":3051,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.2183,-40.0974]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d49"},"ibge":3171071,"name":"Veredinha","capital":0,"ibgeState":31,"siafi":754,"ddd":38,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.3974,-42.7307]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d4a"},"ibge":3171105,"name":"Veríssimo","capital":0,"ibgeState":31,"siafi":5423,"ddd":34,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6657,-48.3118]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d4b"},"ibge":3171154,"name":"Vermelho Novo","capital":0,"ibgeState":31,"siafi":756,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.0406,-42.2688]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d4c"},"ibge":2616183,"name":"Vertente do Lério","capital":0,"ibgeState":26,"siafi":2291,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.77084,-35.8491]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d4d"},"ibge":2616209,"name":"Vertentes","capital":0,"ibgeState":26,"siafi":2623,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.90158,-35.9681]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d4e"},"ibge":3171204,"name":"Vespasiano","capital":0,"ibgeState":31,"siafi":5425,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-19.6883,-43.9239]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d4f"},"ibge":4322855,"name":"Vespasiano Corrêa","capital":0,"ibgeState":43,"siafi":1028,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.0655,-51.8625]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d50"},"ibge":4322905,"name":"Viadutos","capital":0,"ibgeState":43,"siafi":8961,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.5716,-52.0211]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d51"},"ibge":4323002,"name":"Viamão","capital":0,"ibgeState":43,"siafi":8963,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.0819,-51.0194]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d52"},"ibge":3205101,"name":"Viana","capital":0,"ibgeState":32,"siafi":5701,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3825,-40.4933]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d53"},"ibge":2112803,"name":"Viana","capital":0,"ibgeState":21,"siafi":949,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.20451,-44.9912]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d54"},"ibge":5222005,"name":"Vianópolis","capital":0,"ibgeState":52,"siafi":9641,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.7405,-48.5159]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d55"},"ibge":2616308,"name":"Vicência","capital":0,"ibgeState":26,"siafi":2625,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.65655,-35.3139]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d56"},"ibge":4323101,"name":"Vicente Dutra","capital":0,"ibgeState":43,"siafi":8965,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.1607,-53.4022]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d57"},"ibge":5008404,"name":"Vicentina","capital":0,"ibgeState":50,"siafi":9187,"ddd":67,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-22.4098,-54.4415]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d58"},"ibge":5222054,"name":"Vicentinópolis","capital":0,"ibgeState":52,"siafi":9657,"ddd":64,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-17.7322,-49.8047]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d59"},"ibge":2414902,"name":"Viçosa","capital":0,"ibgeState":24,"siafi":1897,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.98253,-37.9462]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d5a"},"ibge":2709400,"name":"Viçosa","capital":0,"ibgeState":27,"siafi":2887,"ddd":82,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-9.36763,-36.2431]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d5b"},"ibge":3171303,"name":"Viçosa","capital":0,"ibgeState":31,"siafi":5427,"ddd":31,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.7559,-42.8742]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d5c"},"ibge":2314102,"name":"Viçosa do Ceará","capital":0,"ibgeState":23,"siafi":1583,"ddd":88,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.5667,-41.0916]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d5d"},"ibge":4323200,"name":"Victor Graeff","capital":0,"ibgeState":43,"siafi":8969,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5632,-52.7495]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d5e"},"ibge":4219200,"name":"Vidal Ramos","capital":0,"ibgeState":42,"siafi":8377,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3886,-49.3593]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d5f"},"ibge":4219309,"name":"Videira","capital":0,"ibgeState":42,"siafi":8379,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0086,-51.1543]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d60"},"ibge":3171402,"name":"Vieiras","capital":0,"ibgeState":31,"siafi":5429,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.867,-42.2401]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d61"},"ibge":2517209,"name":"Vieirópolis","capital":0,"ibgeState":25,"siafi":540,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.50684,-38.2567]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d62"},"ibge":1508209,"name":"Vigia","capital":0,"ibgeState":15,"siafi":563,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.861194,-48.1386]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d63"},"ibge":5105507,"name":"Vila Bela da Santíssima Trindade","capital":0,"ibgeState":51,"siafi":9109,"ddd":65,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-15.0068,-59.9504]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d64"},"ibge":5222203,"name":"Vila Boa","capital":0,"ibgeState":52,"siafi":67,"ddd":61,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.0387,-47.052]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d65"},"ibge":2415008,"name":"Vila Flor","capital":0,"ibgeState":24,"siafi":1899,"ddd":84,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.31287,-35.067]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d66"},"ibge":4323309,"name":"Vila Flores","capital":0,"ibgeState":43,"siafi":7311,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.8598,-51.5504]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d67"},"ibge":4323358,"name":"Vila Lângaro","capital":0,"ibgeState":43,"siafi":1030,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.1062,-52.1438]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d68"},"ibge":4323408,"name":"Vila Maria","capital":0,"ibgeState":43,"siafi":7309,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.5359,-52.1486]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d69"},"ibge":2211605,"name":"Vila Nova do Piauí","capital":0,"ibgeState":22,"siafi":408,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.13272,-40.9345]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d6a"},"ibge":4323457,"name":"Vila Nova do Sul","capital":0,"ibgeState":43,"siafi":5795,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-30.3461,-53.876]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d6b"},"ibge":2112852,"name":"Vila Nova dos Martírios","capital":0,"ibgeState":21,"siafi":264,"ddd":99,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-5.18889,-48.1336]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d6c"},"ibge":3205150,"name":"Vila Pavão","capital":0,"ibgeState":32,"siafi":2935,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.6091,-40.609]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d6d"},"ibge":5222302,"name":"Vila Propício","capital":0,"ibgeState":52,"siafi":1068,"ddd":62,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-15.4542,-48.8819]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d6e"},"ibge":5108600,"name":"Vila Rica","capital":0,"ibgeState":51,"siafi":9897,"ddd":66,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-10.0137,-51.1186]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d6f"},"ibge":3205176,"name":"Vila Valério","capital":0,"ibgeState":32,"siafi":768,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.9958,-40.3849]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d70"},"ibge":3205200,"name":"Vila Velha","capital":0,"ibgeState":32,"siafi":5703,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3417,-40.2875]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d71"},"ibge":1100304,"name":"Vilhena","capital":0,"ibgeState":11,"siafi":13,"ddd":69,"timeZone":"America/Porto_Velho","location":{"type":"Point","coordinates":[-12.7502,-60.1488]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d72"},"ibge":3556701,"name":"Vinhedo","capital":0,"ibgeState":35,"siafi":7237,"ddd":19,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.0302,-46.9833]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d73"},"ibge":3556800,"name":"Viradouro","capital":0,"ibgeState":35,"siafi":7239,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.8734,-48.293]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d74"},"ibge":3171600,"name":"Virgem da Lapa","capital":0,"ibgeState":31,"siafi":5433,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-16.807,-42.3431]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d75"},"ibge":3171709,"name":"Virgínia","capital":0,"ibgeState":31,"siafi":5435,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.3264,-45.0965]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d76"},"ibge":3171808,"name":"Virginópolis","capital":0,"ibgeState":31,"siafi":5437,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.8154,-42.7015]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d77"},"ibge":3171907,"name":"Virgolândia","capital":0,"ibgeState":31,"siafi":5439,"ddd":33,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-18.4738,-42.3067]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d78"},"ibge":4128658,"name":"Virmond","capital":0,"ibgeState":41,"siafi":5483,"ddd":42,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-25.3829,-52.1987]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d79"},"ibge":3172004,"name":"Visconde do Rio Branco","capital":0,"ibgeState":31,"siafi":5441,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0127,-42.8361]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d7a"},"ibge":1508308,"name":"Viseu","capital":0,"ibgeState":15,"siafi":565,"ddd":91,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-1.19124,-46.1399]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d7b"},"ibge":4323507,"name":"Vista Alegre","capital":0,"ibgeState":43,"siafi":7307,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.3686,-53.4919]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d7c"},"ibge":3556909,"name":"Vista Alegre do Alto","capital":0,"ibgeState":35,"siafi":7241,"ddd":16,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.1692,-48.6284]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d7d"},"ibge":4323606,"name":"Vista Alegre do Prata","capital":0,"ibgeState":43,"siafi":7305,"ddd":54,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.8052,-51.7947]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d7e"},"ibge":4323705,"name":"Vista Gaúcha","capital":0,"ibgeState":43,"siafi":7303,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.2902,-53.6974]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d7f"},"ibge":2505501,"name":"Vista Serrana","capital":0,"ibgeState":25,"siafi":2011,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.7303,-37.5704]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d80"},"ibge":4219358,"name":"Vitor Meireles","capital":0,"ibgeState":42,"siafi":9977,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.8782,-49.8328]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d81"},"ibge":3205309,"name":"Vitória","capital":1,"ibgeState":32,"siafi":5705,"ddd":27,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.3155,-40.3128]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d82"},"ibge":3556958,"name":"Vitória Brasil","capital":0,"ibgeState":35,"siafi":828,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.1956,-50.4875]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d83"},"ibge":2933307,"name":"Vitória da Conquista","capital":0,"ibgeState":29,"siafi":3965,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-14.8615,-40.8442]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d84"},"ibge":4323754,"name":"Vitória das Missões","capital":0,"ibgeState":43,"siafi":6053,"ddd":55,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-28.3516,-54.504]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d85"},"ibge":2616407,"name":"Vitória de Santo Antão","capital":0,"ibgeState":26,"siafi":2627,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.12819,-35.2976]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d86"},"ibge":1600808,"name":"Vitória do Jari","capital":0,"ibgeState":16,"siafi":70,"ddd":96,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-0.938,-52.424]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d87"},"ibge":2112902,"name":"Vitória do Mearim","capital":0,"ibgeState":21,"siafi":951,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.45125,-44.8643]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d88"},"ibge":1508357,"name":"Vitória do Xingu","capital":0,"ibgeState":15,"siafi":641,"ddd":93,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-2.87922,-52.0088]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d89"},"ibge":4128708,"name":"Vitorino","capital":0,"ibgeState":41,"siafi":7947,"ddd":46,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.2683,-52.7843]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d8a"},"ibge":2113009,"name":"Vitorino Freire","capital":0,"ibgeState":21,"siafi":953,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-4.28184,-45.2505]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d8b"},"ibge":3172103,"name":"Volta Grande","capital":0,"ibgeState":31,"siafi":5443,"ddd":32,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.7671,-42.5375]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d8c"},"ibge":3306305,"name":"Volta Redonda","capital":0,"ibgeState":33,"siafi":5925,"ddd":24,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5202,-44.0996]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d8d"},"ibge":3557006,"name":"Votorantim","capital":0,"ibgeState":35,"siafi":7243,"ddd":15,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.5446,-47.4388]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d8e"},"ibge":3557105,"name":"Votuporanga","capital":0,"ibgeState":35,"siafi":7245,"ddd":17,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-20.4237,-49.9781]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d8f"},"ibge":2933406,"name":"Wagner","capital":0,"ibgeState":29,"siafi":3967,"ddd":75,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.2819,-41.1715]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d90"},"ibge":2211704,"name":"Wall Ferraz","capital":0,"ibgeState":22,"siafi":410,"ddd":89,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.23151,-41.905]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d91"},"ibge":1722081,"name":"Wanderlândia","capital":0,"ibgeState":17,"siafi":9665,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.85274,-47.9601]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d92"},"ibge":2933455,"name":"Wanderley","capital":0,"ibgeState":29,"siafi":3999,"ddd":77,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-12.1144,-43.8958]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d93"},"ibge":3172202,"name":"Wenceslau Braz","capital":0,"ibgeState":31,"siafi":5421,"ddd":35,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-22.5368,-45.3626]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d94"},"ibge":4128500,"name":"Wenceslau Braz","capital":0,"ibgeState":41,"siafi":7943,"ddd":43,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.8742,-49.8032]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d95"},"ibge":2933505,"name":"Wenceslau Guimarães","capital":0,"ibgeState":29,"siafi":3969,"ddd":73,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-13.6908,-39.4762]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d96"},"ibge":4323770,"name":"Westfália","capital":0,"ibgeState":43,"siafi":1176,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.4263,-51.7645]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d97"},"ibge":4219408,"name":"Witmarsum","capital":0,"ibgeState":42,"siafi":8381,"ddd":47,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9275,-49.7947]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d98"},"ibge":1722107,"name":"Xambioá","capital":0,"ibgeState":17,"siafi":9643,"ddd":63,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-6.4141,-48.532]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d99"},"ibge":4128807,"name":"Xambrê","capital":0,"ibgeState":41,"siafi":7949,"ddd":44,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-23.7364,-53.4884]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d9a"},"ibge":4323804,"name":"Xangri-lá","capital":0,"ibgeState":43,"siafi":5785,"ddd":51,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-29.8065,-50.0519]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d9b"},"ibge":4219507,"name":"Xanxerê","capital":0,"ibgeState":42,"siafi":8383,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.8747,-52.4036]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d9c"},"ibge":1200708,"name":"Xapuri","capital":0,"ibgeState":12,"siafi":149,"ddd":68,"timeZone":"America/Rio_Branco","location":{"type":"Point","coordinates":[-10.6516,-68.4969]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d9d"},"ibge":4219606,"name":"Xavantina","capital":0,"ibgeState":42,"siafi":8385,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.0667,-52.343]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d9e"},"ibge":4219705,"name":"Xaxim","capital":0,"ibgeState":42,"siafi":8387,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-26.9596,-52.5374]}} +{"_id":{"$oid":"66f9d5ae542d90c053667d9f"},"ibge":2616506,"name":"Xexéu","capital":0,"ibgeState":26,"siafi":2293,"ddd":81,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.8046,-35.6212]}} +{"_id":{"$oid":"66f9d5ae542d90c053667da0"},"ibge":1508407,"name":"Xinguara","capital":0,"ibgeState":15,"siafi":571,"ddd":94,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-7.0983,-49.9437]}} +{"_id":{"$oid":"66f9d5ae542d90c053667da1"},"ibge":2933604,"name":"Xique-Xique","capital":0,"ibgeState":29,"siafi":3971,"ddd":74,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-10.823,-42.7245]}} +{"_id":{"$oid":"66f9d5ae542d90c053667da2"},"ibge":2517407,"name":"Zabelê","capital":0,"ibgeState":25,"siafi":542,"ddd":83,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-8.07901,-37.1057]}} +{"_id":{"$oid":"66f9d5ae542d90c053667da3"},"ibge":3557154,"name":"Zacarias","capital":0,"ibgeState":35,"siafi":2973,"ddd":18,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-21.0506,-50.0552]}} +{"_id":{"$oid":"66f9d5ae542d90c053667da4"},"ibge":2114007,"name":"Zé Doca","capital":0,"ibgeState":21,"siafi":1287,"ddd":98,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-3.27014,-45.6553]}} +{"_id":{"$oid":"66f9d5ae542d90c053667da5"},"ibge":4219853,"name":"Zortéa","capital":0,"ibgeState":42,"siafi":950,"ddd":49,"timeZone":"America/Sao_Paulo","location":{"type":"Point","coordinates":[-27.4521,-51.552]}} diff --git a/package.json b/package.json index 4380abf1..8619062b 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,10 @@ "license": "MIT", "scripts": { "dev": "nx run-many -t serve --projects=server,devmx --configuration=development", + "dev:server": "nx serve server", + "dev:mx": "nx serve devmx", "affected": "nx affected -t lint test build --parallel=10", - "cmt": "czg" + "commit": "czg" }, "private": true, "devDependencies": { diff --git a/packages/account/feature-shell/src/lib/components/editable-presentation/editable-presentation.component.html b/packages/account/feature-shell/src/lib/components/editable-presentation/editable-presentation.component.html index 39bda08c..dff5f331 100644 --- a/packages/account/feature-shell/src/lib/components/editable-presentation/editable-presentation.component.html +++ b/packages/account/feature-shell/src/lib/components/editable-presentation/editable-presentation.component.html @@ -52,7 +52,7 @@

Links úteis

} - Link + Adicione um link Tags } - Tag + Adicione uma tag { if (presentation) { + const presentation$ = this.presentationFacade.presentation$; + presentation$.pipe(take(1)).subscribe(() => { + this.accountFacade.loadPresentations(); + }); + this.presentationFacade.create(presentation); } }); diff --git a/packages/presentation/data-access/src/lib/facades/presentation.ts b/packages/presentation/data-access/src/lib/facades/presentation.ts index 8762c76c..2f6a8e9e 100644 --- a/packages/presentation/data-access/src/lib/facades/presentation.ts +++ b/packages/presentation/data-access/src/lib/facades/presentation.ts @@ -73,7 +73,7 @@ export class PresentationFacade extends State { create(data: Presentation) { const request$ = this.createPresentationUseCase.execute(data); - request$.pipe(take(1)).subscribe(() => this.load()); + request$.pipe(take(1)).subscribe(({ id }) => this.loadOne(id)); } update(data: Presentation) {